mobile-subscriber 0.0.1.alpha1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4974b8e383a122cc65453ed3b1eda7c903738595
4
+ data.tar.gz: 3893a214f9483aa4b8e0a14e14936dedca45e3b2
5
+ SHA512:
6
+ metadata.gz: 2a719055ee9c4f283b6b2a43d62616d332c7257cb0d8933f6ea627750314cea658d72ea23c304c770feee45d8f47d28110d08d2381ce7b8656dd9404c4d030db
7
+ data.tar.gz: 3d5c51706dcd164bb52ba2aa8f931221ca28cb0097d2edfc2806f710b1d1ed17ceda0e0880cef30d0e8c9407e5ae1060aa9b8e568522c1ec2a8428b1e05b4913
data/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /vendor/bundle
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ mkmf.log
16
+ /.bash_history
17
+ /.byebug_hist
18
+ /.ruby-version
19
+ /mobile-subscriber-*.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.5
data/Dockerfile ADDED
@@ -0,0 +1,4 @@
1
+ FROM vovimayhem/dev-stack:ruby-2.2
2
+ MAINTAINER Roberto Quintanilla <roberto.quintanilla@gmail.com>
3
+
4
+ CMD ["bundle", "console"]
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in mobile_subscriber.gemspec
4
+ gemspec
5
+
6
+ gem 'activesupport', "~> 4.0"
7
+ gem 'guard-rspec', require: false
8
+ gem 'byebug', require: true
9
+ gem 'thor'
10
+ gem 'nokogiri'
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Roberto Quintanilla
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # MobileSubscriber Gem
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'mobile_subscriber'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install mobile_subscriber
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/vovimayhem/mobile-subscriber-gem/fork )
28
+ 2. Clone it (`git clone http://github.com/[your-username]/mobile-subscriber-gem.git`)
29
+ 3. Create your feature branch (`git checkout -b feature/my-new-feature`)
30
+ 4. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 5. Push to the branch (`git push origin feature/my-new-feature`)
32
+ 6. Create a new Pull Request
33
+
34
+ ## References
35
+ - [MSISDN - Wikipedia, the free encyclopedia](http://en.wikipedia.org/wiki/MSISDN)
36
+ - [Mobile country code - Wikipedia, the free encyclopedia](http://en.wikipedia.org/wiki/Mobile_country_code)
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
7
+
data/build-docker.sh ADDED
@@ -0,0 +1,3 @@
1
+ #! /bin/bash
2
+
3
+ docker build --rm -t vovimayhem/mobile_subscriber:development .
data/fig.yml ADDED
@@ -0,0 +1,15 @@
1
+ # App de prueba:
2
+ dev: &dev_base
3
+ image: vovimayhem/mobile_subscriber:development
4
+ volumes:
5
+ - .:/app
6
+ environment: &dev_environment
7
+ RACK_ENV: development
8
+
9
+ # App Guard: Keeps running tests on a separate process:
10
+ test:
11
+ <<: *dev_base
12
+ command: guard start --no-bundler-warning --no-interactions
13
+ environment:
14
+ <<: *dev_environment
15
+ RACK_ENV: test
@@ -0,0 +1,15 @@
1
+ require "mobile_subscriber/version"
2
+ require 'active_support/all'
3
+
4
+ module MobileSubscriber
5
+ extend ActiveSupport::Autoload
6
+
7
+ autoload :ISDN, "mobile_subscriber/isdn.rb"
8
+
9
+ module Detection
10
+ extend ActiveSupport::Autoload
11
+ autoload :FromMsisdnHeader
12
+ autoload :FromXNokiaMsisdnHeader
13
+ autoload :FromXUpChMsisdnHeader
14
+ end
15
+ end
@@ -0,0 +1,41 @@
1
+ module MobileSubscriber
2
+ module Detection
3
+
4
+ # Módulo que provee métodos de deteccion y validacion para MSISDN por el
5
+ # header de HTTP 'Msisdn':
6
+ # - Vivo Brasil
7
+ module FromMsisdnHeader
8
+
9
+ extend ActiveSupport::Concern
10
+
11
+ module ClassMethods
12
+ def extract_from_msisdn_http_request_header(request)
13
+ header_name = 'Msisdn'
14
+ header_env_key = "HTTP_#{header_name.gsub('-','_').upcase}"
15
+
16
+ isdn_attributes = nil
17
+
18
+ if msisdn = request.env[header_env_key]
19
+
20
+ # Determinar la procedencia del MSISDN
21
+ # TODO: Validar por IP, etc.
22
+ isdn_attributes = case
23
+
24
+ # Vivo BR (Claro):
25
+ when msisdn =~ /\A55/ then {
26
+ id: msisdn,
27
+ mobile_country_code: "724",
28
+ mobile_network_code: "06"
29
+ }
30
+
31
+ end if msisdn.length >= 8
32
+
33
+ end
34
+
35
+ isdn_attributes
36
+ end
37
+ end
38
+
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,47 @@
1
+ module MobileSubscriber
2
+ module Detection
3
+
4
+ # Módulo que provee métodos de deteccion y validacion para MSISDN's de:
5
+ # - Telcel México
6
+ # - Claro Argentina
7
+ module FromXNokiaMsisdnHeader
8
+
9
+ extend ActiveSupport::Concern
10
+
11
+ module ClassMethods
12
+ def extract_from_x_nokia_msisdn_http_request_header(request)
13
+
14
+ header_name = 'X-Nokia-Msisdn'
15
+ header_env_key = "HTTP_#{header_name.gsub('-','_').upcase}"
16
+
17
+ isdn_attributes = nil
18
+
19
+ if msisdn = request.env[header_env_key]
20
+
21
+ # Determinar la procedencia del MSISDN
22
+ # TODO: Validar por IP, etc.
23
+ isdn_attributes = case
24
+
25
+ # Telcel México:
26
+ when msisdn =~ /\A52/ then {
27
+ id: msisdn,
28
+ mobile_country_code: "334",
29
+ mobile_network_code: "020"
30
+ }
31
+
32
+ # Claro Argentina:
33
+ when msisdn =~ /\A54/ then {
34
+ id: msisdn,
35
+ mobile_country_code: "722",
36
+ mobile_network_code: "330"
37
+ }
38
+ end if msisdn.length >= 8
39
+ end
40
+
41
+ isdn_attributes
42
+ end
43
+
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,39 @@
1
+ module MobileSubscriber
2
+ module Detection
3
+
4
+ # Módulo que provee métodos de deteccion y validacion para MSISDN's de:
5
+ # - Claro Brasil
6
+ module FromXUpChMsisdnHeader
7
+
8
+ extend ActiveSupport::Concern
9
+
10
+ module ClassMethods
11
+ def extract_from_x_up_ch_msisdn_http_request_header(request)
12
+ header_name = 'X-Up-Ch-Msisdn'
13
+ header_env_key = "HTTP_#{header_name.gsub('-','_').upcase}"
14
+ isdn_attributes = nil
15
+
16
+ if msisdn = request.env[header_env_key]
17
+
18
+ # Determinar la procedencia del MSISDN
19
+ # TODO: Validar por IP, etc.
20
+ isdn_attributes = case
21
+
22
+ # Claro BR (Claro):
23
+ when msisdn =~ /\A55/ then {
24
+ id: msisdn,
25
+ mobile_country_code: "724",
26
+ mobile_network_code: "05"
27
+ }
28
+
29
+ end if msisdn.length >= 8
30
+
31
+ end
32
+ isdn_attributes
33
+ end
34
+
35
+ end
36
+
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,4 @@
1
+ module MobileSubscriber
2
+ # Diccionario de Mobile Country Codes => ISO country codes:
3
+ MCC_ISO_COUNTRY_CODES = {"001"=>"Test networks", "202"=>"GR", "204"=>"NL", "206"=>"BE", "208"=>"FR", "212"=>"MC", "213"=>"AD", "214"=>"ES", "216"=>"HU", "218"=>"BA", "219"=>"HR", "220"=>"RS", "222"=>"IT", "225"=>"VA", "226"=>"RO", "228"=>"CH", "230"=>"CZ", "231"=>"SK", "232"=>"AT", "234"=>"UK", "235"=>"UK", "238"=>"DK", "240"=>"SE", "242"=>"NO", "244"=>"FI", "246"=>"LT", "247"=>"LV", "248"=>"EE", "250"=>"RU", "255"=>"UA", "257"=>"BY", "259"=>"MD", "260"=>"PL", "262"=>"DE", "266"=>"GI", "268"=>"PT", "270"=>"LU", "272"=>"IE", "274"=>"IS", "276"=>"AL", "278"=>"MT", "280"=>"CY", "282"=>"GE", "283"=>"AM", "284"=>"BG", "286"=>"TR", "288"=>"FO", "289"=>"GE-AB", "290"=>"GL", "292"=>"SM", "293"=>"SI", "294"=>"MK", "295"=>"LI", "297"=>"ME", "302"=>"CA", "308"=>"PM", "310"=>"US", "311"=>"US", "312"=>"US", "313"=>"US", "316"=>"US", "330"=>"PR", "334"=>"MX", "338"=>"TC", "340"=>"MQ", "342"=>"BB", "344"=>"AG", "346"=>"KY", "348"=>"VG", "350"=>"BM", "352"=>"GD", "354"=>"MS", "356"=>"KN", "358"=>"LC", "360"=>"VC", "362"=>"AN", "363"=>"AW", "364"=>"BS", "365"=>"AI", "366"=>"DM", "368"=>"CU", "370"=>"DO", "372"=>"HT", "374"=>"TT", "376"=>"TC", "400"=>"AZ", "401"=>"KZ", "402"=>"BT", "404"=>"IN", "405"=>"IN", "410"=>"PK", "412"=>"AF", "413"=>"LK", "414"=>"MM", "415"=>"LB", "416"=>"JO", "417"=>"SY", "418"=>"IQ", "419"=>"KW", "420"=>"SA", "421"=>"YE", "422"=>"OM", "424"=>"AE", "425"=>"PS", "426"=>"BH", "427"=>"QA", "428"=>"MN", "429"=>"NP", "432"=>"IR", "434"=>"UZ", "436"=>"TJ", "437"=>"KG", "438"=>"TM", "440"=>"JP", "450"=>"KR", "452"=>"VN", "454"=>"HK", "455"=>"MO", "456"=>"KH", "457"=>"LA", "460"=>"CN", "466"=>"TW", "467"=>"KP", "470"=>"BD", "472"=>"MV", "502"=>"MY", "505"=>"NF", "510"=>"ID", "514"=>"TL", "515"=>"PH", "520"=>"TH", "525"=>"SG", "528"=>"BN", "530"=>"NZ", "536"=>"NR", "537"=>"PG", "539"=>"TO", "540"=>"SB", "541"=>"VU", "542"=>"FJ", "544"=>"AS", "545"=>"KI", "546"=>"NC", "547"=>"PF", "548"=>"CK", "549"=>"WS", "550"=>"FM", "551"=>"MH", "552"=>"PW", "553"=>"TV", "555"=>"NU", "602"=>"EG", "603"=>"DZ", "604"=>"MA", "605"=>"TN", "606"=>"LY", "607"=>"GM", "608"=>"SN", "609"=>"MR", "610"=>"ML", "611"=>"GN", "612"=>"CI", "613"=>"BF", "614"=>"NE", "615"=>"TG", "616"=>"BJ", "617"=>"MU", "618"=>"LR", "619"=>"SL", "620"=>"GH", "621"=>"NG", "622"=>"TD", "623"=>"CF", "624"=>"CM", "625"=>"CV", "626"=>"ST", "627"=>"GQ", "628"=>"GA", "629"=>"CG", "630"=>"CD", "631"=>"AO", "632"=>"GW", "633"=>"SC", "634"=>"SD", "635"=>"RW", "636"=>"ET", "637"=>"SO", "638"=>"DJ", "639"=>"KE", "640"=>"TZ", "641"=>"UG", "642"=>"BI", "643"=>"MZ", "645"=>"ZM", "646"=>"MG", "647"=>"RE", "648"=>"ZW", "649"=>"NA", "650"=>"MW", "651"=>"LS", "652"=>"BW", "653"=>"SZ", "654"=>"KM", "655"=>"ZA", "657"=>"ER", "659"=>"SS", "702"=>"BZ", "704"=>"GT", "706"=>"SV", "708"=>"HN", "710"=>"NI", "712"=>"CR", "714"=>"PA", "716"=>"PE", "722"=>"AR", "724"=>"BR", "730"=>"CL", "732"=>"CO", "734"=>"VE", "736"=>"BO", "738"=>"GY", "740"=>"EC", "744"=>"PY", "746"=>"SR", "748"=>"UY", "750"=>"FK", "901"=>"International operators"}.with_indifferent_access.freeze
4
+ end
@@ -0,0 +1,4 @@
1
+ module MobileSubscriber
2
+ # Diccionario de MCC+MNC => Operator DATA:
3
+ OPERATOR_DATA = {["001", "01"]=>{:mobile_country_code=>"001", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"TEST", :notes=>"Used by GSM test equipment", :operator=>"Test Network", :status=>"Operational"}, ["202", "01"]=>{:mobile_country_code=>"202", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Cosmote", :notes=>"[7]", :operator=>"COSMOTE - Mobile Telecommunications S.A.", :status=>"Operational"}, ["202", "02"]=>{:mobile_country_code=>"202", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Cosmote", :notes=>"[4]", :operator=>"COSMOTE - Mobile Telecommunications S.A.", :status=>"Operational"}, ["202", "03"]=>{:mobile_country_code=>"202", :mobile_network_code=>"03", :bands=>["Unknown"], :notes=>"[4]", :operator=>"OTE", :status=>"Unknown"}, ["202", "04"]=>{:mobile_country_code=>"202", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[4]", :operator=>"EDISY", :status=>"Unknown"}, ["202", "05"]=>{:mobile_country_code=>"202", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"Vodafone", :notes=>"former PanaFon [51][7]", :operator=>"Vodafone Greece", :status=>"Operational"}, ["202", "06"]=>{:mobile_country_code=>"202", :mobile_network_code=>"06", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Cosmoline", :status=>"Unknown"}, ["202", "07"]=>{:mobile_country_code=>"202", :mobile_network_code=>"07", :bands=>["Unknown"], :notes=>"[4]", :operator=>"AMD Telecom", :status=>"Unknown"}, ["202", "09"]=>{:mobile_country_code=>"202", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Wind", :notes=>"Q-Telecom", :operator=>"Wind Hellas Telecommunications S.A.", :status=>"Operational"}, ["202", "10"]=>{:mobile_country_code=>"202", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Wind", :notes=>"former Telestet & TIM", :operator=>"Wind Hellas Telecommunications S.A.", :status=>"Operational"}, ["204", "01"]=>{:mobile_country_code=>"204", :mobile_network_code=>"01", :bands=>["Unknown"], :notes=>"[28]", :operator=>"RadioAccess Network Services BV", :status=>"Unknown"}, ["204", "02"]=>{:mobile_country_code=>"204", :mobile_network_code=>"02", :bands=>["LTE 2600"], :brand=>"Tele2", :notes=>"[33]", :operator=>"Tele2 Nederland B.V.", :status=>"Operational"}, ["204", "03"]=>{:mobile_country_code=>"204", :mobile_network_code=>"03", :bands=>["MVNE", "PrivateGSM 1800"], :brand=>"Voiceworks", :operator=>"Voiceworks B.V.", :status=>"Operational"}, ["204", "04"]=>{:mobile_country_code=>"204", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Vodafone", :notes=>"[33]", :operator=>"Vodafone Libertel B.V.", :status=>"Operational"}, ["204", "05"]=>{:mobile_country_code=>"204", :mobile_network_code=>"05", :bands=>["Unknown"], :operator=>"Elephant Talk Communications Premium Rate Services", :status=>"Unknown"}, ["204", "06"]=>{:mobile_country_code=>"204", :mobile_network_code=>"06", :bands=>["MVNO"], :brand=>"Vectone Mobile Delight Mobile", :operator=>"Mundio Mobile (Netherlands) Ltd", :status=>"Operational"}, ["204", "07"]=>{:mobile_country_code=>"204", :mobile_network_code=>"07", :bands=>["MVNE"], :operator=>"Teleena (MVNE)", :status=>"Operational"}, ["204", "08"]=>{:mobile_country_code=>"204", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"KPN", :notes=>"[33]", :operator=>"KPN Mobile The Netherlands B.V.", :status=>"Operational"}, ["204", "09"]=>{:mobile_country_code=>"204", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"Lycamobile", :operator=>"Lycamobile Netherlands Limited", :status=>"Operational"}, ["204", "10"]=>{:mobile_country_code=>"204", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"KPN", :operator=>"KPN B.V.", :status=>"Operational"}, ["204", "11"]=>{:mobile_country_code=>"204", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"[28]", :operator=>"VoipIT B.V.", :status=>"Unknown"}, ["204", "12"]=>{:mobile_country_code=>"204", :mobile_network_code=>"12", :bands=>[], :brand=>"Telfort", :notes=>"National Roaming Agreement on KPN", :operator=>"KPN Mobile The Netherlands B.V.", :status=>"Operational"}, ["204", "13"]=>{:mobile_country_code=>"204", :mobile_network_code=>"13", :bands=>["Unknown"], :operator=>"Unica Installatietechniek B.V.", :status=>"Unknown"}, ["204", "14"]=>{:mobile_country_code=>"204", :mobile_network_code=>"14", :bands=>[], :notes=>"went into Bankruptcy", :operator=>"6GMOBILE B.V.", :status=>"Reserved"}, ["204", "15"]=>{:mobile_country_code=>"204", :mobile_network_code=>"15", :bands=>["LTE 2600"], :brand=>"Ziggo", :notes=>"business users only [33]", :operator=>"Ziggo B.V.", :status=>"Operational"}, ["204", "16"]=>{:mobile_country_code=>"204", :mobile_network_code=>"16", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"T-Mobile (BEN)", :notes=>"[33][51]", :operator=>"T-Mobile Netherlands B.V", :status=>"Operational"}, ["204", "17"]=>{:mobile_country_code=>"204", :mobile_network_code=>"17", :bands=>["MVNE"], :brand=>"Intercity Zakelijk", :operator=>"Intercity Mobile Communications B.V.", :status=>"Operational"}, ["204", "18"]=>{:mobile_country_code=>"204", :mobile_network_code=>"18", :bands=>["Unknown"], :operator=>"UPC Nederland B.V.", :status=>"Unknown"}, ["204", "19"]=>{:mobile_country_code=>"204", :mobile_network_code=>"19", :bands=>["Unknown"], :operator=>"Mixe Communication Solutions B.V.", :status=>"Unknown"}, ["204", "20"]=>{:mobile_country_code=>"204", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"T-Mobile", :operator=>"T-Mobile Netherlands B.V", :status=>"Operational"}, ["204", "21"]=>{:mobile_country_code=>"204", :mobile_network_code=>"21", :bands=>["GSM-R 900"], :operator=>"ProRail B.V.", :status=>"Operational"}, ["204", "22"]=>{:mobile_country_code=>"204", :mobile_network_code=>"22", :bands=>["Unknown"], :operator=>"Ministerie van Defensie", :status=>"Unknown"}, ["204", "23"]=>{:mobile_country_code=>"204", :mobile_network_code=>"23", :bands=>["MVNE"], :operator=>"ASPIDER Solutions Nederland B.V.", :status=>"Operational"}, ["204", "24"]=>{:mobile_country_code=>"204", :mobile_network_code=>"24", :bands=>["Unknown"], :operator=>"Private Mobility Nederland B.V.", :status=>"Unknown"}, ["204", "25"]=>{:mobile_country_code=>"204", :mobile_network_code=>"25", :bands=>["PrivateGSM 1800"], :operator=>"CapX B.V.", :status=>"Operational"}, ["204", "26"]=>{:mobile_country_code=>"204", :mobile_network_code=>"26", :bands=>["Unknown"], :operator=>"SpeakUp B.V.", :status=>"Unknown"}, ["204", "27"]=>{:mobile_country_code=>"204", :mobile_network_code=>"27", :bands=>["Unknown"], :operator=>"Breezz Nederland B.V.", :status=>"Unknown"}, ["204", "28"]=>{:mobile_country_code=>"204", :mobile_network_code=>"28", :bands=>["Unknown"], :operator=>"Lancelot B.V.", :status=>"Unknown"}, ["204", "29"]=>{:mobile_country_code=>"204", :mobile_network_code=>"29", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Private Mobile Ltd", :status=>"Unknown"}, ["204", "60"]=>{:mobile_country_code=>"204", :mobile_network_code=>"60", :bands=>["Unknown"], :notes=>"[28]", :operator=>"Nextgen Mobile Ltd", :status=>"Unknown"}, ["204", "61"]=>{:mobile_country_code=>"204", :mobile_network_code=>"61", :bands=>["Unknown"], :notes=>"[28]", :operator=>"BodyTrace Netherlands B.V.", :status=>"Unknown"}, ["204", "62"]=>{:mobile_country_code=>"204", :mobile_network_code=>"62", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis", :operator=>"Voxbone mobile", :status=>"Operational"}, ["204", "64"]=>{:mobile_country_code=>"204", :mobile_network_code=>"64", :bands=>["Unknown"], :notes=>"[28]", :operator=>"Zetacom B.V.", :status=>"Unknown"}, ["204", "65"]=>{:mobile_country_code=>"204", :mobile_network_code=>"65", :bands=>["Unknown"], :notes=>"[28]", :operator=>"AGMS Netherlands B.V.", :status=>"Unknown"}, ["204", "66"]=>{:mobile_country_code=>"204", :mobile_network_code=>"66", :bands=>["Unknown"], :notes=>"[28]", :operator=>"Utility Connect B.V.", :status=>"Unknown"}, ["204", "67"]=>{:mobile_country_code=>"204", :mobile_network_code=>"67", :bands=>["PrivateGSM 1800"], :operator=>"RadioAccess B.V.", :status=>"Operational"}, ["204", "68"]=>{:mobile_country_code=>"204", :mobile_network_code=>"68", :bands=>["Unknown"], :notes=>"[28]", :operator=>"Roamware (Netherlands) B.V.", :status=>"Unknown"}, ["204", "69"]=>{:mobile_country_code=>"204", :mobile_network_code=>"69", :bands=>[], :operator=>"KPN Mobile The Netherlands B.V.", :status=>""}, ["206", "01"]=>{:mobile_country_code=>"206", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"Proximus", :operator=>"Belgacom Mobile", :status=>"Operational"}, ["206", "02"]=>{:mobile_country_code=>"206", :mobile_network_code=>"02", :bands=>["GSM-R"], :notes=>"[28]", :operator=>"N.M.B.S.", :status=>"Operational"}, ["206", "05"]=>{:mobile_country_code=>"206", :mobile_network_code=>"05", :bands=>["MVNO"], :brand=>"Telenet", :notes=>"MVNO using Mobistar's Network[29]", :operator=>"Telenet", :status=>"Operational"}, ["206", "06"]=>{:mobile_country_code=>"206", :mobile_network_code=>"06", :bands=>["MVNO"], :brand=>"Lycamobile", :notes=>"[28]", :operator=>"Lycamobile sprl", :status=>"Operational"}, ["206", "07"]=>{:mobile_country_code=>"206", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"Vectone Mobile", :notes=>"[28]", :operator=>"Mundio Mobile Belgium nv", :status=>"Reserved"}, ["206", "09"]=>{:mobile_country_code=>"206", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis", :operator=>"Voxbone mobile", :status=>"Operational"}, ["206", "10"]=>{:mobile_country_code=>"206", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800"], :brand=>"Mobistar", :operator=>"Orange S.A.", :status=>"Operational"}, ["206", "15"]=>{:mobile_country_code=>"206", :mobile_network_code=>"15", :bands=>["Unknown"], :notes=>"Withdrawn [17][28]", :operator=>"Elephant Talk Communications Schweiz GmbH", :status=>"Not operational"}, ["206", "20"]=>{:mobile_country_code=>"206", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"BASE", :operator=>"KPN Group Belgium", :status=>"Operational"}, ["206", "40"]=>{:mobile_country_code=>"206", :mobile_network_code=>"40", :bands=>["MVNO"], :notes=>"[18]", :operator=>"JOIN Experience (Belgium)", :status=>"Operational"}, ["208", "01"]=>{:mobile_country_code=>"208", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900", "LTE"], :brand=>"Orange", :operator=>"Orange S.A.", :status=>"Operational"}, ["208", "02"]=>{:mobile_country_code=>"208", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900"], :brand=>"Orange", :notes=>"[59] Zones Blanches", :operator=>"Orange S.A.", :status=>"Operational"}, ["208", "03"]=>{:mobile_country_code=>"208", :mobile_network_code=>"03", :bands=>["UMTS"], :brand=>"MobiquiThings", :notes=>"(Full MVNO)", :operator=>"", :status=>"Operational"}, ["208", "04"]=>{:mobile_country_code=>"208", :mobile_network_code=>"04", :bands=>["UMTS"], :brand=>"Sisteer", :notes=>"(MVNE)", :operator=>"", :status=>"Operational"}, ["208", "05"]=>{:mobile_country_code=>"208", :mobile_network_code=>"05", :bands=>["Satellite"], :operator=>"Globalstar Europe", :status=>"Operational"}, ["208", "06"]=>{:mobile_country_code=>"208", :mobile_network_code=>"06", :bands=>["Satellite"], :operator=>"Globalstar Europe", :status=>"Operational"}, ["208", "07"]=>{:mobile_country_code=>"208", :mobile_network_code=>"07", :bands=>["Satellite"], :operator=>"Globalstar Europe", :status=>"Operational"}, ["208", "08"]=>{:mobile_country_code=>"208", :mobile_network_code=>"08", :bands=>[], :brand=>"Completel Mobile", :operator=>"", :status=>""}, ["208", "09"]=>{:mobile_country_code=>"208", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900", "LTE"], :brand=>"SFR", :notes=>"is launched for SFR outbound roaming\nservices", :operator=>"Vivendi", :status=>"Operational"}, ["208", "10"]=>{:mobile_country_code=>"208", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900", "LTE"], :brand=>"SFR", :operator=>"Vivendi", :status=>"Operational"}, ["208", "11"]=>{:mobile_country_code=>"208", :mobile_network_code=>"11", :bands=>["UMTS 2100"], :brand=>"SFR", :notes=>"Femtocells", :operator=>"Vivendi", :status=>"Operational"}, ["208", "13"]=>{:mobile_country_code=>"208", :mobile_network_code=>"13", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900"], :brand=>"SFR", :notes=>"[59] Zones Blanches", :operator=>"Vivendi", :status=>"Operational"}, ["208", "14"]=>{:mobile_country_code=>"208", :mobile_network_code=>"14", :bands=>["GSM-R"], :brand=>"RFF", :operator=>"RFF", :status=>"Operational"}, ["208", "15"]=>{:mobile_country_code=>"208", :mobile_network_code=>"15", :bands=>["UMTS 2100", "UMTS 900"], :brand=>"Free Mobile", :notes=>"[59]", :operator=>"Iliad", :status=>"Operational"}, ["208", "16"]=>{:mobile_country_code=>"208", :mobile_network_code=>"16", :bands=>["UMTS 2100", "UMTS 900"], :brand=>"Free Mobile", :operator=>"Iliad", :status=>"Operational"}, ["208", "17"]=>{:mobile_country_code=>"208", :mobile_network_code=>"17", :bands=>["Unknown"], :brand=>"LEGOS", :notes=>"[59]", :operator=>"Local Exchange Global Operation Services", :status=>"Unknown"}, ["208", "18"]=>{:mobile_country_code=>"208", :mobile_network_code=>"18", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis", :operator=>"Voxbone mobile", :status=>"Operational"}, ["208", "20"]=>{:mobile_country_code=>"208", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900", "LTE 1800", "LTE 2600"], :brand=>"Bouygues", :notes=>"[7]", :operator=>"Bouygues Telecom", :status=>"Operational"}, ["208", "21"]=>{:mobile_country_code=>"208", :mobile_network_code=>"21", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900"], :brand=>"Bouygues", :operator=>"Bouygues Telecom", :status=>"Unknown"}, ["208", "22"]=>{:mobile_country_code=>"208", :mobile_network_code=>"22", :bands=>["Unknown"], :brand=>"Transatel Mobile", :notes=>"MVNE", :operator=>"Transatel", :status=>"Unknown"}, ["208", "23"]=>{:mobile_country_code=>"208", :mobile_network_code=>"23", :bands=>["GSM", "UMTS"], :brand=>"Virgin Mobile (MVNO)", :notes=>"Full MVNO (SFR, Orange and Bouygues)", :operator=>"Omea Telecom", :status=>"Operational"}, ["208", "24"]=>{:mobile_country_code=>"208", :mobile_network_code=>"24", :bands=>["UMTS"], :brand=>"MobiquiThings", :notes=>"(Full MVNO)", :operator=>"", :status=>"Operational"}, ["208", "25"]=>{:mobile_country_code=>"208", :mobile_network_code=>"25", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900"], :brand=>"LycaMobile", :operator=>"LycaMobile", :status=>"Operational"}, ["208", "26"]=>{:mobile_country_code=>"208", :mobile_network_code=>"26", :bands=>["GSM", "UMTS"], :brand=>"NRJ Mobile (MVNO)", :notes=>"Full MVNO (SFR and Orange)", :operator=>"NRJ Mobile", :status=>"Operational"}, ["208", "27"]=>{:mobile_country_code=>"208", :mobile_network_code=>"27", :bands=>["Unknown"], :notes=>"[59]", :operator=>"Afone", :status=>"Unknown"}, ["208", "28"]=>{:mobile_country_code=>"208", :mobile_network_code=>"28", :bands=>["Unknown"], :notes=>"[59]", :operator=>"Astrium SAS", :status=>"Unknown"}, ["208", "29"]=>{:mobile_country_code=>"208", :mobile_network_code=>"29", :bands=>["Unknown"], :notes=>"[59]", :operator=>"Soci\u00E9t\u00E9 International Mobile Communication", :status=>"Unknown"}, ["208", "30"]=>{:mobile_country_code=>"208", :mobile_network_code=>"30", :bands=>["Unknown"], :notes=>"[59]", :operator=>"Symacom", :status=>"Unknown"}, ["208", "31"]=>{:mobile_country_code=>"208", :mobile_network_code=>"31", :bands=>["MVNO"], :brand=>"Vectone", :notes=>"[59]", :operator=>"Mundio Mobile", :status=>"Operational"}, ["208", "88"]=>{:mobile_country_code=>"208", :mobile_network_code=>"88", :bands=>["GSM 900", "GSM 1800"], :brand=>"Bouygues", :notes=>"Zones Blanches", :operator=>"Bouygues Telecom", :status=>"Operational"}, ["208", "89"]=>{:mobile_country_code=>"208", :mobile_network_code=>"89", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Omer Telecom Ltd", :status=>"Unknown"}, ["208", "90"]=>{:mobile_country_code=>"208", :mobile_network_code=>"90", :bands=>["Unknown"], :notes=>"[59]", :operator=>"Images & R\u00E9seaux", :status=>"Unknown"}, ["208", "91"]=>{:mobile_country_code=>"208", :mobile_network_code=>"91", :bands=>["Unknown"], :notes=>"[59]", :operator=>"Orange S.A.", :status=>"Unknown"}, ["208", "92"]=>{:mobile_country_code=>"208", :mobile_network_code=>"92", :bands=>["LTE 2600"], :brand=>"Com4Innov", :notes=>"Test network; LTE 800 planned[59][60]", :operator=>"Association Plate-forme T\u00E9l\u00E9com", :status=>"Operational"}, ["208", "93"]=>{:mobile_country_code=>"208", :mobile_network_code=>"93", :bands=>["Unknown"], :notes=>"[59]", :operator=>"TDF", :status=>"Unknown"}, ["212", "01"]=>{:mobile_country_code=>"212", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100", "LTE 2600"], :brand=>"Office des Telephones", :notes=>"Used for the Vala network in Kosovo. The GSM Association lists the PTK (P&T Kosovo) website for this network.", :operator=>"Monaco Telecom", :status=>"Operational"}, ["213", "03"]=>{:mobile_country_code=>"213", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Mobiland", :notes=>"[1][6]", :operator=>"Servei De Tele. DAndorra", :status=>"Operational"}, ["214", "01"]=>{:mobile_country_code=>"214", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vodafone", :notes=>"Also use MNC 19 and also 15 Some MVNO use this MNC (Hits, Eroski, Lebara, PepePhone)", :operator=>"Vodafone Spain", :status=>"Operational"}, ["214", "03"]=>{:mobile_country_code=>"214", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Orange", :notes=>"Also use MNC 33 Some MVNO use this MNC (CarrefourOnline, Dia, Hualong, Llamaya, MasMovil, The Phone House Spain, CABLE movil) [51]", :operator=>"France Telecom Espa\u00F1a SA", :status=>"Operational"}, ["214", "04"]=>{:mobile_country_code=>"214", :mobile_network_code=>"04", :bands=>["GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Yoigo", :operator=>"Xfera Moviles SA", :status=>"Operational"}, ["214", "05"]=>{:mobile_country_code=>"214", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"TME", :notes=>"Used by resellers", :operator=>"Telef\u00F3nica M\u00F3viles Espa\u00F1a", :status=>"Operational"}, ["214", "06"]=>{:mobile_country_code=>"214", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Vodafone", :notes=>"Used by resellers/Also use MNC 19 [51]", :operator=>"Vodafone Spain", :status=>"Operational"}, ["214", "07"]=>{:mobile_country_code=>"214", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"movistar", :notes=>"Some MVNO use this MNC (Tu, Sweno, Vectone Movil, ZeroMovil) [51]", :operator=>"Telef\u00F3nica M\u00F3viles Espa\u00F1a", :status=>"Operational"}, ["214", "08"]=>{:mobile_country_code=>"214", :mobile_network_code=>"08", :bands=>["MVNO"], :brand=>"Euskaltel", :notes=>"Some MVNO use this MNC (RACC)", :operator=>"", :status=>"Operational"}, ["214", "09"]=>{:mobile_country_code=>"214", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Orange", :notes=>"Used by resellers", :operator=>"France Telecom Espa\u00F1a SA", :status=>"Operational"}, ["214", "10"]=>{:mobile_country_code=>"214", :mobile_network_code=>"10", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Operadora de Telecomunicaciones Opera SL", :status=>"Unknown"}, ["214", "11"]=>{:mobile_country_code=>"214", :mobile_network_code=>"11", :bands=>["Unknown"], :brand=>"Orange", :notes=>"[17]", :operator=>"France Telecom Espa\u00F1a SA", :status=>"Unknown"}, ["214", "12"]=>{:mobile_country_code=>"214", :mobile_network_code=>"12", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Contacta Servicios Avanzados de Telecomunicaciones SL", :status=>"Unknown"}, ["214", "13"]=>{:mobile_country_code=>"214", :mobile_network_code=>"13", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Incotel Ingeniera y Consultaria SL", :status=>"Unknown"}, ["214", "14"]=>{:mobile_country_code=>"214", :mobile_network_code=>"14", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Incotel Servicioz Avanzados SL", :status=>"Unknown"}, ["214", "15"]=>{:mobile_country_code=>"214", :mobile_network_code=>"15", :bands=>["MVNO"], :brand=>"BT", :operator=>"BT Group Espa\u00F1a Compa\u00F1ia de Servicios Globales de Telecomunicaciones S.A.U.", :status=>"Operational"}, ["214", "16"]=>{:mobile_country_code=>"214", :mobile_network_code=>"16", :bands=>["MVNO"], :brand=>"TeleCable", :operator=>"Telecable de Asturias S.A.U.", :status=>"Operational"}, ["214", "17"]=>{:mobile_country_code=>"214", :mobile_network_code=>"17", :bands=>["MVNO"], :brand=>"M\u00F3bil R", :operator=>"R Cable y Telecomunicaciones Galicia S.A.", :status=>"Operational"}, ["214", "18"]=>{:mobile_country_code=>"214", :mobile_network_code=>"18", :bands=>["MVNO"], :brand=>"ONO", :operator=>"Cableuropa S.A.U.", :status=>"Operational"}, ["214", "19"]=>{:mobile_country_code=>"214", :mobile_network_code=>"19", :bands=>["MVNO"], :brand=>"Simyo", :operator=>"E-PLUS Moviles Virtuales Espa\u00F1a S.L.U.", :status=>"Operational"}, ["214", "20"]=>{:mobile_country_code=>"214", :mobile_network_code=>"20", :bands=>["MVNO"], :brand=>"Fonyou", :operator=>"Fonyou Telecom S.L.", :status=>"Operational"}, ["214", "21"]=>{:mobile_country_code=>"214", :mobile_network_code=>"21", :bands=>["MVNO"], :brand=>"Jazztel", :operator=>"Jazz Telecom S.A.U.", :status=>"Operational"}, ["214", "22"]=>{:mobile_country_code=>"214", :mobile_network_code=>"22", :bands=>["MVNO"], :brand=>"DigiMobil", :operator=>"Best Spain Telecom", :status=>"Operational"}, ["214", "23"]=>{:mobile_country_code=>"214", :mobile_network_code=>"23", :bands=>["MVNO"], :brand=>"Barablu", :operator=>"Barablu M\u00F3vil Espa\u00F1a", :status=>""}, ["214", "24"]=>{:mobile_country_code=>"214", :mobile_network_code=>"24", :bands=>["MVNO"], :brand=>"Eroski", :notes=>"Also use MNC 01. Some MVNO use this MNC (Orbitel, Vizzavi)", :operator=>"Eroski M\u00F3vil Espa\u00F1a", :status=>"Operational"}, ["214", "25"]=>{:mobile_country_code=>"214", :mobile_network_code=>"25", :bands=>["MVNO"], :brand=>"Lycamobile", :operator=>"LycaMobile S.L.", :status=>"Operational"}, ["214", "26"]=>{:mobile_country_code=>"214", :mobile_network_code=>"26", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Lleida Networks Serveis Telem\u00E1tics, SL", :status=>"Unknown"}, ["214", "27"]=>{:mobile_country_code=>"214", :mobile_network_code=>"27", :bands=>["MVNO"], :brand=>"Truphone", :operator=>"SCN Truphone, S.L.", :status=>"Operational"}, ["214", "28"]=>{:mobile_country_code=>"214", :mobile_network_code=>"28", :bands=>["LTE-TDD 2600"], :brand=>"Murcia4G", :notes=>"LTE band 38 [141]", :operator=>"Consorcio de Telecomunicaciones Avanzadas, S.A.", :status=>"Operational"}, ["214", "29"]=>{:mobile_country_code=>"214", :mobile_network_code=>"29", :bands=>["LTE-TDD 3500"], :notes=>"[141]", :operator=>"NEO-SKY 2002, S.A.", :status=>"Operational"}, ["214", "30"]=>{:mobile_country_code=>"214", :mobile_network_code=>"30", :bands=>["Unknown"], :notes=>"[142]", :operator=>"Compatel Limited", :status=>"Unknown"}, ["214", "31"]=>{:mobile_country_code=>"214", :mobile_network_code=>"31", :bands=>["Unknown"], :notes=>"[142]", :operator=>"Red Digital De Telecomunicaciones de las Islas Baleares, S.L.", :status=>"Unknown"}, ["214", "32"]=>{:mobile_country_code=>"214", :mobile_network_code=>"32", :bands=>["MVNO"], :brand=>"Tuenti", :notes=>"[116]", :operator=>"Tuenti Technologies S.L.", :status=>"Operational"}, ["216", "01"]=>{:mobile_country_code=>"216", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Telenor", :notes=>"Former Pannon, Pannon GSM; MNC has not the same numerical value as the area code[4]", :operator=>"Telenor Magyarorsz\u00E1g Zrt.", :status=>"Operational"}, ["216", "02"]=>{:mobile_country_code=>"216", :mobile_network_code=>"02", :bands=>["Unknown"], :notes=>"[76]", :operator=>"MVM Net Ltd.", :status=>"Unknown"}, ["216", "20"]=>{:mobile_country_code=>"216", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Telenor", :notes=>"Former Pannon, Pannon GSM; MNC has the same numerical value as the area code", :operator=>"Telenor Magyarorsz\u00E1g Zrt.", :status=>"Operational"}, ["216", "30"]=>{:mobile_country_code=>"216", :mobile_network_code=>"30", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"T-Mobile", :notes=>"Former WESTEL, Westel 900; MNC has the same numerical value as the area code[4]", :operator=>"Magyar Telekom Plc", :status=>"Operational"}, ["216", "70"]=>{:mobile_country_code=>"216", :mobile_network_code=>"70", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "UMTS 900"], :brand=>"Vodafone", :notes=>"MNC has the same numerical value as the area code[4]", :operator=>"Vodafone Magyarorsz\u00E1g Zrt.", :status=>"Operational"}, ["216", "71"]=>{:mobile_country_code=>"216", :mobile_network_code=>"71", :bands=>["Unknown"], :brand=>"UPC Hungary", :notes=>"[77]", :operator=>"UPC Hungary Ltd.", :status=>"Operational"}, ["216", "99"]=>{:mobile_country_code=>"216", :mobile_network_code=>"99", :bands=>["GSM-R 900"], :brand=>"MAV GSM-R", :notes=>"[78]", :operator=>"Magyar \u00C1llamvasutak", :status=>"Planned"}, ["218", "03"]=>{:mobile_country_code=>"218", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"HT-ERONET", :operator=>"Public Enterprise Croatian Telecom Ltd.", :status=>"Operational"}, ["218", "05"]=>{:mobile_country_code=>"218", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"m:tel", :notes=>"Mobilna Srpske", :operator=>"RS Telecommunications JSC Banja Luka", :status=>"Operational"}, ["218", "90"]=>{:mobile_country_code=>"218", :mobile_network_code=>"90", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"BH Mobile", :operator=>"BH Telecom", :status=>"Operational"}, ["219", "01"]=>{:mobile_country_code=>"219", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800"], :brand=>"T-Mobile", :notes=>"[7]", :operator=>"T-Mobile Croatia", :status=>"Operational"}, ["219", "02"]=>{:mobile_country_code=>"219", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Tele2", :notes=>"[51]", :operator=>"Tele2", :status=>"Operational"}, ["219", "10"]=>{:mobile_country_code=>"219", :mobile_network_code=>"10", :bands=>["GSM 900", "UMTS 2100", "LTE 1800"], :brand=>"Vip", :notes=>"[7]", :operator=>"Vipnet", :status=>"Operational"}, ["220", "01"]=>{:mobile_country_code=>"220", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Telenor", :notes=>"Former MOBTEL", :operator=>"Telenor Serbia", :status=>"Operational"}, ["220", "02"]=>{:mobile_country_code=>"220", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Telenor", :notes=>"Discounted on November 11, 2011. Is moving to 297 01, Montenegro MCC and MNC.", :operator=>"Telenor Montenegro", :status=>"Not operational"}, ["220", "03"]=>{:mobile_country_code=>"220", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"mt:s", :operator=>"Telekom Srbija", :status=>"Operational"}, ["220", "05"]=>{:mobile_country_code=>"220", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"VIP", :operator=>"VIP Mobile", :status=>"Operational"}, ["222", "01"]=>{:mobile_country_code=>"222", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"TIM", :notes=>"[33]", :operator=>"Telecom Italia SpA", :status=>"Operational"}, ["222", "02"]=>{:mobile_country_code=>"222", :mobile_network_code=>"02", :bands=>["Satellite (Globalstar)"], :brand=>"Elsacom", :notes=>"Retired", :operator=>"", :status=>"Not operational"}, ["222", "04"]=>{:mobile_country_code=>"222", :mobile_network_code=>"04", :bands=>["Unknown"], :brand=>"Intermatica", :operator=>"", :status=>"Unknown"}, ["222", "05"]=>{:mobile_country_code=>"222", :mobile_network_code=>"05", :bands=>["Unknown"], :brand=>"Telespazio", :operator=>"", :status=>"Unknown"}, ["222", "07"]=>{:mobile_country_code=>"222", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"Noverca", :notes=>"uses TIM network", :operator=>"", :status=>"Operational"}, ["222", "10"]=>{:mobile_country_code=>"222", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Vodafone", :notes=>"[33]", :operator=>"Vodafone Omnitel N.V.", :status=>"Operational"}, ["222", "30"]=>{:mobile_country_code=>"222", :mobile_network_code=>"30", :bands=>["GSM-R 900"], :brand=>"RFI", :notes=>"railways communication", :operator=>"Rete Ferroviaria Italiana", :status=>"Operational"}, ["222", "34"]=>{:mobile_country_code=>"222", :mobile_network_code=>"34", :bands=>["MVNO"], :brand=>"BT Italia", :notes=>"uses TIM Network", :operator=>"British Telecom Italia", :status=>"Reserved"}, ["222", "35"]=>{:mobile_country_code=>"222", :mobile_network_code=>"35", :bands=>["MVNO"], :brand=>"Lyca Italy", :notes=>"uses Vodafone Network", :operator=>"Lycamobile", :status=>"Operational"}, ["222", "77"]=>{:mobile_country_code=>"222", :mobile_network_code=>"77", :bands=>["UMTS 2100"], :brand=>"IPSE 2000", :notes=>"Retired", :operator=>"", :status=>"Not operational"}, ["222", "88"]=>{:mobile_country_code=>"222", :mobile_network_code=>"88", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800"], :brand=>"Wind", :notes=>"[33]", :operator=>"Wind Telecomunicazioni SpA", :status=>"Operational"}, ["222", "98"]=>{:mobile_country_code=>"222", :mobile_network_code=>"98", :bands=>["GSM 900"], :brand=>"BLU s.p.a", :operator=>"BLU s.p.a", :status=>"Not operational"}, ["222", "99"]=>{:mobile_country_code=>"222", :mobile_network_code=>"99", :bands=>["UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"3 Italia", :notes=>"[33]", :operator=>"Hutchison 3G", :status=>"Operational"}, ["225", ""]=>{:mobile_country_code=>"225", :mobile_network_code=>"", :bands=>[], :notes=>"The Vatican is served by Italian networks TIM, Vodafone Italy, Wind and 3", :operator=>"", :status=>"Not operational"}, ["226", "01"]=>{:mobile_country_code=>"226", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "TD-LTE 2600"], :brand=>"Vodafone", :notes=>"Formerly branded as Connex", :operator=>"Vodafone Rom\u00E2nia", :status=>"Operational"}, ["226", "02"]=>{:mobile_country_code=>"226", :mobile_network_code=>"02", :bands=>["CDMA 420"], :brand=>"Clicknet Mobile", :notes=>"Licence expired on 1 January 2015, and almost all base stations were shut down. A few base stations remained active in mountainous areas for emergency services until will be replaced with GSM/UMTS [123]", :operator=>"Telekom Romania", :status=>"Not operational"}, ["226", "03"]=>{:mobile_country_code=>"226", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Telekom", :notes=>"Formerly branded as Cosmote", :operator=>"Telekom Romania", :status=>"Operational"}, ["226", "04"]=>{:mobile_country_code=>"226", :mobile_network_code=>"04", :bands=>["CDMA 450"], :brand=>"Cosmote/Zapp", :notes=>"Licence expired on 24 March 2013, and network was shut down[124]", :operator=>"Telekom Romania", :status=>"Not operational"}, ["226", "05"]=>{:mobile_country_code=>"226", :mobile_network_code=>"05", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"Digi.Mobil", :notes=>"National Roaming with 226 01 for voice and data services for postpaid customers only.", :operator=>"RCS&RDS", :status=>"Operational"}, ["226", "06"]=>{:mobile_country_code=>"226", :mobile_network_code=>"06", :bands=>["UMTS 2100"], :brand=>"Telekom/Zapp", :notes=>"Branded as Telekom for data/voice and Zapp for data only", :operator=>"Telekom Romania", :status=>"Operational"}, ["226", "10"]=>{:mobile_country_code=>"226", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Orange", :notes=>"Formerly branded as Dialog", :operator=>"Orange Rom\u00E2nia", :status=>"Operational"}, ["226", "11"]=>{:mobile_country_code=>"226", :mobile_network_code=>"11", :bands=>["MVNO"], :notes=>"[17]", :operator=>"Enigma-System", :status=>"Unknown"}, ["226", "15"]=>{:mobile_country_code=>"226", :mobile_network_code=>"15", :bands=>["TD-LTE 2600"], :brand=>"Idilis", :notes=>"Scheduled to launch in January 2015", :operator=>"Idilis", :status=>"Planned"}, ["228", "01"]=>{:mobile_country_code=>"228", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Swisscom", :operator=>"Swisscom Ltd", :status=>"Operational"}, ["228", "02"]=>{:mobile_country_code=>"228", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Sunrise", :notes=>"[51]", :operator=>"Sunrise Communications AG", :status=>"Operational"}, ["228", "03"]=>{:mobile_country_code=>"228", :mobile_network_code=>"03", :bands=>["GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Orange", :notes=>"[51]", :operator=>"Orange Communications SA", :status=>"Operational"}, ["228", "05"]=>{:mobile_country_code=>"228", :mobile_network_code=>"05", :bands=>["Unknown"], :notes=>"Planned", :operator=>"Togewanet AG (Comfone)", :status=>"Reserved"}, ["228", "06"]=>{:mobile_country_code=>"228", :mobile_network_code=>"06", :bands=>["GSM-R 900"], :brand=>"SBB-CFF-FFS", :operator=>"SBB AG", :status=>"Operational"}, ["228", "07"]=>{:mobile_country_code=>"228", :mobile_network_code=>"07", :bands=>["GSM 1800"], :brand=>"IN&Phone", :operator=>"IN&Phone SA", :status=>"Operational"}, ["228", "08"]=>{:mobile_country_code=>"228", :mobile_network_code=>"08", :bands=>["GSM 1800"], :brand=>"Tele4u", :notes=>"owned by Sunrise, former Tele2", :operator=>"TelCommunication Services AG", :status=>"Operational"}, ["228", "09"]=>{:mobile_country_code=>"228", :mobile_network_code=>"09", :bands=>["Unknown"], :notes=>"[46]", :operator=>"Comfone AG", :status=>"Unknown"}, ["228", "12"]=>{:mobile_country_code=>"228", :mobile_network_code=>"12", :bands=>[], :operator=>"Sunrise", :status=>"Inactive"}, ["228", "50"]=>{:mobile_country_code=>"228", :mobile_network_code=>"50", :bands=>["UMTS 2100"], :notes=>"abandoned", :operator=>"3G Mobile AG", :status=>"Reserved"}, ["228", "51"]=>{:mobile_country_code=>"228", :mobile_network_code=>"51", :bands=>["MVNO"], :notes=>"Also for paging", :operator=>"BebbiCell AG", :status=>"Operational"}, ["228", "52"]=>{:mobile_country_code=>"228", :mobile_network_code=>"52", :bands=>[], :brand=>"Barablu", :operator=>"Barablu", :status=>""}, ["228", "53"]=>{:mobile_country_code=>"228", :mobile_network_code=>"53", :bands=>["Unknown"], :notes=>"[46]", :operator=>"UPC Cablecom GmbH", :status=>"Unknown"}, ["228", "54"]=>{:mobile_country_code=>"228", :mobile_network_code=>"54", :bands=>["MVNO"], :notes=>"[46]", :operator=>"Lycamobile AG", :status=>"Operational"}, ["228", "56"]=>{:mobile_country_code=>"228", :mobile_network_code=>"56", :bands=>["Unknown"], :notes=>"[46]", :operator=>"SMSRelay AG", :status=>"Unknown"}, ["228", "99"]=>{:mobile_country_code=>"228", :mobile_network_code=>"99", :bands=>[], :notes=>"[147]", :operator=>"Swisscom", :status=>"Unknown"}, ["230", "01"]=>{:mobile_country_code=>"230", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800"], :brand=>"T-Mobile", :notes=>"former Paegas", :operator=>"T-Mobile Czech Republic", :status=>"Operational"}, ["230", "02"]=>{:mobile_country_code=>"230", :mobile_network_code=>"02", :bands=>["CDMA 450", "GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800"], :brand=>"O2", :notes=>"[7] former Eurotel", :operator=>"O2 Czech Republic", :status=>"Operational"}, ["230", "03"]=>{:mobile_country_code=>"230", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 900", "LTE 1800"], :brand=>"Vodafone", :notes=>"former Oskar", :operator=>"Vodafone Czech Republic", :status=>"Operational"}, ["230", "04"]=>{:mobile_country_code=>"230", :mobile_network_code=>"04", :bands=>["CDMA2000 410 - 430"], :brand=>"U:fon", :operator=>"Air Telecom a. s.", :status=>"Operational"}, ["230", "05"]=>{:mobile_country_code=>"230", :mobile_network_code=>"05", :bands=>["Unknown"], :operator=>"TRAVEL TELEKOMMUNIKATION, s.r.o.", :status=>"Unknown"}, ["230", "06"]=>{:mobile_country_code=>"230", :mobile_network_code=>"06", :bands=>["Unknown"], :operator=>"OSNO TELECOMUNICATION, s.r.o.", :status=>"Unknown"}, ["230", "07"]=>{:mobile_country_code=>"230", :mobile_network_code=>"07", :bands=>["MVNO"], :operator=>"ASTELNET, s.r.o.", :status=>"Operational"}, ["230", "08"]=>{:mobile_country_code=>"230", :mobile_network_code=>"08", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Compatel s.r.o.", :status=>"Unknown"}, ["230", "98"]=>{:mobile_country_code=>"230", :mobile_network_code=>"98", :bands=>["GSM-R 900"], :notes=>"railways communication", :operator=>"Spr\u00E1va \u017Eelezni\u010Dn\u00ED dopravn\u00ED cesty, s.o.", :status=>"Operational"}, ["230", "99"]=>{:mobile_country_code=>"230", :mobile_network_code=>"99", :bands=>["GSM 1800"], :brand=>"Vodafone", :notes=>"R&D Centre at FEE, CTU (educational, experimental)", :operator=>"Vodafone Czech Republic", :status=>"Operational"}, ["231", "01"]=>{:mobile_country_code=>"231", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Orange", :notes=>"Former Globtel [51]", :operator=>"Orange Slovensko", :status=>"Operational"}, ["231", "02"]=>{:mobile_country_code=>"231", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Telekom", :notes=>"Former Eurotel", :operator=>"Slovak Telekom", :status=>"Operational"}, ["231", "03"]=>{:mobile_country_code=>"231", :mobile_network_code=>"03", :bands=>["LTE 1800"], :brand=>"Swan", :notes=>"[133]", :operator=>"Unient Communications", :status=>"Operational"}, ["231", "04"]=>{:mobile_country_code=>"231", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Telekom", :notes=>"Former T-Mobile", :operator=>"Slovak Telekom", :status=>"Operational"}, ["231", "05"]=>{:mobile_country_code=>"231", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Orange", :notes=>"[17]", :operator=>"Orange Slovensko", :status=>"Operational"}, ["231", "06"]=>{:mobile_country_code=>"231", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"O2", :operator=>"Telef\u00F3nica O2 Slovakia", :status=>"Operational"}, ["231", "99"]=>{:mobile_country_code=>"231", :mobile_network_code=>"99", :bands=>["GSM-R"], :brand=>"\u017DSR", :notes=>"Railway communication and signalling", :operator=>"\u017Deleznice Slovenskej Republiky", :status=>"Operational"}, ["232", "01"]=>{:mobile_country_code=>"232", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"A1.net", :notes=>"former A1 / Mobilkom / PTA [20][21]", :operator=>"A1 Telekom Austria", :status=>"Operational"}, ["232", "02"]=>{:mobile_country_code=>"232", :mobile_network_code=>"02", :bands=>[], :operator=>"A1 Telekom Austria", :status=>"reserved"}, ["232", "03"]=>{:mobile_country_code=>"232", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"T-Mobile AT", :notes=>"former Max.Mobil / national roaming agreement with 232-10 [20]", :operator=>"T-Mobile Austria", :status=>"Operational"}, ["232", "04"]=>{:mobile_country_code=>"232", :mobile_network_code=>"04", :bands=>["Unknown"], :brand=>"T-Mobile AT", :notes=>"[4]", :operator=>"T-Mobile Austria Gmbh", :status=>"Unknown"}, ["232", "05"]=>{:mobile_country_code=>"232", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Orange AT", :notes=>"owned by Hutchison Drei Austria / former Orange Austria / One / Connect [20]", :operator=>"Hutchison Drei Austria", :status=>"Operational"}, ["232", "06"]=>{:mobile_country_code=>"232", :mobile_network_code=>"06", :bands=>["Unknown"], :brand=>"Orange AT", :notes=>"[4]", :operator=>"Orange Austria GmbH", :status=>"Unknown"}, ["232", "07"]=>{:mobile_country_code=>"232", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"tele.ring", :notes=>"brand of T-Mobile Austria", :operator=>"T-Mobile Austria", :status=>"Operational"}, ["232", "08"]=>{:mobile_country_code=>"232", :mobile_network_code=>"08", :bands=>[], :notes=>"MVNO owned by Lycamobile Austria", :operator=>"", :status=>"Not operational"}, ["232", "09"]=>{:mobile_country_code=>"232", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"Tele2Mobil", :notes=>"division bought from Tele2 by A1 Telekom Austria; customers \"moved\" to bob (232-11)", :operator=>"A1 Telekom Austria", :status=>"Operational"}, ["232", "10"]=>{:mobile_country_code=>"232", :mobile_network_code=>"10", :bands=>["UMTS 2100", "LTE 2600"], :brand=>"3AT", :notes=>"national roaming agreement with 232-03, one-way national roaming agreement with 232-01", :operator=>"Hutchison Drei Austria", :status=>"Operational"}, ["232", "11"]=>{:mobile_country_code=>"232", :mobile_network_code=>"11", :bands=>["MVNO"], :brand=>"bob", :notes=>"brand of A1 Telekom Austria", :operator=>"A1 Telekom Austria", :status=>"Operational"}, ["232", "12"]=>{:mobile_country_code=>"232", :mobile_network_code=>"12", :bands=>["MVNO"], :brand=>"yesss!", :notes=>"owned by A1 Telekom Austria / one-way national roaming agreement with 232-05", :operator=>"A1 Telekom Austria", :status=>"Operational"}, ["232", "13"]=>{:mobile_country_code=>"232", :mobile_network_code=>"13", :bands=>["Unknown"], :notes=>"MVNO owned by UPC Austria", :operator=>"", :status=>"Not operational"}, ["232", "14"]=>{:mobile_country_code=>"232", :mobile_network_code=>"14", :bands=>["Unknown"], :operator=>"Hutchison Drei Austria", :status=>"Reserved"}, ["232", "15"]=>{:mobile_country_code=>"232", :mobile_network_code=>"15", :bands=>["MVNO"], :brand=>"Vectone", :notes=>"former Barablu Mobile Austria", :operator=>"Mundio Mobile Austria", :status=>"Operational"}, ["232", "16"]=>{:mobile_country_code=>"232", :mobile_network_code=>"16", :bands=>[], :operator=>"Hutchison Drei Austria", :status=>"Reserved"}, ["232", "91"]=>{:mobile_country_code=>"232", :mobile_network_code=>"91", :bands=>["GSM-R"], :brand=>"GSM-R A", :notes=>"railways communications", :operator=>"\u00D6BB", :status=>"Operational"}, ["234", "00"]=>{:mobile_country_code=>"234", :mobile_network_code=>"00", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"BT", :notes=>"UK MNC list from OfCom:[153]", :operator=>"BT Group", :status=>"Operational"}, ["234", "01"]=>{:mobile_country_code=>"234", :mobile_network_code=>"01", :bands=>["GSM 1800"], :brand=>"Vectone Mobile", :notes=>"Previously: Mapesbury Communications Ltd.", :operator=>"Mundio Mobile Limited", :status=>"Operational"}, ["234", "02"]=>{:mobile_country_code=>"234", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"O2 (UK)", :operator=>"Telef\u00F3nica Europe", :status=>"Operational"}, ["234", "03"]=>{:mobile_country_code=>"234", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Airtel-Vodafone", :operator=>"Jersey Airtel Limited", :status=>"Operational"}, ["234", "04"]=>{:mobile_country_code=>"234", :mobile_network_code=>"04", :bands=>["GSM 1800"], :brand=>"FMS Solutions Ltd", :operator=>"FMS Solutions Ltd", :status=>"Reserved"}, ["234", "05"]=>{:mobile_country_code=>"234", :mobile_network_code=>"05", :bands=>[], :operator=>"COLT Mobile Telecommunications Limited", :status=>""}, ["234", "06"]=>{:mobile_country_code=>"234", :mobile_network_code=>"06", :bands=>[], :operator=>"Internet Computer Bureau Limited", :status=>""}, ["234", "07"]=>{:mobile_country_code=>"234", :mobile_network_code=>"07", :bands=>["GSM 1800"], :operator=>"Cable & Wireless Worldwide", :status=>"Operational"}, ["234", "08"]=>{:mobile_country_code=>"234", :mobile_network_code=>"08", :bands=>[], :operator=>"OnePhone (UK) Ltd", :status=>""}, ["234", "09"]=>{:mobile_country_code=>"234", :mobile_network_code=>"09", :bands=>[], :operator=>"Tismi BV", :status=>""}, ["234", "10"]=>{:mobile_country_code=>"234", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"O2 (UK)", :operator=>"Telef\u00F3nica Europe", :status=>"Operational"}, ["234", "11"]=>{:mobile_country_code=>"234", :mobile_network_code=>"11", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"O2 (UK)", :operator=>"Telef\u00F3nica Europe", :status=>"Operational"}, ["234", "12"]=>{:mobile_country_code=>"234", :mobile_network_code=>"12", :bands=>["GSM-R"], :brand=>"Railtrack", :operator=>"Network Rail Infrastructure Ltd", :status=>"Operational"}, ["234", "13"]=>{:mobile_country_code=>"234", :mobile_network_code=>"13", :bands=>["GSM-R"], :brand=>"Railtrack", :operator=>"Network Rail Infrastructure Ltd", :status=>"Operational"}, ["234", "14"]=>{:mobile_country_code=>"234", :mobile_network_code=>"14", :bands=>["GSM 1800"], :brand=>"Hay Systems Ltd", :operator=>"Hay Systems Ltd", :status=>"Operational"}, ["234", "15"]=>{:mobile_country_code=>"234", :mobile_network_code=>"15", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Vodafone UK", :operator=>"Vodafone", :status=>"Operational"}, ["234", "16"]=>{:mobile_country_code=>"234", :mobile_network_code=>"16", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Talk Talk", :notes=>"Formerly Opal Tel Ltd; uses Vodafone for radio access", :operator=>"TalkTalk Communications Limited", :status=>"Operational"}, ["234", "17"]=>{:mobile_country_code=>"234", :mobile_network_code=>"17", :bands=>[], :operator=>"FleXtel Limited", :status=>""}, ["234", "18"]=>{:mobile_country_code=>"234", :mobile_network_code=>"18", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cloud9", :operator=>"Cloud9", :status=>"Operational"}, ["234", "19"]=>{:mobile_country_code=>"234", :mobile_network_code=>"19", :bands=>["GSM 1800"], :brand=>"Private Mobile Networks PMN", :operator=>"Teleware plc", :status=>"Operational"}, ["234", "20"]=>{:mobile_country_code=>"234", :mobile_network_code=>"20", :bands=>["UMTS 2100"], :brand=>"3", :notes=>"National roaming with Orange (UK)'s 2G network", :operator=>"Hutchison 3G UK Ltd", :status=>"Operational"}, ["234", "21"]=>{:mobile_country_code=>"234", :mobile_network_code=>"21", :bands=>["Unknown"], :notes=>"[17]", :operator=>"LogicStar Ltd", :status=>"Unknown"}, ["234", "22"]=>{:mobile_country_code=>"234", :mobile_network_code=>"22", :bands=>["Unknown"], :brand=>"RoutoMessaging", :operator=>"Routo Telecommunications Limited", :status=>"Operational"}, ["234", "23"]=>{:mobile_country_code=>"234", :mobile_network_code=>"23", :bands=>["Unknown"], :notes=>"[153]", :operator=>"Icron Network Limited", :status=>"Unknown"}, ["234", "24"]=>{:mobile_country_code=>"234", :mobile_network_code=>"24", :bands=>["Unknown"], :brand=>"Greenfone", :operator=>"Stour Marine", :status=>"Operational"}, ["234", "25"]=>{:mobile_country_code=>"234", :mobile_network_code=>"25", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Truphone", :notes=>"Uses Vodafone for radio access", :operator=>"Truphone", :status=>"Operational"}, ["234", "26"]=>{:mobile_country_code=>"234", :mobile_network_code=>"26", :bands=>[], :brand=>"Lycamobile", :notes=>"uses O2 Network", :operator=>"Lycamobile UK Limited", :status=>"Operational"}, ["234", "27"]=>{:mobile_country_code=>"234", :mobile_network_code=>"27", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :operator=>"Teleena UK Limited", :status=>"Operational"}, ["234", "28"]=>{:mobile_country_code=>"234", :mobile_network_code=>"28", :bands=>["Unknown"], :brand=>"Marathon Telecom Ltd", :notes=>"[153]", :operator=>"Marathon Telecom Limited", :status=>"Operational"}, ["234", "29"]=>{:mobile_country_code=>"234", :mobile_network_code=>"29", :bands=>["Unknown"], :brand=>"aql", :notes=>"[153]", :operator=>"(aq) Limited", :status=>"Unknown"}, ["234", "30"]=>{:mobile_country_code=>"234", :mobile_network_code=>"30", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"T-Mobile UK", :notes=>"Previously owned by Deutsche Telekom", :operator=>"EE", :status=>"Operational"}, ["234", "31"]=>{:mobile_country_code=>"234", :mobile_network_code=>"31", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Virgin Mobile UK", :notes=>"Virtual network using EE's network", :operator=>"Virgin Media", :status=>"Operational"}, ["234", "32"]=>{:mobile_country_code=>"234", :mobile_network_code=>"32", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Virgin Mobile UK", :notes=>"Virtual network using EE's network", :operator=>"Virgin Media", :status=>"Operational"}, ["234", "33"]=>{:mobile_country_code=>"234", :mobile_network_code=>"33", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Orange (UK)", :notes=>"Previously owned by Orange S.A.", :operator=>"EE", :status=>"Operational"}, ["234", "34"]=>{:mobile_country_code=>"234", :mobile_network_code=>"34", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Orange (UK)", :notes=>"Previously owned by Orange S.A.", :operator=>"EE", :status=>"Operational"}, ["234", "35"]=>{:mobile_country_code=>"234", :mobile_network_code=>"35", :bands=>["Unknown"], :notes=>"[142]", :operator=>"JSC Ingenium (UK) Limited", :status=>"Unknown"}, ["234", "36"]=>{:mobile_country_code=>"234", :mobile_network_code=>"36", :bands=>["Unknown"], :notes=>"Formerly Cable and Wireless[142]", :operator=>"Sure (Isle of Man) Limited", :status=>"Unknown"}, ["234", "37"]=>{:mobile_country_code=>"234", :mobile_network_code=>"37", :bands=>["Unknown"], :notes=>"[142]", :operator=>"Synectiv Ltd", :status=>"Unknown"}, ["234", "38"]=>{:mobile_country_code=>"234", :mobile_network_code=>"38", :bands=>["Unknown"], :brand=>"Virgin Mobile UK", :notes=>"[142]", :operator=>"Virgin Media", :status=>"Unknown"}, ["234", "39"]=>{:mobile_country_code=>"234", :mobile_network_code=>"39", :bands=>["Unknown"], :notes=>"[142]", :operator=>"SSE Energy Supply Limited", :status=>"Unknown"}, ["234", "50"]=>{:mobile_country_code=>"234", :mobile_network_code=>"50", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"JT", :operator=>"JT Group Limited", :status=>"Operational"}, ["234", "51"]=>{:mobile_country_code=>"234", :mobile_network_code=>"51", :bands=>["TD-LTE"], :brand=>"UK Broadband", :operator=>"UK Broadband Limited", :status=>"Operational"}, ["234", "52"]=>{:mobile_country_code=>"234", :mobile_network_code=>"52", :bands=>["Unknown"], :notes=>"[142]", :operator=>"Shyam Telecom UK Ltd", :status=>"Unknown"}, ["234", "53"]=>{:mobile_country_code=>"234", :mobile_network_code=>"53", :bands=>["Unknown"], :notes=>"[142]", :operator=>"Limitless Mobile Ltd", :status=>"Unknown"}, ["234", "55"]=>{:mobile_country_code=>"234", :mobile_network_code=>"55", :bands=>["GSM 900 (Guernsey)", "GSM 1800 (Jersey)", "UMTS 2100"], :operator=>"Cable & Wireless Guernsey / Sure Mobile (Jersey)", :status=>"Operational"}, ["234", "58"]=>{:mobile_country_code=>"234", :mobile_network_code=>"58", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :operator=>"Manx Telecom", :status=>"Operational"}, ["234", "76"]=>{:mobile_country_code=>"234", :mobile_network_code=>"76", :bands=>["GSM 900", "GSM 1800"], :brand=>"BT", :operator=>"BT Group", :status=>"Operational"}, ["234", "78"]=>{:mobile_country_code=>"234", :mobile_network_code=>"78", :bands=>["TETRA"], :brand=>"Airwave", :notes=>"[153]", :operator=>"Airwave Solutions Ltd", :status=>"Operational"}, ["234", "86"]=>{:mobile_country_code=>"234", :mobile_network_code=>"86", :bands=>["Unknown"], :notes=>"[142]", :operator=>"EE", :status=>"Unknown"}, ["234", "\u00A0?"]=>{:mobile_country_code=>"234", :mobile_network_code=>"\u00A0?", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Cloud 9 Mobile", :notes=>"Retired", :operator=>"Cloud 9 Mobile Communications PLC", :status=>"Not operational"}, ["235", "00"]=>{:mobile_country_code=>"235", :mobile_network_code=>"00", :bands=>[], :operator=>"Mundio Mobile Limited", :status=>""}, ["235", "01"]=>{:mobile_country_code=>"235", :mobile_network_code=>"01", :bands=>["Unknown"], :notes=>"[142]", :operator=>"EE", :status=>"Unknown"}, ["235", "02"]=>{:mobile_country_code=>"235", :mobile_network_code=>"02", :bands=>["Unknown"], :notes=>"[142]", :operator=>"EE", :status=>"Unknown"}, ["235", "03"]=>{:mobile_country_code=>"235", :mobile_network_code=>"03", :bands=>["Unknown"], :brand=>"UK Broadband", :notes=>"[153]", :operator=>"UK Broadband Limited", :status=>"Unknown"}, ["235", "77"]=>{:mobile_country_code=>"235", :mobile_network_code=>"77", :bands=>[], :brand=>"BT", :operator=>"BT Group", :status=>""}, ["235", "91"]=>{:mobile_country_code=>"235", :mobile_network_code=>"91", :bands=>[], :operator=>"Vodafone United Kingdom", :status=>""}, ["235", "92"]=>{:mobile_country_code=>"235", :mobile_network_code=>"92", :bands=>[], :operator=>"Cable & Wireless UK", :status=>""}, ["235", "94"]=>{:mobile_country_code=>"235", :mobile_network_code=>"94", :bands=>[], :operator=>"Hutchison 3G UK Ltd", :status=>""}, ["235", "95"]=>{:mobile_country_code=>"235", :mobile_network_code=>"95", :bands=>[], :operator=>"Network Rail Infrastructure Limited", :status=>""}, ["238", "01"]=>{:mobile_country_code=>"238", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"TDC", :operator=>"TDC A/S", :status=>"Operational"}, ["238", "02"]=>{:mobile_country_code=>"238", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Telenor", :notes=>"Former Sonofon", :operator=>"Telenor Denmark", :status=>"Operational"}, ["238", "03"]=>{:mobile_country_code=>"238", :mobile_network_code=>"03", :bands=>["Unknown"], :brand=>"End2End", :notes=>"MNC still registered to TDC? [53]", :operator=>"MIGway A/S", :status=>"Reserved"}, ["238", "04"]=>{:mobile_country_code=>"238", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[53]", :operator=>"NextGen Mobile Ltd", :status=>"Unknown"}, ["238", "05"]=>{:mobile_country_code=>"238", :mobile_network_code=>"05", :bands=>["TETRA"], :brand=>"TetraNet", :notes=>"owned by Motorola Solutions", :operator=>"ApS KBUS 38 nr. 4418", :status=>"Operational"}, ["238", "06"]=>{:mobile_country_code=>"238", :mobile_network_code=>"06", :bands=>["UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"3", :operator=>"Hi3G Denmark ApS", :status=>"Operational"}, ["238", "07"]=>{:mobile_country_code=>"238", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"Vectone Mobile", :notes=>"Formerly Barablu[53]", :operator=>"Mundio Mobile (Denmark) Limited", :status=>"Operational"}, ["238", "08"]=>{:mobile_country_code=>"238", :mobile_network_code=>"08", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis; formerly Nordisk Mobiltelefon[53]", :operator=>"Voxbone mobile", :status=>"Operational"}, ["238", "09"]=>{:mobile_country_code=>"238", :mobile_network_code=>"09", :bands=>["TETRA"], :brand=>"SINE", :notes=>"owned by Motorola Solutions", :operator=>"Dansk Beredskabskommunikation A/S", :status=>"Operational"}, ["238", "10"]=>{:mobile_country_code=>"238", :mobile_network_code=>"10", :bands=>["Unknown"], :brand=>"TDC", :notes=>"For experimental use", :operator=>"TDC A/S", :status=>"Operational"}, ["238", "11"]=>{:mobile_country_code=>"238", :mobile_network_code=>"11", :bands=>["TETRA"], :brand=>"SINE", :operator=>"Dansk Beredskabskommunikation A/S", :status=>"Operational"}, ["238", "12"]=>{:mobile_country_code=>"238", :mobile_network_code=>"12", :bands=>["MVNO"], :brand=>"Lycamobile", :operator=>"Lycamobile Denmark Ltd", :status=>"Operational"}, ["238", "13"]=>{:mobile_country_code=>"238", :mobile_network_code=>"13", :bands=>["Unknown"], :notes=>"[53]", :operator=>"Compatel Limited", :status=>"Unknown"}, ["238", "20"]=>{:mobile_country_code=>"238", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Telia", :operator=>"Telia", :status=>"Operational"}, ["238", "23"]=>{:mobile_country_code=>"238", :mobile_network_code=>"23", :bands=>["GSM-R"], :brand=>"GSM-R DK", :operator=>"Banedanmark", :status=>"Operational"}, ["238", "28"]=>{:mobile_country_code=>"238", :mobile_network_code=>"28", :bands=>["Unknown"], :notes=>"[53]", :operator=>"CoolTEL ApS", :status=>"Unknown"}, ["238", "30"]=>{:mobile_country_code=>"238", :mobile_network_code=>"30", :bands=>["Unknown"], :notes=>"Formerly Telia[53]", :operator=>"Interactive digital media GmbH", :status=>"Unknown"}, ["238", "40"]=>{:mobile_country_code=>"238", :mobile_network_code=>"40", :bands=>["Unknown"], :notes=>"For experimental use. Formerly Sense Communications Denmark A/S[53]", :operator=>"Ericsson Danmark A/S", :status=>"Unknown"}, ["238", "43"]=>{:mobile_country_code=>"238", :mobile_network_code=>"43", :bands=>["Unknown"], :notes=>"[53][54]", :operator=>"MobiWeb Limited", :status=>"Unknown"}, ["238", "66"]=>{:mobile_country_code=>"238", :mobile_network_code=>"66", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :notes=>"Formerly Telia, now shared network Telia/Telenor[33][53]", :operator=>"TT-Netv\u00E6rket P/S", :status=>"Unknown"}, ["238", "77"]=>{:mobile_country_code=>"238", :mobile_network_code=>"77", :bands=>["GSM 900", "GSM 1800"], :brand=>"Telenor", :notes=>"Former Tele2", :operator=>"Telenor Denmark", :status=>"Operational"}, ["240", "01"]=>{:mobile_country_code=>"240", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Telia", :notes=>"[143]", :operator=>"TeliaSonera Sverige AB", :status=>"Operational"}, ["240", "02"]=>{:mobile_country_code=>"240", :mobile_network_code=>"02", :bands=>["UMTS 900", "UMTS 2100", "LTE 2600"], :brand=>"3", :operator=>"HI3G Access AB", :status=>"Operational"}, ["240", "03"]=>{:mobile_country_code=>"240", :mobile_network_code=>"03", :bands=>["CDMA2000 450"], :brand=>"Net 1", :notes=>"Former Ice.net", :operator=>"Netett Sverige AB", :status=>"Operational"}, ["240", "04"]=>{:mobile_country_code=>"240", :mobile_network_code=>"04", :bands=>["UMTS 2100"], :brand=>"SWEDEN", :notes=>"Owned by Hi3G Access (3) and Telenor", :operator=>"3G Infrastructure Services AB", :status=>"Operational"}, ["240", "05"]=>{:mobile_country_code=>"240", :mobile_network_code=>"05", :bands=>["UMTS 2100"], :brand=>"Sweden 3G", :notes=>"Owned by Telia and Tele2", :operator=>"Svenska UMTS-N\u00E4t AB", :status=>"Operational"}, ["240", "06"]=>{:mobile_country_code=>"240", :mobile_network_code=>"06", :bands=>["UMTS 2100"], :brand=>"Telenor", :operator=>"Telenor Sverige AB", :status=>"Operational"}, ["240", "07"]=>{:mobile_country_code=>"240", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"Tele2", :notes=>"(Now merged with Telenor into Net4Mobility)", :operator=>"Tele2 Sverige AB", :status=>"Inactive"}, ["240", "08"]=>{:mobile_country_code=>"240", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800"], :brand=>"Telenor", :operator=>"Telenor Sverige AB", :status=>"Operational"}, ["240", "09"]=>{:mobile_country_code=>"240", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"djuice", :notes=>"former Telenor MVNO; MNC withdrawn [142]", :operator=>"Telenor Mobile Sweden AS", :status=>"Not operational"}, ["240", "10"]=>{:mobile_country_code=>"240", :mobile_network_code=>"10", :bands=>[], :brand=>"Spring Mobil", :notes=>"Only used on femto- and nanocells", :operator=>"Spring Mobil AB", :status=>"Operational"}, ["240", "11"]=>{:mobile_country_code=>"240", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"MNC withdrawn [69]", :operator=>"Lindholmen Science Park AB", :status=>"Not operational"}, ["240", "12"]=>{:mobile_country_code=>"240", :mobile_network_code=>"12", :bands=>["MVNO"], :brand=>"Lycamobile", :notes=>"[142]", :operator=>"Lycamobile Sweden Limited", :status=>"Operational"}, ["240", "13"]=>{:mobile_country_code=>"240", :mobile_network_code=>"13", :bands=>["Unknown"], :notes=>"[142]", :operator=>"Alltele F\u00F6retag Sverige AB", :status=>"Unknown"}, ["240", "14"]=>{:mobile_country_code=>"240", :mobile_network_code=>"14", :bands=>["MVNO"], :operator=>"TDC Sverige AB", :status=>"Inactive"}, ["240", "15"]=>{:mobile_country_code=>"240", :mobile_network_code=>"15", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :operator=>"Wireless Maingate Nordic AB", :status=>"Operational"}, ["240", "16"]=>{:mobile_country_code=>"240", :mobile_network_code=>"16", :bands=>["GSM"], :notes=>"[142]", :operator=>"42 Telecom AB", :status=>"Operational"}, ["240", "17"]=>{:mobile_country_code=>"240", :mobile_network_code=>"17", :bands=>["Unknown"], :brand=>"Gotanet", :operator=>"G\u00F6talandsn\u00E4tet AB", :status=>"Unknown"}, ["240", "18"]=>{:mobile_country_code=>"240", :mobile_network_code=>"18", :bands=>["Unknown"], :operator=>"Generic Mobile Systems Sweden AB", :status=>"Unknown"}, ["240", "19"]=>{:mobile_country_code=>"240", :mobile_network_code=>"19", :bands=>["MVNO"], :brand=>"Vectone Mobile / Delight Mobile", :notes=>"MVNO in Telia's network", :operator=>"Mundio Mobile (Sweden) Limited", :status=>"Operational"}, ["240", "20"]=>{:mobile_country_code=>"240", :mobile_network_code=>"20", :bands=>["GSM"], :operator=>"Wireless Maingate Messaging Services AB", :status=>"Operational"}, ["240", "21"]=>{:mobile_country_code=>"240", :mobile_network_code=>"21", :bands=>["GSM-R 900"], :brand=>"MobiSir", :notes=>"[142]", :operator=>"Trafikverket ICT", :status=>"Operational"}, ["240", "22"]=>{:mobile_country_code=>"240", :mobile_network_code=>"22", :bands=>["Unknown"], :operator=>"EuTel AB", :status=>"Unknown"}, ["240", "23"]=>{:mobile_country_code=>"240", :mobile_network_code=>"23", :bands=>["Unknown"], :notes=>"[78]", :operator=>"Infobip Limited", :status=>"Operational"}, ["240", "24"]=>{:mobile_country_code=>"240", :mobile_network_code=>"24", :bands=>["GSM 900", "UMTS 2100", "LTE 900", "LTE 1800", "LTE 2600"], :brand=>"Sweden 2G", :notes=>"LTE1800 only available in major cities; owned by Telenor and Tele2", :operator=>"Net4Mobility HB", :status=>"Operational"}, ["240", "25"]=>{:mobile_country_code=>"240", :mobile_network_code=>"25", :bands=>["Unknown"], :notes=>"MNC withdrawn [142]", :operator=>"Digitel Mobile Srl", :status=>"Not operational"}, ["240", "26"]=>{:mobile_country_code=>"240", :mobile_network_code=>"26", :bands=>["GSM"], :operator=>"Beepsend AB", :status=>"Operational"}, ["240", "27"]=>{:mobile_country_code=>"240", :mobile_network_code=>"27", :bands=>["MVNO"], :notes=>"Using 3 Swedens network [142]", :operator=>"Fogg Mobile AB", :status=>"Operational"}, ["240", "28"]=>{:mobile_country_code=>"240", :mobile_network_code=>"28", :bands=>["Unknown"], :notes=>"[142]", :operator=>"CoolTEL Aps", :status=>"Unknown"}, ["240", "29"]=>{:mobile_country_code=>"240", :mobile_network_code=>"29", :bands=>["Unknown"], :operator=>"Mercury International Carrier Services", :status=>"Unknown"}, ["240", "30"]=>{:mobile_country_code=>"240", :mobile_network_code=>"30", :bands=>["Unknown"], :operator=>"NextGen Mobile Ltd.", :status=>"Unknown"}, ["240", "31"]=>{:mobile_country_code=>"240", :mobile_network_code=>"31", :bands=>["Unknown"], :notes=>"MNC withdrawn[144]", :operator=>"Mobimax AB", :status=>"Not operational"}, ["240", "32"]=>{:mobile_country_code=>"240", :mobile_network_code=>"32", :bands=>["Unknown"], :operator=>"Compatel Limited", :status=>"Unknown"}, ["240", "33"]=>{:mobile_country_code=>"240", :mobile_network_code=>"33", :bands=>["Unknown"], :notes=>"[145]", :operator=>"Mobile Arts AB", :status=>"Unknown"}, ["240", "34"]=>{:mobile_country_code=>"240", :mobile_network_code=>"34", :bands=>["Unknown"], :notes=>"Formerly Tigo[144]", :operator=>"Pro Net Telecommunications Services Ltd.", :status=>"Unknown"}, ["240", "35"]=>{:mobile_country_code=>"240", :mobile_network_code=>"35", :bands=>["Unknown"], :operator=>"42 Telecom LTD", :status=>"Unknown"}, ["240", "36"]=>{:mobile_country_code=>"240", :mobile_network_code=>"36", :bands=>["Unknown"], :operator=>"interactive digital media GmbH", :status=>"Unknown"}, ["240", "37"]=>{:mobile_country_code=>"240", :mobile_network_code=>"37", :bands=>["Unknown"], :operator=>"CLX Networks AB", :status=>"Operational"}, ["240", "38"]=>{:mobile_country_code=>"240", :mobile_network_code=>"38", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis", :operator=>"Voxbone mobile", :status=>"Operational"}, ["240", "39"]=>{:mobile_country_code=>"240", :mobile_network_code=>"39", :bands=>["Unknown"], :notes=>"Former iCentrex Sweden AB [54][69][46]", :operator=>"Borderlight AB", :status=>"Unknown"}, ["240", "40"]=>{:mobile_country_code=>"240", :mobile_network_code=>"40", :bands=>["Unknown"], :operator=>"ReWiCom Scandinavia AB", :status=>"Unknown"}, ["240", "41"]=>{:mobile_country_code=>"240", :mobile_network_code=>"41", :bands=>["Unknown"], :notes=>"[146]", :operator=>"Shyam Telecom UK Ltd.", :status=>"Unknown"}, ["240", "42"]=>{:mobile_country_code=>"240", :mobile_network_code=>"42", :bands=>["Unknown"], :operator=>"Telenor Connexion AB", :status=>"Unknown"}, ["240", "43"]=>{:mobile_country_code=>"240", :mobile_network_code=>"43", :bands=>["Unknown"], :notes=>"[54]", :operator=>"MobiWeb Ltd.", :status=>"Unknown"}, ["240", "44"]=>{:mobile_country_code=>"240", :mobile_network_code=>"44", :bands=>["Unknown"], :notes=>"[54]", :operator=>"Limitless Mobile AB", :status=>"Unknown"}, ["240", "45"]=>{:mobile_country_code=>"240", :mobile_network_code=>"45", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Spirius AB", :status=>"Unknown"}, ["242", "01"]=>{:mobile_country_code=>"242", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Telenor", :notes=>"[112]", :operator=>"Telenor Norge AS", :status=>"Operational"}, ["242", "02"]=>{:mobile_country_code=>"242", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"NetCom", :operator=>"TeliaSonera Norge AS", :status=>"Operational"}, ["242", "03"]=>{:mobile_country_code=>"242", :mobile_network_code=>"03", :bands=>[], :brand=>"Teletopia", :operator=>"Teletopia", :status=>"Not operational"}, ["242", "04"]=>{:mobile_country_code=>"242", :mobile_network_code=>"04", :bands=>["MVNO"], :brand=>"Tele2", :notes=>"MVNO in Network Norway's network", :operator=>"Tele2 (Mobile Norway AS)", :status=>"Operational"}, ["242", "05"]=>{:mobile_country_code=>"242", :mobile_network_code=>"05", :bands=>["GSM 900", "UMTS 900", "UMTS 2100"], :brand=>"Network Norway", :operator=>"Tele2 (Mobile Norway AS)", :status=>"Operational"}, ["242", "06"]=>{:mobile_country_code=>"242", :mobile_network_code=>"06", :bands=>["CDMA2000 450"], :brand=>"Ice", :notes=>"Data services only", :operator=>"Nordisk Mobiltelefon", :status=>"Operational"}, ["242", "07"]=>{:mobile_country_code=>"242", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"Ventelo", :notes=>"Uses Telenor's network", :operator=>"Ventelo AS", :status=>"Operational"}, ["242", "08"]=>{:mobile_country_code=>"242", :mobile_network_code=>"08", :bands=>["MVNO"], :brand=>"TDC", :operator=>"TDC Mobil AS", :status=>"Operational"}, ["242", "09"]=>{:mobile_country_code=>"242", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"Com4", :notes=>"Principally M2M services[113]", :operator=>"Com4 AS", :status=>"Operational"}, ["242", "11"]=>{:mobile_country_code=>"242", :mobile_network_code=>"11", :bands=>["Test"], :brand=>"SystemNet", :notes=>"[114]", :operator=>"SystemNet AS", :status=>"Unknown"}, ["242", "12"]=>{:mobile_country_code=>"242", :mobile_network_code=>"12", :bands=>["Unknown"], :brand=>"Telenor", :operator=>"Telenor Norge AS", :status=>"Unknown"}, ["242", "20"]=>{:mobile_country_code=>"242", :mobile_network_code=>"20", :bands=>["GSM-R 900"], :operator=>"Jernbaneverket AS", :status=>"Operational"}, ["242", "21"]=>{:mobile_country_code=>"242", :mobile_network_code=>"21", :bands=>["GSM-R 900"], :operator=>"Jernbaneverket AS", :status=>"Operational"}, ["242", "23"]=>{:mobile_country_code=>"242", :mobile_network_code=>"23", :bands=>["MVNO"], :brand=>"Lyca", :operator=>"Lyca Mobile Ltd", :status=>"Operational"}, ["242", "24"]=>{:mobile_country_code=>"242", :mobile_network_code=>"24", :bands=>["Unknown"], :operator=>"Mobile Norway AS", :status=>"Unknown"}, ["242", "25"]=>{:mobile_country_code=>"242", :mobile_network_code=>"25", :bands=>["Unknown"], :operator=>"Forsvarets kompetansesenter KKIS", :status=>"Unknown"}, ["244", "03"]=>{:mobile_country_code=>"244", :mobile_network_code=>"03", :bands=>["GSM 1800"], :brand=>"DNA", :notes=>"Former Telia", :operator=>"DNA Oy", :status=>"Operational"}, ["244", "04"]=>{:mobile_country_code=>"244", :mobile_network_code=>"04", :bands=>["MVNO"], :brand=>"AINA", :notes=>"MVNO on the Sonera's network", :operator=>"DNA Oy / Aina Oyj", :status=>"Operational"}, ["244", "05"]=>{:mobile_country_code=>"244", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Elisa", :notes=>"Former Radiolinja", :operator=>"Elisa Oyj", :status=>"Operational"}, ["244", "07"]=>{:mobile_country_code=>"244", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"Nokia", :operator=>"Nokia Test Network", :status=>"Not operational"}, ["244", "08"]=>{:mobile_country_code=>"244", :mobile_network_code=>"08", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Nokia", :operator=>"Nokia Test Network", :status=>"Not operational"}, ["244", "09"]=>{:mobile_country_code=>"244", :mobile_network_code=>"09", :bands=>["GSM 900"], :brand=>"Finnet Group / Nokia Networks", :operator=>"Global Network", :status=>"Not operational"}, ["244", "10"]=>{:mobile_country_code=>"244", :mobile_network_code=>"10", :bands=>["MVNO"], :brand=>"TDC", :notes=>"MVNO on the DNA Oy's network", :operator=>"TDC Oy (DNA Oy)", :status=>"Operational"}, ["244", "11"]=>{:mobile_country_code=>"244", :mobile_network_code=>"11", :bands=>["MVNO"], :brand=>"Vectone Mobile", :notes=>"MVNO on the DNA Oy's network", :operator=>"Mundio Mobile Oy", :status=>"Operational"}, ["244", "12"]=>{:mobile_country_code=>"244", :mobile_network_code=>"12", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"DNA", :operator=>"DNA Oy", :status=>"Operational"}, ["244", "13"]=>{:mobile_country_code=>"244", :mobile_network_code=>"13", :bands=>["GSM 900", "GSM 1800"], :brand=>"DNA", :operator=>"DNA Oy", :status=>"Not operational"}, ["244", "14"]=>{:mobile_country_code=>"244", :mobile_network_code=>"14", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"\u00C5lcom", :notes=>"Former \u00C5lands Mobiltelefon (\u00C5MT) Coverage only in \u00C5land Islands", :operator=>"\u00C5lands Telekommunikation Ab", :status=>"Operational"}, ["244", "15"]=>{:mobile_country_code=>"244", :mobile_network_code=>"15", :bands=>["GSM 1800"], :brand=>"SAMK", :notes=>"Educational network", :operator=>"Satakunta University of Applied Sciences", :status=>"Unknown"}, ["244", "16"]=>{:mobile_country_code=>"244", :mobile_network_code=>"16", :bands=>["MVNO"], :brand=>"Tele2", :notes=>"[4]", :operator=>"Oy Finland Tele2 AB", :status=>"Not operational"}, ["244", "21"]=>{:mobile_country_code=>"244", :mobile_network_code=>"21", :bands=>["MVNO"], :brand=>"Elisa-Saunalahti", :notes=>"Internal MVNO-code of Elisa Oyj. Former Saunalahti Group Oyj", :operator=>"Elisa Oyj", :status=>"Operational"}, ["244", "25"]=>{:mobile_country_code=>"244", :mobile_network_code=>"25", :bands=>["CDMA"], :brand=>"Datame", :operator=>"Datame Oy", :status=>"Not operational"}, ["244", "26"]=>{:mobile_country_code=>"244", :mobile_network_code=>"26", :bands=>["MVNO"], :brand=>"Compatel", :notes=>"Cloud MVNO-provider of telecoms services acting as a MVNO-mobile-operators", :operator=>"Compatel Ltd", :status=>"Operational"}, ["244", "29"]=>{:mobile_country_code=>"244", :mobile_network_code=>"29", :bands=>["MVNO"], :notes=>"[4]", :operator=>"SCNL Truphone", :status=>"Not operational"}, ["244", "30"]=>{:mobile_country_code=>"244", :mobile_network_code=>"30", :bands=>["MVNO"], :brand=>"Vectone Mobile", :notes=>"MVNO on the DNA Oy's network", :operator=>"Mundio Mobile Oy", :status=>"Operational"}, ["244", "31"]=>{:mobile_country_code=>"244", :mobile_network_code=>"31", :bands=>["LTE 450"], :brand=>"Ukko Mobile", :notes=>"LTE 450 data-network operator", :operator=>"Ukko Mobile Oy / Ukkoverkot Oy", :status=>"Operational"}, ["244", "32"]=>{:mobile_country_code=>"244", :mobile_network_code=>"32", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis", :operator=>"Voxbone SA", :status=>"Operational"}, ["244", "33"]=>{:mobile_country_code=>"244", :mobile_network_code=>"33", :bands=>["TETRA"], :brand=>"VIRVE", :notes=>"Finnish authorities radio network", :operator=>"Virve Tuotteet ja Palvelut Oy", :status=>"Operational"}, ["244", "34"]=>{:mobile_country_code=>"244", :mobile_network_code=>"34", :bands=>["Unknown"], :brand=>"Elektrobit Wireless", :notes=>"Develops and specializes in demanding embedded software and hardware solutions, for the automotive industry and wireless technologies", :operator=>"Elektrobit Wireless Communications Oy", :status=>"Operational"}, ["244", "35"]=>{:mobile_country_code=>"244", :mobile_network_code=>"35", :bands=>["LTE 450"], :brand=>"Ukko Mobile", :notes=>"LTE 450 data-network operator", :operator=>"Ukkoverkot Oy", :status=>"Operational"}, ["244", "91"]=>{:mobile_country_code=>"244", :mobile_network_code=>"91", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Sonera", :operator=>"TeliaSonera Finland Oyj", :status=>"Operational"}, ["246", "01"]=>{:mobile_country_code=>"246", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Omnitel", :operator=>"", :status=>"Operational"}, ["246", "02"]=>{:mobile_country_code=>"246", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"BIT\u0116", :operator=>"UAB Bit\u0117 Lietuva", :status=>"Operational"}, ["246", "03"]=>{:mobile_country_code=>"246", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Tele 2", :notes=>"[51]", :operator=>"", :status=>"Operational"}, ["246", "05"]=>{:mobile_country_code=>"246", :mobile_network_code=>"05", :bands=>["GSM-R 900"], :brand=>"LitRail", :operator=>"Lithuanian Railways", :status=>"Operational"}, ["246", "06"]=>{:mobile_country_code=>"246", :mobile_network_code=>"06", :bands=>["GSM 1800"], :brand=>"Mediafon", :operator=>"UAB Mediafon", :status=>"Operational"}, ["247", "01"]=>{:mobile_country_code=>"247", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"LMT", :notes=>"[51]", :operator=>"Latvian Mobile Telephone", :status=>"Operational"}, ["247", "02"]=>{:mobile_country_code=>"247", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Tele2", :operator=>"Tele2", :status=>"Operational"}, ["247", "03"]=>{:mobile_country_code=>"247", :mobile_network_code=>"03", :bands=>["CDMA 450"], :brand=>"TRIATEL", :operator=>"Telekom Baltija", :status=>"Operational"}, ["247", "04"]=>{:mobile_country_code=>"247", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Beta Telecom", :status=>"Unknown"}, ["247", "05"]=>{:mobile_country_code=>"247", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Bite", :notes=>"Bite's postpaid customers are still being assigned SIM cards with 246 02 MNC", :operator=>"Bite Latvija", :status=>"Operational"}, ["247", "06"]=>{:mobile_country_code=>"247", :mobile_network_code=>"06", :bands=>["Unknown"], :notes=>"No own network. Not in commercial use.[87]", :operator=>"Rigatta", :status=>"Reserved"}, ["247", "07"]=>{:mobile_country_code=>"247", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"MTS", :notes=>"Uses Bite network[87]", :operator=>"Master Telecom", :status=>"Operational"}, ["247", "08"]=>{:mobile_country_code=>"247", :mobile_network_code=>"08", :bands=>["MVNO"], :brand=>"IZZI", :notes=>"Uses Bite network[87]", :operator=>"IZZI", :status=>"Operational"}, ["247", "09"]=>{:mobile_country_code=>"247", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"Camel Mobile", :operator=>"Camel Mobile", :status=>"Operational"}, ["248", "01"]=>{:mobile_country_code=>"248", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"EMT", :notes=>"[7]", :operator=>"Estonian Mobile Telecom", :status=>"Operational"}, ["248", "02"]=>{:mobile_country_code=>"248", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Elisa", :notes=>"[7]", :operator=>"Elisa Eesti", :status=>"Operational"}, ["248", "03"]=>{:mobile_country_code=>"248", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Tele 2", :operator=>"Tele 2 Eesti", :status=>"Operational"}, ["248", "04"]=>{:mobile_country_code=>"248", :mobile_network_code=>"04", :bands=>["MVNO"], :operator=>"OY Top Connect", :status=>"Operational"}, ["248", "05"]=>{:mobile_country_code=>"248", :mobile_network_code=>"05", :bands=>["Unknown"], :operator=>"AS Bravocom Mobiil", :status=>"Unknown"}, ["248", "06"]=>{:mobile_country_code=>"248", :mobile_network_code=>"06", :bands=>["UMTS 2100"], :operator=>"Progroup Holding", :status=>"Operational"}, ["248", "07"]=>{:mobile_country_code=>"248", :mobile_network_code=>"07", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Telev\u00F5rgu AS", :status=>"Unknown"}, ["248", "08"]=>{:mobile_country_code=>"248", :mobile_network_code=>"08", :bands=>["MVNO"], :brand=>"VIVEX", :operator=>"VIVEX OU", :status=>"Operational"}, ["248", "09"]=>{:mobile_country_code=>"248", :mobile_network_code=>"09", :bands=>["Unknown"], :notes=>"[57]", :operator=>"Bravo Telecom", :status=>"Unknown"}, ["248", "71"]=>{:mobile_country_code=>"248", :mobile_network_code=>"71", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Siseministeerium (Ministry of Interior)", :status=>"Unknown"}, ["250", "01"]=>{:mobile_country_code=>"250", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 2600", "TD-LTE 2600"], :brand=>"MTS", :operator=>"Mobile TeleSystems", :status=>"Operational"}, ["250", "02"]=>{:mobile_country_code=>"250", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"MegaFon", :operator=>"MegaFon OJSC - previously known as North-West GSM", :status=>"Operational"}, ["250", "03"]=>{:mobile_country_code=>"250", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"NCC", :operator=>"Nizhegorodskaya Cellular Communications", :status=>"Operational"}, ["250", "04"]=>{:mobile_country_code=>"250", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"Sibchallenge", :operator=>"Sibchallenge", :status=>"Not operational"}, ["250", "05"]=>{:mobile_country_code=>"250", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "CDMA2000 450"], :brand=>"ETK", :notes=>"Mobile Communications Systems", :operator=>"Yeniseytelecom", :status=>"Operational"}, ["250", "06"]=>{:mobile_country_code=>"250", :mobile_network_code=>"06", :bands=>["CDMA2000 450"], :brand=>"Skylink", :operator=>"CJSC Saratov System of Cellular Communications", :status=>"Operational"}, ["250", "07"]=>{:mobile_country_code=>"250", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"SMARTS", :operator=>"Zao SMARTS", :status=>"Operational"}, ["250", "09"]=>{:mobile_country_code=>"250", :mobile_network_code=>"09", :bands=>["CDMA2000 450"], :brand=>"Skylink", :operator=>"Khabarovsky Cellular Phone", :status=>"Operational"}, ["250", "10"]=>{:mobile_country_code=>"250", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"DTC", :operator=>"Dontelekom", :status=>"Not operational"}, ["250", "11"]=>{:mobile_country_code=>"250", :mobile_network_code=>"11", :bands=>["LTE 2600"], :brand=>"Yota", :operator=>"Scartel", :status=>"Operational"}, ["250", "12"]=>{:mobile_country_code=>"250", :mobile_network_code=>"12", :bands=>["GSM 1800"], :brand=>"Akos", :operator=>"", :status=>"Operational"}, ["250", "13"]=>{:mobile_country_code=>"250", :mobile_network_code=>"13", :bands=>["GSM 900", "GSM 1800"], :brand=>"KUGSM", :operator=>"Kuban GSM", :status=>"Not operational"}, ["250", "14"]=>{:mobile_country_code=>"250", :mobile_network_code=>"14", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "TD-LTE 2600"], :brand=>"MegaFon", :notes=>"Special code \"MegaFon\" to register subscribers at the Olympic Games \"Sochi-2014\" if you can not register in the core network of the operator (25002)", :operator=>"MegaFon OJSC", :status=>"Operational"}, ["250", "15"]=>{:mobile_country_code=>"250", :mobile_network_code=>"15", :bands=>["GSM 1800"], :brand=>"SMARTS", :operator=>"SMARTS Ufa, SMARTS Uljanovsk", :status=>"Operational"}, ["250", "16"]=>{:mobile_country_code=>"250", :mobile_network_code=>"16", :bands=>["GSM 900", "GSM 1800"], :brand=>"NTC", :operator=>"New Telephone Company", :status=>"Operational"}, ["250", "17"]=>{:mobile_country_code=>"250", :mobile_network_code=>"17", :bands=>["GSM 900", "GSM 1800"], :brand=>"Utel", :notes=>"Former Ermak RMS", :operator=>"JSC Uralsvyazinform", :status=>"Operational"}, ["250", "18"]=>{:mobile_country_code=>"250", :mobile_network_code=>"18", :bands=>["TD-LTE 2300"], :brand=>"Osnova Telecom", :operator=>"", :status=>"Not operational"}, ["250", "19"]=>{:mobile_country_code=>"250", :mobile_network_code=>"19", :bands=>["GSM 1800"], :brand=>"INDIGO", :notes=>"Since 19 December 2009 merged with Tele2[citation needed]", :operator=>"INDIGO", :status=>"Not operational[citation needed]"}, ["250", "20"]=>{:mobile_country_code=>"250", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Tele2", :operator=>"Tele2", :status=>"Operational"}, ["250", "23"]=>{:mobile_country_code=>"250", :mobile_network_code=>"23", :bands=>["GSM 900", "GSM 1800"], :brand=>"Mobicom - Novosibirsk", :operator=>"Mobicom - Novosibirsk", :status=>"Not operational"}, ["250", "28"]=>{:mobile_country_code=>"250", :mobile_network_code=>"28", :bands=>["GSM 900"], :brand=>"Beeline", :notes=>"Former EXTEL", :operator=>"Beeline", :status=>"Not operational"}, ["250", "32"]=>{:mobile_country_code=>"250", :mobile_network_code=>"32", :bands=>["GSM 900", "GSM 1800"], :brand=>"Win Mobile", :operator=>"K-Telecom", :status=>"Operational"}, ["250", "35"]=>{:mobile_country_code=>"250", :mobile_network_code=>"35", :bands=>["GSM 1800"], :brand=>"MOTIV", :operator=>"EKATERINBURG-2000", :status=>"Operational"}, ["250", "38"]=>{:mobile_country_code=>"250", :mobile_network_code=>"38", :bands=>["GSM 900", "GSM 1800"], :brand=>"Tambov GSM", :operator=>"Central Telecommunication Company", :status=>"Operational"}, ["250", "39"]=>{:mobile_country_code=>"250", :mobile_network_code=>"39", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Rostelecom", :operator=>"ROSTELECOM", :status=>"Operational"}, ["250", "44"]=>{:mobile_country_code=>"250", :mobile_network_code=>"44", :bands=>["Unknown"], :operator=>"Stavtelesot / North Caucasian GSM", :status=>"Not operational"}, ["250", "50"]=>{:mobile_country_code=>"250", :mobile_network_code=>"50", :bands=>["GSM 900", "GSM 1800"], :brand=>"MTS", :notes=>"Based on MTS", :operator=>"Bezlimitno.ru", :status=>"Operational"}, ["250", "91"]=>{:mobile_country_code=>"250", :mobile_network_code=>"91", :bands=>["GSM 1800"], :brand=>"Sonic Duo", :operator=>"Sonic Duo CJSC", :status=>"Not operational"}, ["250", "92"]=>{:mobile_country_code=>"250", :mobile_network_code=>"92", :bands=>["Unknown"], :operator=>"Primtelefon", :status=>"Not operational"}, ["250", "93"]=>{:mobile_country_code=>"250", :mobile_network_code=>"93", :bands=>["Unknown"], :operator=>"Telecom XXI", :status=>"Not operational"}, ["250", "99"]=>{:mobile_country_code=>"250", :mobile_network_code=>"99", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"Beeline", :operator=>"OJSC Vimpel-Communications", :status=>"Operational"}, ["250", "\u00A0?"]=>{:mobile_country_code=>"250", :mobile_network_code=>"\u00A0?", :bands=>["CDMA2000 450"], :operator=>"SkyLink/MTS/the Moscow Cellular communication", :status=>"Operational"}, ["255", "01"]=>{:mobile_country_code=>"255", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "CDMA 450"], :brand=>"MTS", :notes=>"Former UMC", :operator=>"MTS Ukraine", :status=>"Operational"}, ["255", "02"]=>{:mobile_country_code=>"255", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Beeline", :notes=>"Former WellCOM. Taken over by Kyivstar.", :operator=>"Kyivstar GSM JSC", :status=>"Not operational"}, ["255", "03"]=>{:mobile_country_code=>"255", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Kyivstar", :operator=>"Kyivstar GSM JSC", :status=>"Operational"}, ["255", "04"]=>{:mobile_country_code=>"255", :mobile_network_code=>"04", :bands=>["CDMA 800"], :brand=>"IT", :operator=>"Intertelecom", :status=>"Operational"}, ["255", "05"]=>{:mobile_country_code=>"255", :mobile_network_code=>"05", :bands=>["GSM 1800"], :brand=>"Golden Telecom", :notes=>"No longer provide mobile services", :operator=>"Kyivstar GSM JSC", :status=>"Not operational"}, ["255", "06"]=>{:mobile_country_code=>"255", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800"], :brand=>"life:)", :operator=>"Astelit", :status=>"Operational"}, ["255", "07"]=>{:mobile_country_code=>"255", :mobile_network_code=>"07", :bands=>["UMTS 2100"], :brand=>"3Mob", :notes=>"Former Utel(Ukrtelecom),GSM roaming with Kyivstar", :operator=>"3Mob (Ukrtelecom UMTS )", :status=>"Operational"}, ["255", "21"]=>{:mobile_country_code=>"255", :mobile_network_code=>"21", :bands=>["CDMA 800"], :brand=>"PEOPLEnet", :operator=>"Telesystems of Ukraine", :status=>"Operational"}, ["255", "23"]=>{:mobile_country_code=>"255", :mobile_network_code=>"23", :bands=>["CDMA 800"], :brand=>"CDMA Ukraine", :operator=>"Intertelecom", :status=>"Operational"}, ["255", "25"]=>{:mobile_country_code=>"255", :mobile_network_code=>"25", :bands=>["CDMA 800"], :brand=>"NEWTONE", :operator=>"CST Invest", :status=>"Operational"}, ["257", "01"]=>{:mobile_country_code=>"257", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"velcom", :operator=>"", :status=>"Operational"}, ["257", "02"]=>{:mobile_country_code=>"257", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MTS", :operator=>"Mobile TeleSystems", :status=>"Operational"}, ["257", "03"]=>{:mobile_country_code=>"257", :mobile_network_code=>"03", :bands=>["CDMA 450"], :brand=>"DIALLOG", :notes=>"Closed on January 21, 2014 [26]", :operator=>"BelCel", :status=>"Not operational"}, ["257", "04"]=>{:mobile_country_code=>"257", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"life:)", :notes=>"Former BeST", :operator=>"Belarusian Telecommunications Network", :status=>"Operational"}, ["257", "05"]=>{:mobile_country_code=>"257", :mobile_network_code=>"05", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Beltelecom", :status=>"Unknown"}, ["257", "06"]=>{:mobile_country_code=>"257", :mobile_network_code=>"06", :bands=>["Unknown"], :notes=>"Former Yota Bel[27]", :operator=>"Belorussian Cloud Technologies", :status=>"Unknown"}, ["257", "501"]=>{:mobile_country_code=>"257", :mobile_network_code=>"501", :bands=>["Unknown"], :brand=>"BelCel JV", :operator=>"", :status=>"Unknown"}, ["259", "01"]=>{:mobile_country_code=>"259", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"Orange", :notes=>"Former Voxtel", :operator=>"Orange Moldova", :status=>"Operational"}, ["259", "02"]=>{:mobile_country_code=>"259", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"Moldcell", :operator=>"", :status=>"Operational"}, ["259", "03"]=>{:mobile_country_code=>"259", :mobile_network_code=>"03", :bands=>["CDMA 450"], :brand=>"Unit\u00E9", :notes=>"Sharing the same MNC with IDC", :operator=>"Moldtelecom", :status=>"Operational"}, ["259", "04"]=>{:mobile_country_code=>"259", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Eventis", :notes=>"Bankruptcy - License suspended [46]", :operator=>"Eventis Telecom", :status=>"Not operational"}, ["259", "05"]=>{:mobile_country_code=>"259", :mobile_network_code=>"05", :bands=>["UMTS 900", "UMTS 2100[102]"], :brand=>"Unit\u00E9", :operator=>"Moldtelecom", :status=>"Operational"}, ["259", "99"]=>{:mobile_country_code=>"259", :mobile_network_code=>"99", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"Unit\u00E9", :notes=>"Used for Femtocell service only", :operator=>"Moldtelecom", :status=>"Operational"}, ["260", "01"]=>{:mobile_country_code=>"260", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Plus", :notes=>"[51]", :operator=>"Polkomtel Sp. z o.o.", :status=>"Operational"}, ["260", "02"]=>{:mobile_country_code=>"260", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"T-Mobile", :notes=>"former Era [51]", :operator=>"T-Mobile Polska S.A.", :status=>"Operational"}, ["260", "03"]=>{:mobile_country_code=>"260", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "CDMA2000 450"], :brand=>"Orange", :notes=>"former Idea [51]", :operator=>"Polska Telefonia Kom\u00F3rkowa Centertel Sp. z o.o.", :status=>"Operational"}, ["260", "04"]=>{:mobile_country_code=>"260", :mobile_network_code=>"04", :bands=>["Unknown"], :operator=>"CenterNet S.A.", :status=>"Not operational"}, ["260", "05"]=>{:mobile_country_code=>"260", :mobile_network_code=>"05", :bands=>["UMTS 2100"], :notes=>"not in use, using MNC 03", :operator=>"Polska Telefonia Kom\u00F3rkowa Centertel Sp. z o.o.", :status=>"Operational"}, ["260", "06"]=>{:mobile_country_code=>"260", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Play", :notes=>"Also roaming on Polkomtel and Centertel 2G/3G network", :operator=>"P4 Sp. z o.o.", :status=>"Operational"}, ["260", "07"]=>{:mobile_country_code=>"260", :mobile_network_code=>"07", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Netia", :notes=>"MVNO roaming on Play (P4) network", :operator=>"Netia S.A.", :status=>"Operational"}, ["260", "08"]=>{:mobile_country_code=>"260", :mobile_network_code=>"08", :bands=>["Unknown"], :operator=>"E-Telko Sp. z o.o.", :status=>"Not operational"}, ["260", "09"]=>{:mobile_country_code=>"260", :mobile_network_code=>"09", :bands=>["MVNO"], :brand=>"Lycamobile", :notes=>"On Polkomtel 2G/3G network", :operator=>"Lycamobile Sp. z o.o.", :status=>"Operational"}, ["260", "10"]=>{:mobile_country_code=>"260", :mobile_network_code=>"10", :bands=>["UMTS 850"], :brand=>"Sferia", :notes=>"Formerly assigned to Telefony Opalenickie S.A.", :operator=>"Sferia S.A.", :status=>"Operational"}, ["260", "11"]=>{:mobile_country_code=>"260", :mobile_network_code=>"11", :bands=>["CDMA2000 420"], :brand=>"Nordisk Polska", :notes=>"[121]", :operator=>"Nordisk Polska Sp. z o.o.", :status=>"Operational"}, ["260", "12"]=>{:mobile_country_code=>"260", :mobile_network_code=>"12", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cyfrowy Polsat", :notes=>"MVNO using national roaming with several operators", :operator=>"Cyfrowy Polsat S.A.", :status=>"Operational"}, ["260", "13"]=>{:mobile_country_code=>"260", :mobile_network_code=>"13", :bands=>[], :brand=>"Sferia", :notes=>"Uses MNC 10", :operator=>"Sferia S.A.", :status=>"Not operational"}, ["260", "14"]=>{:mobile_country_code=>"260", :mobile_network_code=>"14", :bands=>[], :brand=>"Sferia", :notes=>"Uses MNC 10", :operator=>"Sferia S.A.", :status=>"Not operational"}, ["260", "15"]=>{:mobile_country_code=>"260", :mobile_network_code=>"15", :bands=>["LTE 1800"], :brand=>"CenterNet", :notes=>"LTE1800 with 20\u00A0MHz channels. Used wRodzinie brand cards until 2010, now data transmission only.[122]", :operator=>"CenterNet S.A.", :status=>"Operational"}, ["260", "16"]=>{:mobile_country_code=>"260", :mobile_network_code=>"16", :bands=>["GSM 1800", "LTE 1800"], :brand=>"Mobyland", :notes=>"LTE1800 with 20\u00A0MHz channels[122]", :operator=>"Mobyland Sp. z o.o.", :status=>"Operational"}, ["260", "17"]=>{:mobile_country_code=>"260", :mobile_network_code=>"17", :bands=>["UMTS 900"], :brand=>"Aero2", :operator=>"Aero 2 Sp. z o.o.", :status=>"Operational"}, ["260", "18"]=>{:mobile_country_code=>"260", :mobile_network_code=>"18", :bands=>["Unknown"], :brand=>"AMD Telecom", :notes=>"[17]", :operator=>"AMD Telecom S.A.", :status=>"Unknown"}, ["260", "19"]=>{:mobile_country_code=>"260", :mobile_network_code=>"19", :bands=>["Unknown"], :brand=>"Teleena", :notes=>"[17]", :operator=>"Teleena Holding BV", :status=>"Unknown"}, ["260", "20"]=>{:mobile_country_code=>"260", :mobile_network_code=>"20", :bands=>["Unknown"], :brand=>"Mobile.Net", :notes=>"[17]", :operator=>"Mobile.Net Sp. z o.o.", :status=>"Unknown"}, ["260", "21"]=>{:mobile_country_code=>"260", :mobile_network_code=>"21", :bands=>["Unknown"], :brand=>"Exteri", :notes=>"[17]", :operator=>"Exteri Sp. z o.o.", :status=>"Unknown"}, ["260", "22"]=>{:mobile_country_code=>"260", :mobile_network_code=>"22", :bands=>["Unknown"], :brand=>"Arcomm", :notes=>"[17]", :operator=>"Arcomm Sp. z o.o.", :status=>"Unknown"}, ["260", "23"]=>{:mobile_country_code=>"260", :mobile_network_code=>"23", :bands=>["Unknown"], :brand=>"Amicomm", :notes=>"[17]", :operator=>"Amicomm Sp. z o.o.", :status=>"Unknown"}, ["260", "24"]=>{:mobile_country_code=>"260", :mobile_network_code=>"24", :bands=>["Unknown"], :brand=>"WideNet", :notes=>"[17]", :operator=>"WideNet Sp. z o.o.", :status=>"Unknown"}, ["260", "25"]=>{:mobile_country_code=>"260", :mobile_network_code=>"25", :bands=>["Unknown"], :brand=>"BS&T", :notes=>"[17]", :operator=>"Best Solutions & Technology Experience Sp. z o.o.", :status=>"Unknown"}, ["260", "26"]=>{:mobile_country_code=>"260", :mobile_network_code=>"26", :bands=>["Unknown"], :brand=>"ATE", :notes=>"[17]", :operator=>"Advanced Technology & Experience Sp. z o.o.", :status=>"Unknown"}, ["260", "27"]=>{:mobile_country_code=>"260", :mobile_network_code=>"27", :bands=>["Unknown"], :brand=>"Intertelcom", :notes=>"[17]", :operator=>"Intertelcom Sp. z o.o.", :status=>"Unknown"}, ["260", "28"]=>{:mobile_country_code=>"260", :mobile_network_code=>"28", :bands=>["Unknown"], :brand=>"PhoneNet", :notes=>"[17]", :operator=>"PhoneNet Sp. z o.o.", :status=>"Unknown"}, ["260", "29"]=>{:mobile_country_code=>"260", :mobile_network_code=>"29", :bands=>["Unknown"], :brand=>"Interfonica", :notes=>"[17]", :operator=>"Interfonica Sp. z o.o.", :status=>"Unknown"}, ["260", "30"]=>{:mobile_country_code=>"260", :mobile_network_code=>"30", :bands=>["Unknown"], :brand=>"GrandTel", :notes=>"[17]", :operator=>"GrandTel Sp. z o.o.", :status=>"Unknown"}, ["260", "31"]=>{:mobile_country_code=>"260", :mobile_network_code=>"31", :bands=>["Unknown"], :brand=>"Phone IT", :notes=>"[17]", :operator=>"Phone IT Sp. z o.o.", :status=>"Unknown"}, ["260", "32"]=>{:mobile_country_code=>"260", :mobile_network_code=>"32", :bands=>["MVNO"], :brand=>"Voxbone", :notes=>"Cloud MVNO-provider, that provides mobile VOIP services on a wholesale basis", :operator=>"Voxbone mobile", :status=>"Operational"}, ["260", "33"]=>{:mobile_country_code=>"260", :mobile_network_code=>"33", :bands=>["Unknown"], :brand=>"Truphone", :notes=>"[17]", :operator=>"Truphone Poland Sp. z o.o.", :status=>"Unknown"}, ["260", "34"]=>{:mobile_country_code=>"260", :mobile_network_code=>"34", :bands=>["UMTS 900"], :notes=>"NetWorks! with Centertel", :operator=>"T-Mobile Polska S.A.", :status=>"Operational"}, ["260", "98"]=>{:mobile_country_code=>"260", :mobile_network_code=>"98", :bands=>[], :notes=>"Test network (LTE 1800)", :operator=>"P4 Sp. z o.o.", :status=>"Not Operational"}, ["262", "01"]=>{:mobile_country_code=>"262", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Telekom", :notes=>"Formerly D1 - DeTeMobil, T-Mobil, T-Mobile", :operator=>"Telekom Deutschland GmbH", :status=>"Operational"}, ["262", "02"]=>{:mobile_country_code=>"262", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"Vodafone", :operator=>"Vodafone D2 GmbH", :status=>"Operational"}, ["262", "03"]=>{:mobile_country_code=>"262", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"E-Plus", :notes=>"[51]", :operator=>"E-Plus Mobilfunk", :status=>"Operational"}, ["262", "04"]=>{:mobile_country_code=>"262", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vodafone", :operator=>"Vodafone D2 GmbH", :status=>"Reserved"}, ["262", "05"]=>{:mobile_country_code=>"262", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"E-Plus", :notes=>"[51]", :operator=>"E-Plus Mobilfunk", :status=>"Reserved"}, ["262", "06"]=>{:mobile_country_code=>"262", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Telekom", :operator=>"Telekom Deutschland GmbH", :status=>"Reserved"}, ["262", "07"]=>{:mobile_country_code=>"262", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"O2", :operator=>"Telef\u00F3nica Germany GmbH & Co. oHG", :status=>"Operational"}, ["262", "08"]=>{:mobile_country_code=>"262", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"O2", :operator=>"Telef\u00F3nica Germany GmbH & Co. oHG", :status=>"Reserved"}, ["262", "09"]=>{:mobile_country_code=>"262", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"Vodafone", :notes=>"Internal testing IOT", :operator=>"Vodafone D2 GmbH", :status=>"Operational"}, ["262", "10"]=>{:mobile_country_code=>"262", :mobile_network_code=>"10", :bands=>["GSM-R"], :notes=>"Former Vodafone/Arcor[66]", :operator=>"DB Netz AG", :status=>"Operational"}, ["262", "11"]=>{:mobile_country_code=>"262", :mobile_network_code=>"11", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"O2", :operator=>"Telef\u00F3nica Germany GmbH & Co. oHG", :status=>"Reserved"}, ["262", "12"]=>{:mobile_country_code=>"262", :mobile_network_code=>"12", :bands=>["\"full\" MVNO", "MVNE"], :brand=>"Dolphin Telecom", :notes=>"National roaming agreement with E-Plus", :operator=>"sipgate GmbH", :status=>"Operational"}, ["262", "13"]=>{:mobile_country_code=>"262", :mobile_network_code=>"13", :bands=>["UMTS 2100"], :notes=>"License returned in 2003", :operator=>"Mobilcom Multimedia", :status=>"Not operational"}, ["262", "14"]=>{:mobile_country_code=>"262", :mobile_network_code=>"14", :bands=>["UMTS 2100"], :notes=>"License revoked in 2007", :operator=>"Group 3G UMTS", :status=>"Not operational"}, ["262", "15"]=>{:mobile_country_code=>"262", :mobile_network_code=>"15", :bands=>["TD-SCDMA"], :brand=>"Airdata", :notes=>"data only", :operator=>"", :status=>"Operational"}, ["262", "16"]=>{:mobile_country_code=>"262", :mobile_network_code=>"16", :bands=>["MVNO"], :notes=>"formerly Vistream; bankruptcy in 2012 [67]", :operator=>"Telogic Germany GmbH", :status=>"Not operational"}, ["262", "17"]=>{:mobile_country_code=>"262", :mobile_network_code=>"17", :bands=>["Unknown"], :brand=>"E-Plus", :notes=>"[68]", :operator=>"E-Plus Mobilfunk", :status=>"Unknown"}, ["262", "18"]=>{:mobile_country_code=>"262", :mobile_network_code=>"18", :bands=>["MVNO"], :notes=>"also CDMA 450[68]", :operator=>"NetCologne", :status=>"Operational"}, ["262", "19"]=>{:mobile_country_code=>"262", :mobile_network_code=>"19", :bands=>["Unknown"], :notes=>"[68]", :operator=>"Inquam Deutschland", :status=>"Unknown"}, ["262", "20"]=>{:mobile_country_code=>"262", :mobile_network_code=>"20", :bands=>["GSM"], :brand=>"OnePhone", :notes=>"uses E-Plus' radio access network (262-03)", :operator=>"E-Plus Mobilfunk", :status=>"Operational"}, ["262", "33"]=>{:mobile_country_code=>"262", :mobile_network_code=>"33", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"simquadrat", :notes=>"uses E-Plus' radio access network (262-03)", :operator=>"sipgate GmbH", :status=>"Operational"}, ["262", "41"]=>{:mobile_country_code=>"262", :mobile_network_code=>"41", :bands=>["Unknown"], :notes=>"[68]", :operator=>"First Telecom GmbH", :status=>"Unknown"}, ["262", "42"]=>{:mobile_country_code=>"262", :mobile_network_code=>"42", :bands=>["GSM 1800"], :brand=>"CCC Event", :notes=>"Used on events like Chaos Communication Congress", :operator=>"Chaos Computer Club", :status=>"Temporary operational"}, ["262", "43"]=>{:mobile_country_code=>"262", :mobile_network_code=>"43", :bands=>["Unknown"], :brand=>"LYCA", :notes=>"Runs on Vodafone network", :operator=>"Lycamobile", :status=>"Operational"}, ["262", "60"]=>{:mobile_country_code=>"262", :mobile_network_code=>"60", :bands=>["GSM-R 900"], :operator=>"DB Telematik", :status=>"Operational"}, ["262", "76"]=>{:mobile_country_code=>"262", :mobile_network_code=>"76", :bands=>["GSM 900"], :notes=>"Test network; MNC withdrawn[68]", :operator=>"Siemens AG", :status=>"Not operational"}, ["262", "77"]=>{:mobile_country_code=>"262", :mobile_network_code=>"77", :bands=>["GSM 900"], :brand=>"E-Plus", :notes=>"Test network", :operator=>"E-Plus Mobilfunk", :status=>"Operational"}, ["262", "78"]=>{:mobile_country_code=>"262", :mobile_network_code=>"78", :bands=>["Unknown"], :brand=>"Telekom", :notes=>"[68]", :operator=>"Telekom Deutschland GmbH", :status=>"Unknown"}, ["262", "79"]=>{:mobile_country_code=>"262", :mobile_network_code=>"79", :bands=>["Unknown"], :notes=>"[69]", :operator=>"ng4T GmbH", :status=>"Unknown"}, ["262", "901"]=>{:mobile_country_code=>"262", :mobile_network_code=>"901", :bands=>["Unknown"], :brand=>"Debitel", :operator=>"", :status=>"Operational"}, ["262", "92"]=>{:mobile_country_code=>"262", :mobile_network_code=>"92", :bands=>["GSM 1800", "UMTS 2100"], :notes=>"Test network[70]", :operator=>"Nash Technologies", :status=>"Operational"}, ["266", "01"]=>{:mobile_country_code=>"266", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"GibTel", :operator=>"Gibtelecom", :status=>"Operational"}, ["266", "06"]=>{:mobile_country_code=>"266", :mobile_network_code=>"06", :bands=>["UMTS 2100"], :brand=>"CTS Mobile", :notes=>"licence withdrawn in February 2013", :operator=>"CTS Gibraltar", :status=>"Not operational"}, ["266", "09"]=>{:mobile_country_code=>"266", :mobile_network_code=>"09", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Shine", :notes=>"[71]", :operator=>"Eazitelecom", :status=>"Operational"}, ["268", "01"]=>{:mobile_country_code=>"268", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"Vodafone", :operator=>"Vodafone Portugal", :status=>"Operational"}, ["268", "03"]=>{:mobile_country_code=>"268", :mobile_network_code=>"03", :bands=>["GSM 900", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"NOS", :notes=>"formerly Optimus", :operator=>"NOS Comunica\u00E7\u00F5es", :status=>"Operational"}, ["268", "04"]=>{:mobile_country_code=>"268", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "LTE 2100"], :brand=>"LycaMobile", :operator=>"MVNO", :status=>"Operational"}, ["268", "05"]=>{:mobile_country_code=>"268", :mobile_network_code=>"05", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Oniway - Inforcomunica\u00E7\u00F4es, S.A.", :status=>"Unknown"}, ["268", "06"]=>{:mobile_country_code=>"268", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 1800", "LTE 2600"], :brand=>"TMN \\ MEO", :operator=>"Telecomunica\u00E7\u00F5es M\u00F3veis Nacionais", :status=>"Operational"}, ["268", "07"]=>{:mobile_country_code=>"268", :mobile_network_code=>"07", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vectonemobile - Delightmobile", :operator=>"MVNO", :status=>"Operational"}, ["268", "21"]=>{:mobile_country_code=>"268", :mobile_network_code=>"21", :bands=>["CDMA2000 450"], :brand=>"Zapp", :notes=>"Closed down CDMA network on September 31, 2011", :operator=>"Zapp Portugal", :status=>"Not operational"}, ["270", "01"]=>{:mobile_country_code=>"270", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"POST", :notes=>"Former LuxGSM (P&T Luxembourg)[7]", :operator=>"POST Luxembourg", :status=>"Operational"}, ["270", "02"]=>{:mobile_country_code=>"270", :mobile_network_code=>"02", :bands=>["Unknown"], :notes=>"[90]", :operator=>"MTX Connect S.a.r.l.", :status=>"Unknown"}, ["270", "10"]=>{:mobile_country_code=>"270", :mobile_network_code=>"10", :bands=>["Unknown"], :notes=>"[27]", :operator=>"Blue Communications", :status=>"Unknown"}, ["270", "77"]=>{:mobile_country_code=>"270", :mobile_network_code=>"77", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Tango", :notes=>"[7]", :operator=>"Tango SA", :status=>"Operational"}, ["270", "78"]=>{:mobile_country_code=>"270", :mobile_network_code=>"78", :bands=>["Unknown"], :notes=>"[54]", :operator=>"Interactive digital media GmbH", :status=>"Unknown"}, ["270", "99"]=>{:mobile_country_code=>"270", :mobile_network_code=>"99", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Orange", :notes=>"Former VOXmobile[7]", :operator=>"Orange S.A.", :status=>"Operational"}, ["272", "01"]=>{:mobile_country_code=>"272", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vodafone", :operator=>"Vodafone Ireland", :status=>"Operational"}, ["272", "02"]=>{:mobile_country_code=>"272", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"O2", :operator=>"O2 Ireland", :status=>"Operational"}, ["272", "03"]=>{:mobile_country_code=>"272", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Meteor", :operator=>"Meteor Mobile Communications", :status=>"Operational"}, ["272", "04"]=>{:mobile_country_code=>"272", :mobile_network_code=>"04", :bands=>["Unknown"], :operator=>"Access Telecom", :status=>"Unknown"}, ["272", "05"]=>{:mobile_country_code=>"272", :mobile_network_code=>"05", :bands=>["UMTS 2100"], :brand=>"3", :operator=>"Hutchison 3G Ireland limited", :status=>"Operational"}, ["272", "07"]=>{:mobile_country_code=>"272", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"eMobile", :operator=>"Eircom Mobile", :status=>"Operational"}, ["272", "09"]=>{:mobile_country_code=>"272", :mobile_network_code=>"09", :bands=>["Unknown"], :operator=>"Clever Communications", :status=>"Unknown"}, ["272", "11"]=>{:mobile_country_code=>"272", :mobile_network_code=>"11", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Tesco Mobile", :notes=>"MVNO (O2), Operating as Tesco Mobile", :operator=>"Liffey Telecom", :status=>"Operational"}, ["272", "13"]=>{:mobile_country_code=>"272", :mobile_network_code=>"13", :bands=>["GSM 900", "GSM 1800"], :brand=>"Lycamobile", :notes=>"MVNO (O2)", :operator=>"Lycamobile", :status=>"Operational"}, ["274", "01"]=>{:mobile_country_code=>"274", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"S\u00EDminn", :notes=>"Former Landssimi hf [51]", :operator=>"Iceland Telecom", :status=>"Operational"}, ["274", "02"]=>{:mobile_country_code=>"274", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Vodafone", :notes=>"Former Islandssimi ehf", :operator=>"Og fjarskipti hf", :status=>"Operational"}, ["274", "03"]=>{:mobile_country_code=>"274", :mobile_network_code=>"03", :bands=>["Unknown"], :brand=>"Vodafone", :notes=>"Former Islandssimi ehf", :operator=>"Vodafone Iceland", :status=>"Operational"}, ["274", "04"]=>{:mobile_country_code=>"274", :mobile_network_code=>"04", :bands=>["GSM 1800"], :brand=>"Viking", :operator=>"IMC Island ehf", :status=>"Operational"}, ["274", "06"]=>{:mobile_country_code=>"274", :mobile_network_code=>"06", :bands=>["Unknown"], :operator=>"N\u00FAll n\u00EDu ehf", :status=>"Reserved"}, ["274", "07"]=>{:mobile_country_code=>"274", :mobile_network_code=>"07", :bands=>["GSM 1800"], :brand=>"IceCell", :operator=>"IceCell ehf", :status=>"Operational"}, ["274", "08"]=>{:mobile_country_code=>"274", :mobile_network_code=>"08", :bands=>["Unknown"], :brand=>"On-waves", :notes=>"On ferries and cruise ships", :operator=>"Iceland Telecom", :status=>"Operational"}, ["274", "11"]=>{:mobile_country_code=>"274", :mobile_network_code=>"11", :bands=>["UMTS 2100", "LTE 1800"], :brand=>"Nova", :operator=>"Nova ehf", :status=>"Operational"}, ["274", "12"]=>{:mobile_country_code=>"274", :mobile_network_code=>"12", :bands=>["GSM 900", "GSM 1800"], :brand=>"Tal", :operator=>"Tal hf", :status=>"Operational"}, ["276", "01"]=>{:mobile_country_code=>"276", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"AMC", :operator=>"Albanian Mobile Communications", :status=>"Operational"}, ["276", "02"]=>{:mobile_country_code=>"276", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vodafone", :operator=>"Vodafone Albania", :status=>"Operational"}, ["276", "03"]=>{:mobile_country_code=>"276", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Eagle Mobile", :operator=>"Eagle Mobile", :status=>"Operational"}, ["276", "04"]=>{:mobile_country_code=>"276", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Plus Communication", :operator=>"Plus Communication", :status=>"Operational"}, ["278", "01"]=>{:mobile_country_code=>"278", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vodafone", :notes=>"Supports MVNO Redtouch Fone and MVNO VFC Mobile[99]", :operator=>"Vodafone Malta", :status=>"Operational"}, ["278", "11"]=>{:mobile_country_code=>"278", :mobile_network_code=>"11", :bands=>["MVNO"], :notes=>"[88]", :operator=>"YOM Ltd.", :status=>"Operational"}, ["278", "21"]=>{:mobile_country_code=>"278", :mobile_network_code=>"21", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"GO", :notes=>"Supports MVNO PING[100]", :operator=>"Mobisle Communications Limited", :status=>"Operational"}, ["278", "77"]=>{:mobile_country_code=>"278", :mobile_network_code=>"77", :bands=>["UMTS 2100"], :brand=>"Melita", :operator=>"Melita Plc", :status=>"Operational"}, ["280", "01"]=>{:mobile_country_code=>"280", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cytamobile-Vodafone", :operator=>"Cyprus Telecommunications Authority", :status=>"Operational"}, ["280", "10"]=>{:mobile_country_code=>"280", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MTN", :operator=>"MTN Group", :status=>"Operational"}, ["280", "20"]=>{:mobile_country_code=>"280", :mobile_network_code=>"20", :bands=>["MVNO"], :brand=>"PrimeTel", :operator=>"PrimeTel PLC", :status=>"Operational"}, ["280", "22"]=>{:mobile_country_code=>"280", :mobile_network_code=>"22", :bands=>["MVNO"], :brand=>"lemontel", :notes=>"[4]", :operator=>"Lemontel Ltd", :status=>"Operational"}, ["282", "01"]=>{:mobile_country_code=>"282", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Geocell", :operator=>"Geocell Limited", :status=>"Operational"}, ["282", "02"]=>{:mobile_country_code=>"282", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MagtiCom", :operator=>"Magticom GSM", :status=>"Operational"}, ["282", "03"]=>{:mobile_country_code=>"282", :mobile_network_code=>"03", :bands=>["CDMA 450"], :brand=>"MagtiCom", :operator=>"Magtifix", :status=>"Operational"}, ["282", "04"]=>{:mobile_country_code=>"282", :mobile_network_code=>"04", :bands=>["GSM 1800"], :brand=>"Beeline", :operator=>"Mobitel LLC", :status=>"Operational"}, ["282", "05"]=>{:mobile_country_code=>"282", :mobile_network_code=>"05", :bands=>["CDMA 800"], :brand=>"Silknet", :notes=>"former UTG", :operator=>"JSC Silknet", :status=>"Operational"}, ["282", "06"]=>{:mobile_country_code=>"282", :mobile_network_code=>"06", :bands=>["Unknown"], :notes=>"[64]", :operator=>"JSC Compatel", :status=>"Unknown"}, ["282", "07"]=>{:mobile_country_code=>"282", :mobile_network_code=>"07", :bands=>["Unknown"], :notes=>"[27]", :operator=>"GlobalCell Ltd", :status=>"Unknown"}, ["282", "08"]=>{:mobile_country_code=>"282", :mobile_network_code=>"08", :bands=>["LTE"], :brand=>"Silk LTE", :notes=>"[65]", :operator=>"JSC Silknet", :status=>"Operational"}, ["283", "01"]=>{:mobile_country_code=>"283", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Beeline", :operator=>"ArmenTel", :status=>"Operational"}, ["283", "04"]=>{:mobile_country_code=>"283", :mobile_network_code=>"04", :bands=>["GSM 900", "UMTS 900"], :brand=>"Karabakh Telecom", :operator=>"Karabakh Telecom", :status=>"Operational"}, ["283", "05"]=>{:mobile_country_code=>"283", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"VivaCell-MTS", :operator=>"K Telecom CJSC", :status=>"Operational"}, ["283", "10"]=>{:mobile_country_code=>"283", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Orange", :operator=>"Orange S.A.", :status=>"Operational"}, ["284", "01"]=>{:mobile_country_code=>"284", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"M-Tel", :operator=>"Mobiltel", :status=>"Operational"}, ["284", "03"]=>{:mobile_country_code=>"284", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Vivacom", :notes=>"Former Vivatel", :operator=>"BTC", :status=>"Operational"}, ["284", "05"]=>{:mobile_country_code=>"284", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Telenor", :notes=>"Former Globul [40]", :operator=>"Telenor (Bulgaria)", :status=>"Operational"}, ["284", "07"]=>{:mobile_country_code=>"284", :mobile_network_code=>"07", :bands=>["GSM-R"], :brand=>"\u041D\u041A\u0416\u0418", :notes=>"National Railway Infrastructure Company", :operator=>"\u041D\u0410\u0426\u0418\u041E\u041D\u0410\u041B\u041D\u0410 \u041A\u041E\u041C\u041F\u0410\u041D\u0418\u042F \u0416\u0415\u041B\u0415\u0417\u041E\u041F\u042A\u0422\u041D\u0410 \u0418\u041D\u0424\u0420\u0410\u0421\u0422\u0420\u0423\u041A\u0422\u0423\u0420\u0410", :status=>"Operational"}, ["284", "09"]=>{:mobile_country_code=>"284", :mobile_network_code=>"09", :bands=>["Unknown"], :brand=>"COMPATEL LIMITED", :operator=>"COMPATEL LIMITED", :status=>"Operational"}, ["284", "11"]=>{:mobile_country_code=>"284", :mobile_network_code=>"11", :bands=>["LTE 1800"], :brand=>"Bulsatcom", :notes=>"Purchased on 22 Jul 2010. Pending formal announcement.", :operator=>"Undisclosed", :status=>"Reserved"}, ["284", "13"]=>{:mobile_country_code=>"284", :mobile_network_code=>"13", :bands=>["LTE 1800"], :brand=>"Max Telecom", :notes=>"On May 21, 2014 in official press-conference Max announced the launch of the first LTE network in Bulgaria.", :operator=>"Max Telecom LTD", :status=>"Operational"}, ["286", "01"]=>{:mobile_country_code=>"286", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Turkcell", :operator=>"Turkcell Iletisim Hizmetleri A.S.", :status=>"Operational"}, ["286", "02"]=>{:mobile_country_code=>"286", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vodafone", :notes=>"Formerly known as Telsim", :operator=>"Vodafone Turkey", :status=>"Operational"}, ["286", "03"]=>{:mobile_country_code=>"286", :mobile_network_code=>"03", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Avea", :notes=>"Formerly Aria and Aycell", :operator=>"", :status=>"Operational"}, ["286", "04"]=>{:mobile_country_code=>"286", :mobile_network_code=>"04", :bands=>["GSM 1800"], :notes=>"Merged into Aria to form Avea", :operator=>"Aycell", :status=>"Not operational"}, ["288", "01"]=>{:mobile_country_code=>"288", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 900", "UMTS 2100"], :brand=>"Faroese Telecom", :notes=>"[58]", :operator=>"Faroese Telecom", :status=>"Operational"}, ["288", "02"]=>{:mobile_country_code=>"288", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vodafone", :notes=>"Former Kall[58]", :operator=>"Vodafone Faroe Islands", :status=>"Operational"}, ["288", "03"]=>{:mobile_country_code=>"288", :mobile_network_code=>"03", :bands=>["GSM 1800"], :notes=>"Planned[4][58]", :operator=>"Edge Mobile Sp/F", :status=>"Not operational"}, ["289", "67"]=>{:mobile_country_code=>"289", :mobile_network_code=>"67", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Aquafon", :operator=>"Aquafon JSC", :status=>"Operational"}, ["289", "88"]=>{:mobile_country_code=>"289", :mobile_network_code=>"88", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE Band 3", "20"], :brand=>"A-Mobile", :operator=>"A-Mobile LLC", :status=>"Operational"}, ["290", "01"]=>{:mobile_country_code=>"290", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 900", "LTE 800"], :operator=>"TELE Greenland A/S", :status=>"Operational"}, ["292", "01"]=>{:mobile_country_code=>"292", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"PRIMA", :notes=>"[12]", :operator=>"San Marino Telecom", :status=>"Operational"}, ["293", "31"]=>{:mobile_country_code=>"293", :mobile_network_code=>"31", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Mobitel", :operator=>"Mobitel D.D.", :status=>"Operational"}, ["293", "40"]=>{:mobile_country_code=>"293", :mobile_network_code=>"40", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Si.mobil", :notes=>"[51]", :operator=>"SI.MOBIL d.d.", :status=>"Operational"}, ["293", "41"]=>{:mobile_country_code=>"293", :mobile_network_code=>"41", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Mobitel", :operator=>"Mobitel D.D.", :status=>"Operational"}, ["293", "51"]=>{:mobile_country_code=>"293", :mobile_network_code=>"51", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Mobitel", :operator=>"Mobitel D.D.", :status=>"Operational"}, ["293", "64"]=>{:mobile_country_code=>"293", :mobile_network_code=>"64", :bands=>["UMTS 2100"], :brand=>"T-2", :operator=>"T-2 d.o.o.", :status=>"Operational"}, ["293", "70"]=>{:mobile_country_code=>"293", :mobile_network_code=>"70", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Tu\u0161mobil", :notes=>"[51]", :operator=>"Tu\u0161mobil d.o.o.", :status=>"Operational"}, ["294", "01"]=>{:mobile_country_code=>"294", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"T-Mobile MK", :notes=>"Former Mobimak", :operator=>"T-Mobile Macedonia", :status=>"Operational"}, ["294", "02"]=>{:mobile_country_code=>"294", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"ONE", :notes=>"Former Cosmofon", :operator=>"One", :status=>"Operational"}, ["294", "03"]=>{:mobile_country_code=>"294", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"Vip MK", :operator=>"VIP Operator", :status=>"Operational"}, ["294", "10"]=>{:mobile_country_code=>"294", :mobile_network_code=>"10", :bands=>["Unknown"], :notes=>"[17]", :operator=>"WTI Macedonia", :status=>"Unknown"}, ["294", "11"]=>{:mobile_country_code=>"294", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"[17]", :operator=>"MOBIK TELEKOMUNIKACII DOOEL Skopje", :status=>"Unknown"}, ["295", "01"]=>{:mobile_country_code=>"295", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Swisscom", :operator=>"Swisscom Schweiz AG", :status=>"Operational"}, ["295", "02"]=>{:mobile_country_code=>"295", :mobile_network_code=>"02", :bands=>["GSM 1800", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Orange", :operator=>"Orange Liechtenstein AG", :status=>"Operational"}, ["295", "05"]=>{:mobile_country_code=>"295", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"FL1", :notes=>"Former Mobilkom [88]", :operator=>"Telecom Liechtenstein AG", :status=>"Operational"}, ["295", "06"]=>{:mobile_country_code=>"295", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cubic Telecom", :operator=>"Cubic Telecom AG", :status=>"Operational"}, ["295", "07"]=>{:mobile_country_code=>"295", :mobile_network_code=>"07", :bands=>["Unknown"], :notes=>"[88]", :operator=>"First Mobile AG", :status=>"Unknown"}, ["295", "77"]=>{:mobile_country_code=>"295", :mobile_network_code=>"77", :bands=>["GSM 900"], :brand=>"Alpmobil", :notes=>"Bankruptcy in February 2012,[89] Former Tele2", :operator=>"Alpcom AG", :status=>"Not operational"}, ["297", "01"]=>{:mobile_country_code=>"297", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Telenor", :notes=>"Former ProMonte GSM", :operator=>"Telenor Montenegro", :status=>"Operational"}, ["297", "02"]=>{:mobile_country_code=>"297", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100"], :brand=>"T-Mobile", :operator=>"T-Mobile Montenegro LLC", :status=>"Operational"}, ["297", "03"]=>{:mobile_country_code=>"297", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"m:tel CG", :operator=>"MTEL CG", :status=>"Operational"}, ["297", "04"]=>{:mobile_country_code=>"297", :mobile_network_code=>"04", :bands=>["GSM 900", "UMTS 2100"], :brand=>"T-Mobile", :operator=>"T-Mobile Montenegro", :status=>"Operational"}, ["302", "220"]=>{:mobile_country_code=>"302", :mobile_network_code=>"220", :bands=>["UMTS 850", "UMTS 1900", "LTE 1700"], :brand=>"Telus", :notes=>"Used in IMSI to identify Telus subscribers on shared network 302-880", :operator=>"Koodo Mobility, Public Mobile and Telus Mobility", :status=>"Operational"}, ["302", "221"]=>{:mobile_country_code=>"302", :mobile_network_code=>"221", :bands=>["Unknown"], :brand=>"Telus", :notes=>"[47]", :operator=>"Telus Mobility", :status=>"Unknown"}, ["302", "222"]=>{:mobile_country_code=>"302", :mobile_network_code=>"222", :bands=>["Unknown"], :brand=>"Telus", :notes=>"[47]", :operator=>"Telus Mobility", :status=>"Unknown"}, ["302", "250"]=>{:mobile_country_code=>"302", :mobile_network_code=>"250", :bands=>["Unknown"], :brand=>"ALO", :notes=>"[47]", :operator=>"ALO Mobile Inc.", :status=>"Unknown"}, ["302", "270"]=>{:mobile_country_code=>"302", :mobile_network_code=>"270", :bands=>["UMTS 1700", "LTE 1700"], :brand=>"EastLink", :notes=>"Nova Scotia and PEI", :operator=>"EastLink", :status=>"Operational"}, ["302", "290"]=>{:mobile_country_code=>"302", :mobile_network_code=>"290", :bands=>["iDEN 900"], :brand=>"Airtel Wireless", :notes=>"Calgary, AB", :operator=>"Airtel Wireless", :status=>"Operational"}, ["302", "320"]=>{:mobile_country_code=>"302", :mobile_network_code=>"320", :bands=>["UMTS 1700"], :brand=>"Mobilicity", :notes=>"May 2010", :operator=>"DAVE Wireless", :status=>"Operational"}, ["302", "340"]=>{:mobile_country_code=>"302", :mobile_network_code=>"340", :bands=>["Unknown"], :brand=>"Execulink", :notes=>"[47]", :operator=>"Execulink", :status=>"Unknown"}, ["302", "350"]=>{:mobile_country_code=>"302", :mobile_network_code=>"350", :bands=>["GSM 850"], :brand=>"FIRST", :notes=>"March 2008", :operator=>"FIRST Networks Operations", :status=>"Operational"}, ["302", "360"]=>{:mobile_country_code=>"302", :mobile_network_code=>"360", :bands=>["iDEN 800"], :brand=>"MiKe", :operator=>"Telus Mobility", :status=>"Operational"}, ["302", "361"]=>{:mobile_country_code=>"302", :mobile_network_code=>"361", :bands=>["CDMA 800", "CDMA 1900"], :brand=>"Telus", :operator=>"Telus Mobility", :status=>"Operational"}, ["302", "370"]=>{:mobile_country_code=>"302", :mobile_network_code=>"370", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900"], :brand=>"Fido", :notes=>"former Microcell Telecommunications", :operator=>"Fido Solutions (Rogers Wireless)", :status=>"Operational"}, ["302", "380"]=>{:mobile_country_code=>"302", :mobile_network_code=>"380", :bands=>["UMTS 850", "UMTS 1900"], :brand=>"DMTS", :notes=>"Acquired by Tbaytel in 2012", :operator=>"Dryden Mobility", :status=>"Operational"}, ["302", "390"]=>{:mobile_country_code=>"302", :mobile_network_code=>"390", :bands=>["Unknown"], :brand=>"DMTS", :notes=>"Acquired by Tbaytel in 2012 [17]", :operator=>"Dryden Mobility", :status=>"Unknown"}, ["302", "480"]=>{:mobile_country_code=>"302", :mobile_network_code=>"480", :bands=>["Unknown"], :brand=>"SSi Connexions", :notes=>"[47]", :operator=>"SSi Connexions", :status=>"Unknown"}, ["302", "490"]=>{:mobile_country_code=>"302", :mobile_network_code=>"490", :bands=>["UMTS 1700"], :brand=>"WIND Mobile", :operator=>"Globalive Communications", :status=>"Operational"}, ["302", "500"]=>{:mobile_country_code=>"302", :mobile_network_code=>"500", :bands=>["UMTS 1700"], :brand=>"Videotron", :notes=>"[47]", :operator=>"Videotron", :status=>"Operational"}, ["302", "510"]=>{:mobile_country_code=>"302", :mobile_network_code=>"510", :bands=>["UMTS 1700"], :brand=>"Videotron", :notes=>"[47]", :operator=>"Videotron", :status=>"Operational"}, ["302", "520"]=>{:mobile_country_code=>"302", :mobile_network_code=>"520", :bands=>["Unknown"], :brand=>"Videotron", :notes=>"[47]", :operator=>"Videotron", :status=>"Unknown"}, ["302", "530"]=>{:mobile_country_code=>"302", :mobile_network_code=>"530", :bands=>["GSM"], :brand=>"Keewatinook Okimakanak Mobile", :notes=>"Northwestern Ontario[47]", :operator=>"Keewatinook Okimacinac", :status=>"Operational"}, ["302", "560"]=>{:mobile_country_code=>"302", :mobile_network_code=>"560", :bands=>["Unknown"], :brand=>"Lynx Mobility", :notes=>"[47]", :operator=>"Lynx Mobility", :status=>"Unknown"}, ["302", "570"]=>{:mobile_country_code=>"302", :mobile_network_code=>"570", :bands=>["Unknown"], :brand=>"LightSquared", :notes=>"[47]", :operator=>"LightSquared", :status=>"Unknown"}, ["302", "590"]=>{:mobile_country_code=>"302", :mobile_network_code=>"590", :bands=>["Unknown"], :brand=>"Quadro Communication", :notes=>"[47]", :operator=>"Quadro Communication", :status=>"Unknown"}, ["302", "610"]=>{:mobile_country_code=>"302", :mobile_network_code=>"610", :bands=>["UMTS 850", "UMTS 1900", "LTE 1700", "LTE 2600"], :brand=>"Bell", :notes=>"Used in IMSI to identify Bell subscribers on shared network 302-880", :operator=>"Bell Mobility and Virgin Mobile Canada", :status=>"Operational"}, ["302", "620"]=>{:mobile_country_code=>"302", :mobile_network_code=>"620", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"ICE Wireless", :notes=>"Northern Canada", :operator=>"ICE Wireless", :status=>"Operational"}, ["302", "630"]=>{:mobile_country_code=>"302", :mobile_network_code=>"630", :bands=>["Unknown"], :brand=>"Aliant Mobility", :notes=>"[47]", :operator=>"Aliant Mobility", :status=>"Unknown"}, ["302", "640"]=>{:mobile_country_code=>"302", :mobile_network_code=>"640", :bands=>["CDMA 800", "CDMA 1900"], :brand=>"Bell", :operator=>"Bell Mobility", :status=>"Operational"}, ["302", "652"]=>{:mobile_country_code=>"302", :mobile_network_code=>"652", :bands=>["CDMA2000"], :operator=>"BC Tel Mobility (Telus)", :status=>"Operational"}, ["302", "653"]=>{:mobile_country_code=>"302", :mobile_network_code=>"653", :bands=>["CDMA 800", "CDMA 1900"], :brand=>"Telus", :notes=>"CDMA will shut down 1 July 2015", :operator=>"Telus Mobility", :status=>"Operational"}, ["302", "655"]=>{:mobile_country_code=>"302", :mobile_network_code=>"655", :bands=>["CDMA 800", "CDMA 1900"], :brand=>"MTS", :notes=>"former Manitoba Telephone System", :operator=>"MTS Mobility", :status=>"Operational"}, ["302", "656"]=>{:mobile_country_code=>"302", :mobile_network_code=>"656", :bands=>["CDMA2000", "UMTS 850", "UMTS 1900", "LTE 1700", "LTE 2600"], :brand=>"TBay", :notes=>"CDMA will shut down 1 Oct 2014", :operator=>"Thunder Bay Telephone Mobility", :status=>"Operational"}, ["302", "657"]=>{:mobile_country_code=>"302", :mobile_network_code=>"657", :bands=>["CDMA 800", "CDMA 1900"], :brand=>"Telus", :operator=>"Telus Mobility", :status=>"Operational"}, ["302", "660"]=>{:mobile_country_code=>"302", :mobile_network_code=>"660", :bands=>["UMTS 850", "UMTS 1900", "LTE 1700"], :brand=>"MTS", :operator=>"MTS Mobility", :status=>"Operational"}, ["302", "670"]=>{:mobile_country_code=>"302", :mobile_network_code=>"670", :bands=>["Unknown"], :brand=>"CityTel Mobility", :notes=>"[47]", :operator=>"CityTel Mobility", :status=>"Unknown"}, ["302", "680"]=>{:mobile_country_code=>"302", :mobile_network_code=>"680", :bands=>["CDMA 850", "TDD-LTE 2600"], :brand=>"SaskTel", :operator=>"SaskTel Mobility", :status=>"Operational"}, ["302", "690"]=>{:mobile_country_code=>"302", :mobile_network_code=>"690", :bands=>["UMTS 850", "UMTS 1900"], :brand=>"Bell", :notes=>"[4]", :operator=>"Bell Mobility", :status=>"Operational"}, ["302", "701"]=>{:mobile_country_code=>"302", :mobile_network_code=>"701", :bands=>["CDMA2000"], :operator=>"MB Tel Mobility", :status=>"Operational"}, ["302", "702"]=>{:mobile_country_code=>"302", :mobile_network_code=>"702", :bands=>["CDMA2000"], :operator=>"MT&T Mobility (Aliant)", :status=>"Operational"}, ["302", "703"]=>{:mobile_country_code=>"302", :mobile_network_code=>"703", :bands=>["CDMA2000"], :operator=>"New Tel Mobility (Aliant)", :status=>"Operational"}, ["302", "710"]=>{:mobile_country_code=>"302", :mobile_network_code=>"710", :bands=>["Satellite CDMA"], :brand=>"Globalstar", :operator=>"", :status=>"Operational"}, ["302", "720"]=>{:mobile_country_code=>"302", :mobile_network_code=>"720", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900", "LTE 1700", "LTE 2600"], :brand=>"Rogers Wireless", :notes=>"former Rogers AT&T Wireless", :operator=>"Rogers Communications", :status=>"Operational"}, ["302", "730"]=>{:mobile_country_code=>"302", :mobile_network_code=>"730", :bands=>["Unknown"], :brand=>"TerreStar Solutions", :notes=>"[47]", :operator=>"TerreStar Solutions", :status=>"Unknown"}, ["302", "740"]=>{:mobile_country_code=>"302", :mobile_network_code=>"740", :bands=>["Unknown"], :brand=>"Shaw Telecom G.P.", :notes=>"[47]", :operator=>"Shaw Telecom G.P.", :status=>"Not Operational"}, ["302", "750"]=>{:mobile_country_code=>"302", :mobile_network_code=>"750", :bands=>["Unknown"], :brand=>"SaskTel", :notes=>"[47]", :operator=>"SaskTel Mobility", :status=>"Unknown"}, ["302", "760"]=>{:mobile_country_code=>"302", :mobile_network_code=>"760", :bands=>["Unknown"], :brand=>"Public Mobile Inc.", :notes=>"[47] Acquired by Telus, network shut down 2014.", :operator=>"Public Mobile Inc.", :status=>"Unknown"}, ["302", "770"]=>{:mobile_country_code=>"302", :mobile_network_code=>"770", :bands=>["Unknown"], :brand=>"Rural Com", :notes=>"[47]", :operator=>"Rural Com", :status=>"Unknown"}, ["302", "780"]=>{:mobile_country_code=>"302", :mobile_network_code=>"780", :bands=>["UMTS 850", "UMTS 1900", "LTE 2100"], :brand=>"SaskTel", :operator=>"SaskTel Mobility", :status=>"Operational"}, ["302", "790"]=>{:mobile_country_code=>"302", :mobile_network_code=>"790", :bands=>["Unknown"], :notes=>"Manitoba[47]", :operator=>"NetSet Communications", :status=>"Unknown"}, ["302", "860"]=>{:mobile_country_code=>"302", :mobile_network_code=>"860", :bands=>["Unknown"], :brand=>"Telus", :notes=>"[47]", :operator=>"Telus Mobility", :status=>"Unknown"}, ["302", "880"]=>{:mobile_country_code=>"302", :mobile_network_code=>"880", :bands=>["UMTS 850", "UMTS 1900"], :brand=>"Bell / Telus / SaskTel", :operator=>"Shared Telus, Bell, and SaskTel", :status=>"Operational"}, ["302", "940"]=>{:mobile_country_code=>"302", :mobile_network_code=>"940", :bands=>["Unknown"], :brand=>"Wightman Telecom", :notes=>"[47]", :operator=>"Wightman Telecom", :status=>"Unknown"}, ["308", "01"]=>{:mobile_country_code=>"308", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Ameris", :operator=>"St. Pierre-et-Miquelon T\u00E9l\u00E9com", :status=>"Operational"}, ["308", "02"]=>{:mobile_country_code=>"308", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"GLOBALTEL", :operator=>"GLOBALTEL", :status=>"Operational"}, ["310", "004"]=>{:mobile_country_code=>"310", :mobile_network_code=>"004", :bands=>["Unknown"], :brand=>"Verizon", :operator=>"Verizon Wireless", :status=>"Operational"}, ["310", "005"]=>{:mobile_country_code=>"310", :mobile_network_code=>"005", :bands=>["CDMA2000 850", "CDMA2000 1900"], :brand=>"Verizon", :operator=>"Verizon Wireless", :status=>"Operational"}, ["310", "010"]=>{:mobile_country_code=>"310", :mobile_network_code=>"010", :bands=>["Unknown"], :operator=>"MCI", :status=>"Not operational"}, ["310", "013"]=>{:mobile_country_code=>"310", :mobile_network_code=>"013", :bands=>["Unknown"], :brand=>"MobileTel", :operator=>"", :status=>"Unknown"}, ["310", "014"]=>{:mobile_country_code=>"310", :mobile_network_code=>"014", :bands=>["Unknown"], :operator=>"Testing", :status=>"Operational"}, ["310", "016"]=>{:mobile_country_code=>"310", :mobile_network_code=>"016", :bands=>["CDMA2000 1900", "CDMA2000 1700", "CDMA2000 2100"], :brand=>"Cricket Communications", :notes=>"EV-DO", :operator=>"Cricket Wireless", :status=>"Operational"}, ["310", "017"]=>{:mobile_country_code=>"310", :mobile_network_code=>"017", :bands=>["Unknown"], :operator=>"North Sight Communications Inc.", :status=>"Operational"}, ["310", "020"]=>{:mobile_country_code=>"310", :mobile_network_code=>"020", :bands=>["GSM 850", "GSM 1900"], :notes=>"Or APC Sprint Spectrum", :operator=>"Union Telephone Company", :status=>"Operational"}, ["310", "026"]=>{:mobile_country_code=>"310", :mobile_network_code=>"026", :bands=>["GSM 1900", "UMTS 1700", "UMTS 1900"], :brand=>"T-Mobile", :notes=>"Formerly Cook Inlet Voicestream", :operator=>"", :status=>"Operational"}, ["310", "030"]=>{:mobile_country_code=>"310", :mobile_network_code=>"030", :bands=>["GSM 850"], :brand=>"AT&T", :notes=>"Formerly Centennial Wireless", :operator=>"AT&T Mobility", :status=>"Operational"}, ["310", "032"]=>{:mobile_country_code=>"310", :mobile_network_code=>"032", :bands=>["CDMA 1900", "LTE 700"], :brand=>"IT&E Wireless", :notes=>"GSM 1900 planned", :operator=>"IT&E Overseas, Inc", :status=>"Operational"}, ["310", "033"]=>{:mobile_country_code=>"310", :mobile_network_code=>"033", :bands=>["Unknown"], :operator=>"Guam Telephone Authority", :status=>"Unknown"}, ["310", "034"]=>{:mobile_country_code=>"310", :mobile_network_code=>"034", :bands=>["Unknown"], :brand=>"Airpeak", :notes=>"Formerly Nevada Wireless", :operator=>"", :status=>"Operational"}, ["310", "040"]=>{:mobile_country_code=>"310", :mobile_network_code=>"040", :bands=>["GSM 1900"], :brand=>"Concho", :operator=>"Concho Cellular Telephone Co., Inc.", :status=>"Operational"}, ["310", "046"]=>{:mobile_country_code=>"310", :mobile_network_code=>"046", :bands=>["GSM 1900"], :brand=>"SIMMETRY", :operator=>"TMP Corp", :status=>"Operational"}, ["310", "053"]=>{:mobile_country_code=>"310", :mobile_network_code=>"053", :bands=>["CDMA2000 1900."], :operator=>"Virgin Mobile US", :status=>"Operational"}, ["310", "054"]=>{:mobile_country_code=>"310", :mobile_network_code=>"054", :bands=>["Unknown"], :operator=>"Alltel US", :status=>"Operational"}, ["310", "060"]=>{:mobile_country_code=>"310", :mobile_network_code=>"060", :bands=>["Unknown"], :operator=>"Consolidated Telcom", :status=>"Operational"}, ["310", "066"]=>{:mobile_country_code=>"310", :mobile_network_code=>"066", :bands=>["GSM AND CDMA"], :operator=>"U.S. Cellular", :status=>"Operational"}, ["310", "070"]=>{:mobile_country_code=>"310", :mobile_network_code=>"070", :bands=>["Unknown"], :notes=>"Cellular One reseller", :operator=>"Highland Cellular", :status=>"Operational"}, ["310", "080"]=>{:mobile_country_code=>"310", :mobile_network_code=>"080", :bands=>["GSM 1900"], :brand=>"Corr", :operator=>"Corr Wireless Communications LLC", :status=>"Operational"}, ["310", "090"]=>{:mobile_country_code=>"310", :mobile_network_code=>"090", :bands=>["CDMA2000 1900", "CDMA2000 1700", "CDMA2000 2100"], :brand=>"Cricket Communications", :notes=>"EV-DO", :operator=>"Cricket Wireless", :status=>"Operational"}, ["310", "100"]=>{:mobile_country_code=>"310", :mobile_network_code=>"100", :bands=>["GSM 850"], :brand=>"Plateau Wireless", :operator=>"New Mexico RSA 4 East Ltd. Partnership", :status=>"Operational"}, ["310", "110"]=>{:mobile_country_code=>"310", :mobile_network_code=>"110", :bands=>["GSM 850"], :brand=>"PTI Pacifica", :operator=>"PTI Pacifica Inc.", :status=>"Operational"}, ["310", "120"]=>{:mobile_country_code=>"310", :mobile_network_code=>"120", :bands=>["CDMA2000 1900"], :brand=>"Sprint", :operator=>"", :status=>"Operational"}, ["310", "140"]=>{:mobile_country_code=>"310", :mobile_network_code=>"140", :bands=>["GSM 850", "GSM 1900"], :brand=>"mPulse", :operator=>"GTA Wireless", :status=>"Operational"}, ["310", "150"]=>{:mobile_country_code=>"310", :mobile_network_code=>"150", :bands=>["GSM 850", "UMTS 850", "UMTS 1900"], :brand=>"AT&T", :notes=>"Originally BellSouth Mobility DCS, then Cingular Wireless, then Aio Wireless, which was rebranded to the new GSM Cricket.", :operator=>"Cricket Wireless", :status=>"Operational"}, ["310", "160"]=>{:mobile_country_code=>"310", :mobile_network_code=>"160", :bands=>["GSM 1900"], :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "170"]=>{:mobile_country_code=>"310", :mobile_network_code=>"170", :bands=>["GSM 1900"], :brand=>"AT&T", :notes=>"Formerly Cingular Wireless CA/NV known as \"Cingular Orange\", previously Pacific Bell Wireless", :operator=>"AT&T Mobility", :status=>"Operational"}, ["310", "180"]=>{:mobile_country_code=>"310", :mobile_network_code=>"180", :bands=>["GSM 850", "UMTS 850", "UMTS 1900"], :brand=>"West Central", :operator=>"West Central Wireless", :status=>"Operational"}, ["310", "190"]=>{:mobile_country_code=>"310", :mobile_network_code=>"190", :bands=>["GSM 850"], :brand=>"Dutch Harbor", :notes=>"Probably \"Alaska Communications Services\", seems to be using CDMA", :operator=>"Alaska Wireless Communications, LLC", :status=>"Operational"}, ["310", "200"]=>{:mobile_country_code=>"310", :mobile_network_code=>"200", :bands=>["GSM 1900"], :notes=>"Formerly Smith Bagley", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "210"]=>{:mobile_country_code=>"310", :mobile_network_code=>"210", :bands=>["GSM 1900"], :notes=>"Iowa", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "220"]=>{:mobile_country_code=>"310", :mobile_network_code=>"220", :bands=>["GSM 1900"], :notes=>"Kansas / Oklahoma", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "230"]=>{:mobile_country_code=>"310", :mobile_network_code=>"230", :bands=>["GSM 1900"], :notes=>"Utah", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "240"]=>{:mobile_country_code=>"310", :mobile_network_code=>"240", :bands=>["GSM 1900"], :notes=>"New Mexico / Texas / Arizona", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "250"]=>{:mobile_country_code=>"310", :mobile_network_code=>"250", :bands=>["GSM 1900"], :notes=>"Hawaii", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "260"]=>{:mobile_country_code=>"310", :mobile_network_code=>"260", :bands=>["GSM 1900", "UMTS 1900", "UMTS 1700", "2100 (AWS)"], :notes=>"Universal USA code", :operator=>"T-Mobile", :status=>"Operational"}, ["310", "270"]=>{:mobile_country_code=>"310", :mobile_network_code=>"270", :bands=>["GSM 1900"], :notes=>"Formerly Powertel", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "280"]=>{:mobile_country_code=>"310", :mobile_network_code=>"280", :bands=>["GSM 1900"], :brand=>"AT&T", :operator=>"AT&T Mobility", :status=>"Not Operational"}, ["310", "290"]=>{:mobile_country_code=>"310", :mobile_network_code=>"290", :bands=>["GSM 1900"], :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "300"]=>{:mobile_country_code=>"310", :mobile_network_code=>"300", :bands=>["GSM 1900"], :brand=>"Big Sky Mobile", :operator=>"Smart Call (Truphone)", :status=>"Operational"}, ["310", "310"]=>{:mobile_country_code=>"310", :mobile_network_code=>"310", :bands=>["GSM 1900"], :notes=>"Formerly Aerial Communications", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "311"]=>{:mobile_country_code=>"310", :mobile_network_code=>"311", :bands=>["GSM 1900"], :operator=>"Farmers Wireless", :status=>"Operational"}, ["310", "320"]=>{:mobile_country_code=>"310", :mobile_network_code=>"320", :bands=>["GSM 850", "GSM 1900"], :brand=>"Cellular One", :operator=>"Smith Bagley, Inc.", :status=>"Operational"}, ["310", "330"]=>{:mobile_country_code=>"310", :mobile_network_code=>"330", :bands=>["GSM 1900"], :brand=>"T-Mobile", :operator=>"", :status=>"Not operational"}, ["310", "340"]=>{:mobile_country_code=>"310", :mobile_network_code=>"340", :bands=>["GSM 1900"], :brand=>"Westlink", :notes=>"Kansas", :operator=>"Westlink Communications", :status=>"Operational"}, ["310", "350"]=>{:mobile_country_code=>"310", :mobile_network_code=>"350", :bands=>["GSM 1900"], :operator=>"Carolina Phone", :status=>"Not operational"}, ["310", "370"]=>{:mobile_country_code=>"310", :mobile_network_code=>"370", :bands=>["CDMA 850"], :brand=>"Docomo", :notes=>"Formerly Guamcell, shut down in late 2010.", :operator=>"NTT Docomo Pacific", :status=>"Not operational"}, ["310", "380"]=>{:mobile_country_code=>"310", :mobile_network_code=>"380", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900"], :brand=>"AT&T", :notes=>"Formerly Cingular Wireless known as \"Cingular Blue\", previously AT&T Wireless Services", :operator=>"AT&T Mobility", :status=>"Not operational"}, ["310", "390"]=>{:mobile_country_code=>"310", :mobile_network_code=>"390", :bands=>["GSM 850"], :brand=>"Cellular One of East Texas", :operator=>"TX-11 Acquisition, LLC", :status=>"Operational"}, ["310", "400"]=>{:mobile_country_code=>"310", :mobile_network_code=>"400", :bands=>["GSM 1900"], :brand=>"i CAN_GSM", :operator=>"Wave Runner LLC (Guam)", :status=>"Operational"}, ["310", "410"]=>{:mobile_country_code=>"310", :mobile_network_code=>"410", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900"], :brand=>"AT&T", :notes=>"Formerly Cingular Wireless", :operator=>"AT&T Mobility", :status=>"Operational"}, ["310", "420"]=>{:mobile_country_code=>"310", :mobile_network_code=>"420", :bands=>["GSM 1900", "UMTS AWS"], :brand=>"Cincinnati Bell", :notes=>"shutting down 28-Feb-2015 [154]", :operator=>"Cincinnati Bell Wireless", :status=>"Operational"}, ["310", "430"]=>{:mobile_country_code=>"310", :mobile_network_code=>"430", :bands=>["GSM 1900"], :notes=>"Also known as \"General Communications, Inc.\"", :operator=>"Alaska Digitel", :status=>"Operational"}, ["310", "440"]=>{:mobile_country_code=>"310", :mobile_network_code=>"440", :bands=>["GSM 1900"], :brand=>"Cellular One", :operator=>"", :status=>"Unknown"}, ["310", "450"]=>{:mobile_country_code=>"310", :mobile_network_code=>"450", :bands=>["GSM 850", "GSM 1900"], :brand=>"Viaero", :notes=>"Formerly CellOne NE Colorado", :operator=>"Viaero Wireless", :status=>"Operational"}, ["310", "460"]=>{:mobile_country_code=>"310", :mobile_network_code=>"460", :bands=>["GSM 1900"], :brand=>"Simmetry", :operator=>"TMP Corporation", :status=>"Operational"}, ["310", "470"]=>{:mobile_country_code=>"310", :mobile_network_code=>"470", :bands=>["CDMA2000 1900"], :brand=>"nTelos", :notes=>"Note that 310-470 is presented on this page as also being used by Guamcell", :operator=>"", :status=>"Operational"}, ["310", "480"]=>{:mobile_country_code=>"310", :mobile_network_code=>"480", :bands=>["Unknown"], :operator=>"Choice Phone", :status=>"Operational"}, ["310", "490"]=>{:mobile_country_code=>"310", :mobile_network_code=>"490", :bands=>["GSM 850", "GSM 1900"], :brand=>"T-Mobile", :notes=>"Formerly SunCom", :operator=>"", :status=>"Operational"}, ["310", "500"]=>{:mobile_country_code=>"310", :mobile_network_code=>"500", :bands=>["CDMA2000 800", "CDMA2000 1900"], :brand=>"Alltel", :notes=>"EV-DO", :operator=>"", :status=>"Operational"}, ["310", "510"]=>{:mobile_country_code=>"310", :mobile_network_code=>"510", :bands=>["Unknown"], :brand=>"Airtel", :notes=>"Formerly PSC Wireless", :operator=>"Airtel Wireless", :status=>"Operational"}, ["310", "520"]=>{:mobile_country_code=>"310", :mobile_network_code=>"520", :bands=>["Unknown"], :brand=>"VeriSign", :operator=>"", :status=>"Unknown"}, ["310", "530"]=>{:mobile_country_code=>"310", :mobile_network_code=>"530", :bands=>["Unknown"], :operator=>"West Virginia Wireless", :status=>"Operational"}, ["310", "540"]=>{:mobile_country_code=>"310", :mobile_network_code=>"540", :bands=>["GSM 1900"], :brand=>"Oklahoma Western", :operator=>"Oklahoma Western Telephone Company", :status=>"Operational"}, ["310", "560"]=>{:mobile_country_code=>"310", :mobile_network_code=>"560", :bands=>["GSM 850"], :brand=>"AT&T", :notes=>"Formerly Cellular One DCS, Dobson", :operator=>"AT&T Mobility", :status=>"Operational"}, ["310", "570"]=>{:mobile_country_code=>"310", :mobile_network_code=>"570", :bands=>["GSM 1900"], :brand=>"Cellular One", :notes=>"Formerly Chinook Wireless", :operator=>"MTPCS, LLC", :status=>"Operational"}, ["310", "580"]=>{:mobile_country_code=>"310", :mobile_network_code=>"580", :bands=>["Unknown"], :brand=>"T-Mobile", :notes=>"Formerly PCS One", :operator=>"", :status=>"Not operational"}, ["310", "59"]=>{:mobile_country_code=>"310", :mobile_network_code=>"59", :bands=>["CDMA"], :brand=>"Cellular One", :notes=>"uses USA MCC", :operator=>"", :status=>"Operational"}, ["310", "590"]=>{:mobile_country_code=>"310", :mobile_network_code=>"590", :bands=>["GSM 850", "GSM 1900"], :brand=>"Alltel", :notes=>"GSM roamer network only", :operator=>"Alltel Communications Inc", :status=>"Operational"}, ["310", "610"]=>{:mobile_country_code=>"310", :mobile_network_code=>"610", :bands=>["GSM 1900"], :brand=>"Epic Touch", :operator=>"Elkhart Telephone Co.", :status=>"Operational"}, ["310", "620"]=>{:mobile_country_code=>"310", :mobile_network_code=>"620", :bands=>["GSM 1900"], :brand=>"Coleman County Telecom", :operator=>"Coleman County Telecommunications", :status=>"Operational"}, ["310", "630"]=>{:mobile_country_code=>"310", :mobile_network_code=>"630", :bands=>["GSM 1900"], :brand=>"AmeriLink PCS", :operator=>"Choice Wireless", :status=>"Operational"}, ["310", "640"]=>{:mobile_country_code=>"310", :mobile_network_code=>"640", :bands=>["GSM 1900"], :brand=>"AirFire", :notes=>"formerly Einstein PCS; shut down 02-Sep-2014 [155]", :operator=>"Airadigm Communications", :status=>"Not Operational"}, ["310", "650"]=>{:mobile_country_code=>"310", :mobile_network_code=>"650", :bands=>["GSM 850"], :brand=>"Jasper", :operator=>"Jasper Wireless, inc", :status=>"Operational"}, ["310", "660"]=>{:mobile_country_code=>"310", :mobile_network_code=>"660", :bands=>["GSM 1900"], :brand=>"T-Mobile", :notes=>"Formerly DigiPhone PCS / DigiPH", :operator=>"", :status=>"Not operational"}, ["310", "670"]=>{:mobile_country_code=>"310", :mobile_network_code=>"670", :bands=>["Unknown"], :brand=>"Northstar", :operator=>"", :status=>"Operational"}, ["310", "680"]=>{:mobile_country_code=>"310", :mobile_network_code=>"680", :bands=>["GSM 850", "GSM 1900"], :brand=>"AT&T", :notes=>"Formerly Cellular One DCS, NPI Wireless", :operator=>"AT&T Mobility", :status=>"Operational"}, ["310", "690"]=>{:mobile_country_code=>"310", :mobile_network_code=>"690", :bands=>["GSM 1900"], :brand=>"Immix", :operator=>"Immix Wireless", :status=>"Operational"}, ["310", "730"]=>{:mobile_country_code=>"310", :mobile_network_code=>"730", :bands=>["Unknown"], :brand=>"SeaMobile", :operator=>"", :status=>"Operational"}, ["310", "740"]=>{:mobile_country_code=>"310", :mobile_network_code=>"740", :bands=>["Unknown"], :brand=>"Convey", :operator=>"Convey Communications Inc.", :status=>"Operational"}, ["310", "750"]=>{:mobile_country_code=>"310", :mobile_network_code=>"750", :bands=>["CDMA2000 850", "CDMA2000 1900", "LTE 700"], :brand=>"Appalachian Wireless", :notes=>"Voice/1XRTT/EVDO/4G LTE in Eastern KY", :operator=>"Appalachian Wireless", :status=>"Operational"}, ["310", "760"]=>{:mobile_country_code=>"310", :mobile_network_code=>"760", :bands=>["Unknown"], :brand=>"Panhandle", :operator=>"Panhandle Telecommunications Systems Inc.", :status=>"Operational"}, ["310", "770"]=>{:mobile_country_code=>"310", :mobile_network_code=>"770", :bands=>["GSM 1900"], :brand=>"i wireless", :operator=>"Iowa Wireless Services", :status=>"Operational"}, ["310", "780"]=>{:mobile_country_code=>"310", :mobile_network_code=>"780", :bands=>["GSM 1900"], :operator=>"Airlink PCS", :status=>"Not operational"}, ["310", "790"]=>{:mobile_country_code=>"310", :mobile_network_code=>"790", :bands=>["GSM 1900"], :brand=>"PinPoint", :operator=>"PinPoint Communications", :status=>"Operational"}, ["310", "800"]=>{:mobile_country_code=>"310", :mobile_network_code=>"800", :bands=>["GSM 1900"], :notes=>"Formerly SOL Communications", :operator=>"T-Mobile", :status=>"Not operational"}, ["310", "830"]=>{:mobile_country_code=>"310", :mobile_network_code=>"830", :bands=>["GSM 850"], :brand=>"Caprock", :operator=>"Caprock Cellular", :status=>"Operational"}, ["310", "840"]=>{:mobile_country_code=>"310", :mobile_network_code=>"840", :bands=>["GSM 1900"], :brand=>"telna Mobile", :notes=>"[citation needed]", :operator=>"Telecom North America Mobile, Inc.", :status=>"Operational"}, ["310", "850"]=>{:mobile_country_code=>"310", :mobile_network_code=>"850", :bands=>["CDMA2000 850", "CDMA2000 1900", "GSM 850", "GSM 1900"], :brand=>"Aeris", :operator=>"Aeris Communications, Inc.", :status=>"Operational"}, ["310", "870"]=>{:mobile_country_code=>"310", :mobile_network_code=>"870", :bands=>["GSM 850"], :brand=>"PACE", :operator=>"Kaplan Telephone Company", :status=>"Operational"}, ["310", "880"]=>{:mobile_country_code=>"310", :mobile_network_code=>"880", :bands=>["GSM 850"], :brand=>"DTC Wireless", :operator=>"Advantage Cellular Systems", :status=>"Operational"}, ["310", "890"]=>{:mobile_country_code=>"310", :mobile_network_code=>"890", :bands=>["GSM 850", "GSM 1900"], :brand=>"Unicel", :notes=>"Former Unicel markets split between AT&T Mobility and Verizon Wireless.", :operator=>"Rural Cellular Corporation", :status=>"Operational"}, ["310", "900"]=>{:mobile_country_code=>"310", :mobile_network_code=>"900", :bands=>["CDMA2000 850", "CDMA2000 1900"], :brand=>"Mid-Rivers Wireless", :notes=>"Assigned 3/1/2010", :operator=>"Mid-Rivers Communications", :status=>"Operational"}, ["310", "910"]=>{:mobile_country_code=>"310", :mobile_network_code=>"910", :bands=>["GSM 850"], :brand=>"First Cellular", :operator=>"First Cellular of Southern Illinois", :status=>"Operational"}, ["310", "940"]=>{:mobile_country_code=>"310", :mobile_network_code=>"940", :bands=>["Unknown"], :operator=>"Iris Wireless LLC", :status=>"Operational"}, ["310", "950"]=>{:mobile_country_code=>"310", :mobile_network_code=>"950", :bands=>["GSM 850"], :brand=>"XIT Wireless", :operator=>"Texas RSA 1 dba XIT Cellular", :status=>"Operational"}, ["310", "960"]=>{:mobile_country_code=>"310", :mobile_network_code=>"960", :bands=>["Unknown"], :brand=>"Plateau Wireless", :operator=>"", :status=>"Operational"}, ["310", "970"]=>{:mobile_country_code=>"310", :mobile_network_code=>"970", :bands=>["Satellite"], :brand=>"Telemedicine Wireless", :operator=>"Telemedicine Wireless (USA) Telecommunications,Inc", :status=>"Operational"}, ["310", "980"]=>{:mobile_country_code=>"310", :mobile_network_code=>"980", :bands=>["GSM 1900"], :brand=>"Akiba Telecommunications, Inc.", :operator=>"AT&T (Antarctica, South Pole) Worldwide, Inc.", :status=>"Operational"}, ["310", "990"]=>{:mobile_country_code=>"310", :mobile_network_code=>"990", :bands=>["Unknown"], :brand=>"AT&T", :operator=>"AT&T Mobility", :status=>"Not operational"}, ["311", "000"]=>{:mobile_country_code=>"311", :mobile_network_code=>"000", :bands=>["CDMA2000 850", "CDMA2000 1900"], :operator=>"Mid-Tex Cellular", :status=>"Operational"}, ["311", "010"]=>{:mobile_country_code=>"311", :mobile_network_code=>"010", :bands=>["GSM 1900"], :brand=>"Chariton Valley", :operator=>"Chariton Valley Communications", :status=>"Operational"}, ["311", "012"]=>{:mobile_country_code=>"311", :mobile_network_code=>"012", :bands=>["CDMA2000 850", "CDMA2000 1900"], :brand=>"Verizon", :operator=>"Verizon Wireless", :status=>"Operational"}, ["311", "020"]=>{:mobile_country_code=>"311", :mobile_network_code=>"020", :bands=>["GSM 850"], :operator=>"Missouri RSA 5 Partnership", :status=>"Operational"}, ["311", "030"]=>{:mobile_country_code=>"311", :mobile_network_code=>"030", :bands=>["GSM 1900"], :operator=>"Indigo Wireless", :status=>"Operational"}, ["311", "040"]=>{:mobile_country_code=>"311", :mobile_network_code=>"040", :bands=>["GSM 850", "GSM 1900"], :operator=>"Commnet Wireless", :status=>"Operational"}, ["311", "050"]=>{:mobile_country_code=>"311", :mobile_network_code=>"050", :bands=>["GSM 850", "GSM 1900"], :operator=>"Wikes Cellular", :status=>"Operational"}, ["311", "060"]=>{:mobile_country_code=>"311", :mobile_network_code=>"060", :bands=>["GSM 850", "GSM 1900"], :brand=>"Farmers Cellular", :operator=>"Farmers Cellular Telephone", :status=>"Operational"}, ["311", "070"]=>{:mobile_country_code=>"311", :mobile_network_code=>"070", :bands=>["GSM 850"], :brand=>"Easterbrooke", :operator=>"Easterbrooke Cellular Corporation", :status=>"Operational"}, ["311", "080"]=>{:mobile_country_code=>"311", :mobile_network_code=>"080", :bands=>["GSM 850"], :brand=>"Pine Cellular", :operator=>"Pine Telephone Company", :status=>"Operational"}, ["311", "090"]=>{:mobile_country_code=>"311", :mobile_network_code=>"090", :bands=>["GSM 1900"], :brand=>"Long Lines Wireless", :operator=>"Long Lines Wireless LLC", :status=>"Operational"}, ["311", "100"]=>{:mobile_country_code=>"311", :mobile_network_code=>"100", :bands=>["GSM 1900"], :operator=>"High Plains Wireless", :status=>"Operational"}, ["311", "110"]=>{:mobile_country_code=>"311", :mobile_network_code=>"110", :bands=>["GSM 1900"], :operator=>"High Plains Wireless", :status=>"Operational"}, ["311", "120"]=>{:mobile_country_code=>"311", :mobile_network_code=>"120", :bands=>["Unknown"], :operator=>"Choice Phone", :status=>"Operational"}, ["311", "130"]=>{:mobile_country_code=>"311", :mobile_network_code=>"130", :bands=>["GSM 850"], :operator=>"Cell One Amarillo", :status=>"Operational"}, ["311", "140"]=>{:mobile_country_code=>"311", :mobile_network_code=>"140", :bands=>["Unknown"], :brand=>"Sprocket", :operator=>"MBO Wireless", :status=>"Operational"}, ["311", "150"]=>{:mobile_country_code=>"311", :mobile_network_code=>"150", :bands=>["GSM 850"], :operator=>"Wilkes Cellular", :status=>"Operational"}, ["311", "160"]=>{:mobile_country_code=>"311", :mobile_network_code=>"160", :bands=>["Unknown"], :operator=>"Endless Mountains Wireless", :status=>"Operational"}, ["311", "170"]=>{:mobile_country_code=>"311", :mobile_network_code=>"170", :bands=>["GSM 850"], :brand=>"PetroCom", :notes=>"Maritime", :operator=>"Broadpoint Inc", :status=>"Operational"}, ["311", "180"]=>{:mobile_country_code=>"311", :mobile_network_code=>"180", :bands=>["GSM 850", "UMTS 850", "UMTS 1900"], :operator=>"Cingular Wireless", :status=>"Not operational"}, ["311", "190"]=>{:mobile_country_code=>"311", :mobile_network_code=>"190", :bands=>["Unknown"], :operator=>"Cellular Properties", :status=>"Unknown"}, ["311", "210"]=>{:mobile_country_code=>"311", :mobile_network_code=>"210", :bands=>["GSM 1900", "UMTS 2100"], :notes=>"Formerly Farmers Cellular", :operator=>"Emery Telcom Wireless", :status=>"Operational"}, ["311", "220"]=>{:mobile_country_code=>"311", :mobile_network_code=>"220", :bands=>[], :operator=>"U.S. Cellular", :status=>"Operational"}, ["311", "230"]=>{:mobile_country_code=>"311", :mobile_network_code=>"230", :bands=>["Unknown"], :notes=>"Formerly Cellular South", :operator=>"C Spire Wireless", :status=>"Operational"}, ["311", "250"]=>{:mobile_country_code=>"311", :mobile_network_code=>"250", :bands=>["GSM 1900"], :brand=>"i CAN_GSM", :notes=>"Planned", :operator=>"Wave Runner LLC", :status=>"Not operational"}, ["311", "330"]=>{:mobile_country_code=>"311", :mobile_network_code=>"330", :bands=>["Unknown"], :brand=>"Bug Tussel Wireless", :operator=>"Bug Tussel Wireless", :status=>"Operational"}, ["311", "360"]=>{:mobile_country_code=>"311", :mobile_network_code=>"360", :bands=>["UMTS AWS"], :notes=>"shut down 30-Apr-2013 [156]", :operator=>"Stelera Wireless", :status=>"Not Operational"}, ["311", "480"]=>{:mobile_country_code=>"311", :mobile_network_code=>"480", :bands=>["LTE 700\u00A0MHz C Block (4G LTE Network)"], :brand=>"Verizon", :operator=>"Verizon Wireless", :status=>"Operational"}, ["311", "481"]=>{:mobile_country_code=>"311", :mobile_network_code=>"481", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "482"]=>{:mobile_country_code=>"311", :mobile_network_code=>"482", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "483"]=>{:mobile_country_code=>"311", :mobile_network_code=>"483", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "484"]=>{:mobile_country_code=>"311", :mobile_network_code=>"484", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "485"]=>{:mobile_country_code=>"311", :mobile_network_code=>"485", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "486"]=>{:mobile_country_code=>"311", :mobile_network_code=>"486", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "487"]=>{:mobile_country_code=>"311", :mobile_network_code=>"487", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "488"]=>{:mobile_country_code=>"311", :mobile_network_code=>"488", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "489"]=>{:mobile_country_code=>"311", :mobile_network_code=>"489", :bands=>["LTE 700"], :brand=>"Verizon", :notes=>"C Block for future use.", :operator=>"Verizon Wireless", :status=>"Not Operational"}, ["311", "490"]=>{:mobile_country_code=>"311", :mobile_network_code=>"490", :bands=>["TDD-LTE (Band 41)"], :brand=>"Sprint Corporation", :notes=>"in Columbus, Ohio, USA", :operator=>"Sprint", :status=>"Operational"}, ["311", "530"]=>{:mobile_country_code=>"311", :mobile_network_code=>"530", :bands=>["GSM 1900", "LTE 1900"], :operator=>"NewCore Wireless", :status=>"Operational"}, ["311", "570"]=>{:mobile_country_code=>"311", :mobile_network_code=>"570", :bands=>["UMTS AWS", "LTE AWS"], :notes=>"shut down 25-July-2014 [157]", :operator=>"BendBroadband", :status=>"Not Operational"}, ["311", "580"]=>{:mobile_country_code=>"311", :mobile_network_code=>"580", :bands=>[], :operator=>"U.S. Cellular", :status=>"Operational"}, ["311", "650"]=>{:mobile_country_code=>"311", :mobile_network_code=>"650", :bands=>["CDMA", "LTE"], :operator=>"United Wireless", :status=>"Operational"}, ["311", "660"]=>{:mobile_country_code=>"311", :mobile_network_code=>"660", :bands=>["CDMA2000 1900", "CDMA 2000 LTE", "AWS 1700"], :brand=>"metroPCS", :notes=>"1X EV-DO Rev.A in approx. 33% CDMA 1900 Markets. Merged with T-Mobile USA forming T-Mobile US.", :operator=>"metroPCS", :status=>"Operational"}, ["311", "810"]=>{:mobile_country_code=>"311", :mobile_network_code=>"810", :bands=>["CDMA", "LTE 700"], :operator=>"Bluegrass Wireless", :status=>"Operational"}, ["311", "870"]=>{:mobile_country_code=>"311", :mobile_network_code=>"870", :bands=>["Unknown"], :brand=>"Boost", :operator=>"Boost Mobile", :status=>"Operational"}, ["311", "950"]=>{:mobile_country_code=>"311", :mobile_network_code=>"950", :bands=>["LTE"], :brand=>"ETC", :operator=>"Enhanced Telecommmunications Corp.", :status=>"Operational"}, ["311", "960"]=>{:mobile_country_code=>"311", :mobile_network_code=>"960", :bands=>["MVNO"], :brand=>"Lycamobile", :notes=>"uses T-Mobile", :operator=>"Lyca Technology Solutions", :status=>"Operational"}, ["311", "970"]=>{:mobile_country_code=>"311", :mobile_network_code=>"970", :bands=>["LTE AWS 1700"], :brand=>"Big River Broadband", :notes=>"Utilizing 20\u00A0MHz in A block", :operator=>"Big River Broadband, LLC", :status=>"Operational"}, ["312", "050"]=>{:mobile_country_code=>"312", :mobile_network_code=>"050", :bands=>["LTE"], :operator=>"Fuego Wireless", :status=>"Operational"}, ["312", "070"]=>{:mobile_country_code=>"312", :mobile_network_code=>"070", :bands=>["LTE"], :operator=>"Adams Networks", :status=>"Operational"}, ["312", "590"]=>{:mobile_country_code=>"312", :mobile_network_code=>"590", :bands=>["Band 7 FDD LTE 2600\u00A0MHz"], :brand=>"NMU", :notes=>"EBS Band", :operator=>"Northern Michigan University", :status=>"Operational"}, ["313", "100"]=>{:mobile_country_code=>"313", :mobile_network_code=>"100", :bands=>["700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block", :operator=>"", :status=>"Unknown"}, ["313", "101"]=>{:mobile_country_code=>"313", :mobile_network_code=>"101", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "102"]=>{:mobile_country_code=>"313", :mobile_network_code=>"102", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "103"]=>{:mobile_country_code=>"313", :mobile_network_code=>"103", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "104"]=>{:mobile_country_code=>"313", :mobile_network_code=>"104", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "105"]=>{:mobile_country_code=>"313", :mobile_network_code=>"105", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "106"]=>{:mobile_country_code=>"313", :mobile_network_code=>"106", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "107"]=>{:mobile_country_code=>"313", :mobile_network_code=>"107", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "108"]=>{:mobile_country_code=>"313", :mobile_network_code=>"108", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "109"]=>{:mobile_country_code=>"313", :mobile_network_code=>"109", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "110"]=>{:mobile_country_code=>"313", :mobile_network_code=>"110", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "111"]=>{:mobile_country_code=>"313", :mobile_network_code=>"111", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "112"]=>{:mobile_country_code=>"313", :mobile_network_code=>"112", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "113"]=>{:mobile_country_code=>"313", :mobile_network_code=>"113", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "114"]=>{:mobile_country_code=>"313", :mobile_network_code=>"114", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "115"]=>{:mobile_country_code=>"313", :mobile_network_code=>"115", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "116"]=>{:mobile_country_code=>"313", :mobile_network_code=>"116", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "117"]=>{:mobile_country_code=>"313", :mobile_network_code=>"117", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "118"]=>{:mobile_country_code=>"313", :mobile_network_code=>"118", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "119"]=>{:mobile_country_code=>"313", :mobile_network_code=>"119", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "120"]=>{:mobile_country_code=>"313", :mobile_network_code=>"120", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "121"]=>{:mobile_country_code=>"313", :mobile_network_code=>"121", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "122"]=>{:mobile_country_code=>"313", :mobile_network_code=>"122", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "123"]=>{:mobile_country_code=>"313", :mobile_network_code=>"123", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "124"]=>{:mobile_country_code=>"313", :mobile_network_code=>"124", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "125"]=>{:mobile_country_code=>"313", :mobile_network_code=>"125", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "126"]=>{:mobile_country_code=>"313", :mobile_network_code=>"126", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "127"]=>{:mobile_country_code=>"313", :mobile_network_code=>"127", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "128"]=>{:mobile_country_code=>"313", :mobile_network_code=>"128", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "129"]=>{:mobile_country_code=>"313", :mobile_network_code=>"129", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "130"]=>{:mobile_country_code=>"313", :mobile_network_code=>"130", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "131"]=>{:mobile_country_code=>"313", :mobile_network_code=>"131", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "132"]=>{:mobile_country_code=>"313", :mobile_network_code=>"132", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "133"]=>{:mobile_country_code=>"313", :mobile_network_code=>"133", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "134"]=>{:mobile_country_code=>"313", :mobile_network_code=>"134", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "135"]=>{:mobile_country_code=>"313", :mobile_network_code=>"135", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "136"]=>{:mobile_country_code=>"313", :mobile_network_code=>"136", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "137"]=>{:mobile_country_code=>"313", :mobile_network_code=>"137", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "138"]=>{:mobile_country_code=>"313", :mobile_network_code=>"138", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "139"]=>{:mobile_country_code=>"313", :mobile_network_code=>"139", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "140"]=>{:mobile_country_code=>"313", :mobile_network_code=>"140", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "141"]=>{:mobile_country_code=>"313", :mobile_network_code=>"141", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "142"]=>{:mobile_country_code=>"313", :mobile_network_code=>"142", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "143"]=>{:mobile_country_code=>"313", :mobile_network_code=>"143", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "144"]=>{:mobile_country_code=>"313", :mobile_network_code=>"144", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "145"]=>{:mobile_country_code=>"313", :mobile_network_code=>"145", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "146"]=>{:mobile_country_code=>"313", :mobile_network_code=>"146", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "147"]=>{:mobile_country_code=>"313", :mobile_network_code=>"147", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "148"]=>{:mobile_country_code=>"313", :mobile_network_code=>"148", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "149"]=>{:mobile_country_code=>"313", :mobile_network_code=>"149", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "150"]=>{:mobile_country_code=>"313", :mobile_network_code=>"150", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "151"]=>{:mobile_country_code=>"313", :mobile_network_code=>"151", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "152"]=>{:mobile_country_code=>"313", :mobile_network_code=>"152", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "153"]=>{:mobile_country_code=>"313", :mobile_network_code=>"153", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "154"]=>{:mobile_country_code=>"313", :mobile_network_code=>"154", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "155"]=>{:mobile_country_code=>"313", :mobile_network_code=>"155", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "156"]=>{:mobile_country_code=>"313", :mobile_network_code=>"156", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "157"]=>{:mobile_country_code=>"313", :mobile_network_code=>"157", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "158"]=>{:mobile_country_code=>"313", :mobile_network_code=>"158", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "159"]=>{:mobile_country_code=>"313", :mobile_network_code=>"159", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "160"]=>{:mobile_country_code=>"313", :mobile_network_code=>"160", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "161"]=>{:mobile_country_code=>"313", :mobile_network_code=>"161", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "162"]=>{:mobile_country_code=>"313", :mobile_network_code=>"162", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "163"]=>{:mobile_country_code=>"313", :mobile_network_code=>"163", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "164"]=>{:mobile_country_code=>"313", :mobile_network_code=>"164", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "165"]=>{:mobile_country_code=>"313", :mobile_network_code=>"165", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "166"]=>{:mobile_country_code=>"313", :mobile_network_code=>"166", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "167"]=>{:mobile_country_code=>"313", :mobile_network_code=>"167", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "168"]=>{:mobile_country_code=>"313", :mobile_network_code=>"168", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "169"]=>{:mobile_country_code=>"313", :mobile_network_code=>"169", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "170"]=>{:mobile_country_code=>"313", :mobile_network_code=>"170", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "171"]=>{:mobile_country_code=>"313", :mobile_network_code=>"171", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "172"]=>{:mobile_country_code=>"313", :mobile_network_code=>"172", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "173"]=>{:mobile_country_code=>"313", :mobile_network_code=>"173", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "174"]=>{:mobile_country_code=>"313", :mobile_network_code=>"174", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "175"]=>{:mobile_country_code=>"313", :mobile_network_code=>"175", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "176"]=>{:mobile_country_code=>"313", :mobile_network_code=>"176", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "177"]=>{:mobile_country_code=>"313", :mobile_network_code=>"177", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "178"]=>{:mobile_country_code=>"313", :mobile_network_code=>"178", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "179"]=>{:mobile_country_code=>"313", :mobile_network_code=>"179", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "180"]=>{:mobile_country_code=>"313", :mobile_network_code=>"180", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "181"]=>{:mobile_country_code=>"313", :mobile_network_code=>"181", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "182"]=>{:mobile_country_code=>"313", :mobile_network_code=>"182", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "183"]=>{:mobile_country_code=>"313", :mobile_network_code=>"183", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "184"]=>{:mobile_country_code=>"313", :mobile_network_code=>"184", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "185"]=>{:mobile_country_code=>"313", :mobile_network_code=>"185", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "186"]=>{:mobile_country_code=>"313", :mobile_network_code=>"186", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "187"]=>{:mobile_country_code=>"313", :mobile_network_code=>"187", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "188"]=>{:mobile_country_code=>"313", :mobile_network_code=>"188", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "189"]=>{:mobile_country_code=>"313", :mobile_network_code=>"189", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "190"]=>{:mobile_country_code=>"313", :mobile_network_code=>"190", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "191"]=>{:mobile_country_code=>"313", :mobile_network_code=>"191", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "192"]=>{:mobile_country_code=>"313", :mobile_network_code=>"192", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "193"]=>{:mobile_country_code=>"313", :mobile_network_code=>"193", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "194"]=>{:mobile_country_code=>"313", :mobile_network_code=>"194", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "195"]=>{:mobile_country_code=>"313", :mobile_network_code=>"195", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "196"]=>{:mobile_country_code=>"313", :mobile_network_code=>"196", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "197"]=>{:mobile_country_code=>"313", :mobile_network_code=>"197", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "198"]=>{:mobile_country_code=>"313", :mobile_network_code=>"198", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["313", "199"]=>{:mobile_country_code=>"313", :mobile_network_code=>"199", :bands=>["Reserved for 700\u00A0MHz Public Safety Broadband"], :brand=>"700\u00A0MHz Public Safety Broadband", :notes=>"D Block for future use", :operator=>"", :status=>"Future"}, ["316", "010"]=>{:mobile_country_code=>"316", :mobile_network_code=>"010", :bands=>["iDEN 800"], :brand=>"Nextel", :notes=>"Merged with Sprint forming Sprint Nextel; iDEN network shut down June 2013", :operator=>"Nextel Communications", :status=>"Not Operational"}, ["316", "011"]=>{:mobile_country_code=>"316", :mobile_network_code=>"011", :bands=>["iDEN 800"], :operator=>"Southern Communications Services", :status=>"Operational"}, ["330", "00"]=>{:mobile_country_code=>"330", :mobile_network_code=>"00", :bands=>["PCS 1900"], :brand=>"Open Mobile", :operator=>"PR Wireless", :status=>"Operational"}, ["330", "110"]=>{:mobile_country_code=>"330", :mobile_network_code=>"110", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "LTE 700"], :brand=>"Claro Puerto Rico", :operator=>"Am\u00E9rica M\u00F3vil", :status=>"Operational"}, ["330", "120"]=>{:mobile_country_code=>"330", :mobile_network_code=>"120", :bands=>["LTE 700"], :brand=>"tmobile", :operator=>"PR Wireless", :status=>"Operational"}, ["334", "001"]=>{:mobile_country_code=>"334", :mobile_network_code=>"001", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Comunicaciones Digitales Del Norte, S.A. de C.V.", :status=>"Unknown"}, ["334", "010"]=>{:mobile_country_code=>"334", :mobile_network_code=>"010", :bands=>["iDEN 800"], :brand=>"Nextel", :operator=>"Nextel M\u00E9xico", :status=>"Operational"}, ["334", "020"]=>{:mobile_country_code=>"334", :mobile_network_code=>"020", :bands=>["TDMA 850", "GSM 1900", "UMTS 850", "LTE 1700"], :brand=>"Telcel", :operator=>"Am\u00E9rica M\u00F3vil", :status=>"Operational"}, ["334", "030"]=>{:mobile_country_code=>"334", :mobile_network_code=>"030", :bands=>["CDMA2000 800", "CDMA2000 1900", "GSM 1900", "UMTS 850"], :brand=>"movistar", :notes=>"formerly Pegaso Comunicaciones y Sistemas; used by MVNO Virgin Mobile", :operator=>"Movistar - Telef\u00F3nica Moviles", :status=>"Operational"}, ["334", "040"]=>{:mobile_country_code=>"334", :mobile_network_code=>"040", :bands=>["CDMA2000 800", "CDMA2000 1900"], :brand=>"Iusacell / Unefon", :operator=>"Iusacell / Unefon", :status=>"Operational"}, ["334", "050"]=>{:mobile_country_code=>"334", :mobile_network_code=>"050", :bands=>["GSM 850", "GSM 1900"], :brand=>"Iusacell", :operator=>"Iusacell", :status=>"Operational"}, ["334", "060"]=>{:mobile_country_code=>"334", :mobile_network_code=>"060", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Servicios de Acceso Inalambrico, S.A. de C.V.", :status=>"Unknown"}, ["334", "066"]=>{:mobile_country_code=>"334", :mobile_network_code=>"066", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Telefonos de M\u00E9xico, S.A.B. de C.V.", :status=>"Unknown"}, ["334", "070"]=>{:mobile_country_code=>"334", :mobile_network_code=>"070", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Unefon", :status=>"Unknown"}, ["334", "080"]=>{:mobile_country_code=>"334", :mobile_network_code=>"080", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Unefon", :status=>"Unknown"}, ["334", "090"]=>{:mobile_country_code=>"334", :mobile_network_code=>"090", :bands=>["UMTS 1700"], :brand=>"Nextel", :operator=>"Nextel M\u00E9xico", :status=>"Operational"}, ["338", "020"]=>{:mobile_country_code=>"338", :mobile_network_code=>"020", :bands=>["Unknown"], :brand=>"LIME", :operator=>"LIME (Cable & Wireless)", :status=>"Not Operational"}, ["338", "050"]=>{:mobile_country_code=>"338", :mobile_network_code=>"050", :bands=>["GSM 900", "GSM 1800", "GSM 1900"], :brand=>"Digicel", :operator=>"Digicel (Turks & Caicos) Limited", :status=>"Operational"}, ["338", "110"]=>{:mobile_country_code=>"338", :mobile_network_code=>"110", :bands=>["Unknown"], :brand=>"LIME", :notes=>"[4]", :operator=>"LIME (Cable & Wireless)", :status=>"Unknown"}, ["338", "180"]=>{:mobile_country_code=>"338", :mobile_network_code=>"180", :bands=>["GSM 850", "GSM 1900", "UMTS 850"], :brand=>"LIME", :operator=>"LIME (Cable & Wireless)", :status=>"Operational"}, ["340", "01"]=>{:mobile_country_code=>"340", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Orange Cara\u00EFbe Mobiles", :status=>"Operational"}, ["340", "02"]=>{:mobile_country_code=>"340", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Only", :operator=>"Outremer Telecom", :status=>"Operational"}, ["340", "03"]=>{:mobile_country_code=>"340", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Telcell", :operator=>"Saint Martin et Saint Barthelemy Telcell Sarl", :status=>"Operational"}, ["340", "08"]=>{:mobile_country_code=>"340", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800"], :brand=>"Dauphin", :operator=>"Dauphin Telecom", :status=>"Operational"}, ["340", "10"]=>{:mobile_country_code=>"340", :mobile_network_code=>"10", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Guadeloupe T\u00E9l\u00E9phone Mobile", :status=>"Unknown"}, ["340", "11"]=>{:mobile_country_code=>"340", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Guyane T\u00E9l\u00E9phone Mobile", :status=>"Unknown"}, ["340", "12"]=>{:mobile_country_code=>"340", :mobile_network_code=>"12", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Martinique T\u00E9l\u00E9phone Mobile", :status=>"Unknown"}, ["340", "20"]=>{:mobile_country_code=>"340", :mobile_network_code=>"20", :bands=>["GSM 900"], :brand=>"Digicel", :notes=>"Former Bouygues Telecom Cara\u00EFbes", :operator=>"DIGICEL Antilles Fran\u00E7aise Guyane", :status=>"Operational"}, ["342", "600"]=>{:mobile_country_code=>"342", :mobile_network_code=>"600", :bands=>["GSM 1900", "UMTS"], :brand=>"LIME", :notes=>"[1]", :operator=>"LIME (formerly known as Cable & Wireless)", :status=>"Operational"}, ["342", "750"]=>{:mobile_country_code=>"342", :mobile_network_code=>"750", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Digicel", :notes=>"[1][25]", :operator=>"Digicel (Barbados) Limited", :status=>"Operational"}, ["342", "820"]=>{:mobile_country_code=>"342", :mobile_network_code=>"820", :bands=>["Unknown"], :operator=>"Sunbeach Communications", :status=>"Reserved"}, ["344", "030"]=>{:mobile_country_code=>"344", :mobile_network_code=>"030", :bands=>["GSM 1900"], :brand=>"APUA", :operator=>"Antigua Public Utilities Authority", :status=>"Operational"}, ["344", "050"]=>{:mobile_country_code=>"344", :mobile_network_code=>"050", :bands=>["GSM 900", "GSM 1900", "UMTS 850", "LTE 700"], :brand=>"Digicel", :notes=>"LTE band 17 [1][12]", :operator=>"Antigua Wireless Ventures Limited", :status=>"Operational"}, ["344", "920"]=>{:mobile_country_code=>"344", :mobile_network_code=>"920", :bands=>["GSM 850", "GSM 1800", "GSM 1900"], :brand=>"LIME", :operator=>"Cable & Wireless Caribbean Cellular (Antigua) Limited", :status=>"Operational"}, ["344", "930"]=>{:mobile_country_code=>"344", :mobile_network_code=>"930", :bands=>["Unknown"], :notes=>"[4]", :operator=>"AT&T Wireless", :status=>"Unknown"}, ["346", "050"]=>{:mobile_country_code=>"346", :mobile_network_code=>"050", :bands=>["GSM 900", "GSM 1800", "LTE 1800"], :brand=>"Digicel", :notes=>"[7]", :operator=>"Digicel Cayman Ltd.", :status=>"Operational"}, ["346", "140"]=>{:mobile_country_code=>"346", :mobile_network_code=>"140", :bands=>["GSM 850", "GSM 1900"], :brand=>"LIME", :operator=>"Cable & Wireless (Cayman Islands) Limited", :status=>"Operational"}, ["348", "170"]=>{:mobile_country_code=>"348", :mobile_network_code=>"170", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900"], :brand=>"LIME", :notes=>"[38]", :operator=>"Cable & Wireless", :status=>"Operational"}, ["348", "370"]=>{:mobile_country_code=>"348", :mobile_network_code=>"370", :bands=>["Unknown"], :notes=>"[4]", :operator=>"BVI Cable TV Ltd", :status=>"Unknown"}, ["348", "570"]=>{:mobile_country_code=>"348", :mobile_network_code=>"570", :bands=>["GSM 900", "GSM 1900"], :brand=>"CCT Boatphone", :operator=>"Caribbean Cellular Telephone", :status=>"Operational"}, ["348", "770"]=>{:mobile_country_code=>"348", :mobile_network_code=>"770", :bands=>["GSM 1800", "GSM 1900", "UMTS"], :brand=>"Digicel", :notes=>"[1][39]", :operator=>"Digicel (BVI) Limited", :status=>"Operational"}, ["350", "00"]=>{:mobile_country_code=>"350", :mobile_network_code=>"00", :bands=>["GSM 1900", "UMTS 850"], :brand=>"CellOne", :notes=>"[1][31]", :operator=>"Bermuda Digital Communications Ltd.", :status=>"Operational"}, ["350", "01"]=>{:mobile_country_code=>"350", :mobile_network_code=>"01", :bands=>["GSM 1900"], :brand=>"Digicel Bermuda", :operator=>"Telecommunications (Bermuda & West Indies) Ltd", :status=>"Reserved"}, ["350", "02"]=>{:mobile_country_code=>"350", :mobile_network_code=>"02", :bands=>["GSM 1900", "UMTS"], :brand=>"Mobility", :notes=>"[1]", :operator=>"M3 Wireless", :status=>"Operational"}, ["352", "030"]=>{:mobile_country_code=>"352", :mobile_network_code=>"030", :bands=>["GSM 900", "GSM 1800"], :brand=>"Digicel", :operator=>"Digicel Grenada Ltd.", :status=>"Operational"}, ["352", "110"]=>{:mobile_country_code=>"352", :mobile_network_code=>"110", :bands=>["GSM 850"], :brand=>"Cable & Wireless", :operator=>"Cable & Wireless Grenada Ltd.", :status=>"Operational"}, ["354", "860"]=>{:mobile_country_code=>"354", :mobile_network_code=>"860", :bands=>["GSM 850"], :brand=>"Cable & Wireless", :operator=>"Cable & Wireless", :status=>"Operational"}, ["356", "050"]=>{:mobile_country_code=>"356", :mobile_network_code=>"050", :bands=>["GSM 900", "GSM 1800"], :brand=>"Digicel", :operator=>"Wireless Ventures (St Kitts-Nevis) Limited", :status=>"Operational"}, ["356", "070"]=>{:mobile_country_code=>"356", :mobile_network_code=>"070", :bands=>[], :brand=>"Chippie", :operator=>"UTS", :status=>"Operational"}, ["356", "110"]=>{:mobile_country_code=>"356", :mobile_network_code=>"110", :bands=>["GSM 850", "GSM 1900"], :brand=>"LIME", :operator=>"Cable & Wireless St. Kitts & Nevis Ltd", :status=>"Operational"}, ["358", "050"]=>{:mobile_country_code=>"358", :mobile_network_code=>"050", :bands=>["GSM 900", "GSM 1800", "GSM 1900"], :brand=>"Digicel[citation needed]", :operator=>"", :status=>"Unknown"}, ["358", "110"]=>{:mobile_country_code=>"358", :mobile_network_code=>"110", :bands=>["GSM 850"], :operator=>"Cable & Wireless", :status=>"Unknown"}, ["360", "070"]=>{:mobile_country_code=>"360", :mobile_network_code=>"070", :bands=>["GSM 900", "GSM 1800", "GSM 1900"], :brand=>"Digicel", :operator=>"Digicel (St. Vincent and the Grenadines) Limited", :status=>"Operational"}, ["360", "100"]=>{:mobile_country_code=>"360", :mobile_network_code=>"100", :bands=>["GSM 850"], :brand=>"Cingular Wireless", :operator=>"", :status=>"Unknown"}, ["360", "110"]=>{:mobile_country_code=>"360", :mobile_network_code=>"110", :bands=>["GSM 850"], :brand=>"Lime", :operator=>"Cable & Wireless (St. Vincent & the Grenadines) Ltd", :status=>"Operational"}, ["362", "51"]=>{:mobile_country_code=>"362", :mobile_network_code=>"51", :bands=>["GSM 900"], :brand=>"Telcell", :notes=>"St.Maarten", :operator=>"Telcell N.V.", :status=>"Operational"}, ["362", "69"]=>{:mobile_country_code=>"362", :mobile_network_code=>"69", :bands=>["GSM 900", "GSM 1800"], :brand=>"Digicel", :notes=>"Cura\u00E7ao", :operator=>"Cura\u00E7ao Telecom N.V.", :status=>"Operational"}, ["362", "91"]=>{:mobile_country_code=>"362", :mobile_network_code=>"91", :bands=>["GSM 900"], :brand=>"UTS", :notes=>"Chippie Land", :operator=>"Setel N.V.", :status=>"Operational"}, ["362", "94"]=>{:mobile_country_code=>"362", :mobile_network_code=>"94", :bands=>["TDMA PCS"], :brand=>"Bay\u00F2s", :notes=>"Mobile Solutions", :operator=>"B\u00F2b\u00F2 Frus N.V.", :status=>"Operational"}, ["362", "95"]=>{:mobile_country_code=>"362", :mobile_network_code=>"95", :bands=>["CDMA2000 850"], :brand=>"MIO", :notes=>"[108]", :operator=>"E.O.C.G. Wireless", :status=>"Operational"}, ["362", "\u00A0?"]=>{:mobile_country_code=>"362", :mobile_network_code=>"\u00A0?", :bands=>["GSM 900"], :notes=>"Live from July 2007", :operator=>"Antiliano Por N.V.", :status=>"Operational"}, ["363", "01"]=>{:mobile_country_code=>"363", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "GSM 1900", "UMTS 2100", "LTE 1800", "TDMA 800"], :brand=>"SETAR", :notes=>"[7][14]", :operator=>"Servicio di Telecomunicacion di Aruba", :status=>"Operational"}, ["363", "02"]=>{:mobile_country_code=>"363", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Digicel", :operator=>"Digicel Aruba", :status=>"Operational"}, ["364", "39"]=>{:mobile_country_code=>"364", :mobile_network_code=>"39", :bands=>["GSM 850", "GSM 1900", "UMTS 850"], :brand=>"BaTelCo", :operator=>"The Bahamas Telecommunications Company Ltd", :status=>"Operational"}, ["365", "010"]=>{:mobile_country_code=>"365", :mobile_network_code=>"010", :bands=>["Unknown"], :operator=>"Weblinks Limited", :status=>"Operational"}, ["365", "840"]=>{:mobile_country_code=>"365", :mobile_network_code=>"840", :bands=>["GSM 850", "UMTS"], :brand=>"LIME", :notes=>"[1][10][11]", :operator=>"Cable & Wireless", :status=>"Operational"}, ["366", "020"]=>{:mobile_country_code=>"366", :mobile_network_code=>"020", :bands=>["GSM 900", "GSM 1900"], :brand=>"Digicel", :notes=>"Digicel acquired Orange Dominica in 2009[55]", :operator=>"Digicel Group Limited", :status=>"Operational"}, ["366", "110"]=>{:mobile_country_code=>"366", :mobile_network_code=>"110", :bands=>["GSM 850"], :operator=>"Cable & Wireless", :status=>"Operational"}, ["368", "01"]=>{:mobile_country_code=>"368", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 850"], :brand=>"CUBACEL", :notes=>"GSM 850 only available in limited areas (Havana, Varadero, Trinidad and Cayo Coco)", :operator=>"Empresa de Telecomunicaciones de Cuba, SA", :status=>"Operational"}, ["370", "01"]=>{:mobile_country_code=>"370", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "1900", "UMTS 900", "LTE 1800"], :brand=>"Orange", :operator=>"Orange Dominicana", :status=>"Operational"}, ["370", "02"]=>{:mobile_country_code=>"370", :mobile_network_code=>"02", :bands=>["CDMA 1900", "GSM 850", "GSM 1900", "UMTS 850"], :brand=>"Claro", :operator=>"Compa\u00F1\u00EDa Dominicana de Tel\u00E9fonos, C por", :status=>"Operational"}, ["370", "03"]=>{:mobile_country_code=>"370", :mobile_network_code=>"03", :bands=>["AMPS", "IS-95A 800", "CDMA 1900", "LTE 1900"], :brand=>"Tricom", :notes=>"Comprada por Altice Caribbean 02/11/2013", :operator=>"Tricom S.A.", :status=>"Operational"}, ["370", "04"]=>{:mobile_country_code=>"370", :mobile_network_code=>"04", :bands=>["CDMA 1900", "GSM 1900"], :brand=>"Viva", :notes=>"Former Centennial Dominicana", :operator=>"Trilogy Dominicana, S.A.", :status=>"Operational"}, ["372", "01"]=>{:mobile_country_code=>"372", :mobile_network_code=>"01", :bands=>["GSM 850"], :brand=>"Voila", :operator=>"Communication Cellulaire d'Haiti S.A.", :status=>"Operational"}, ["372", "02"]=>{:mobile_country_code=>"372", :mobile_network_code=>"02", :bands=>["GSM 1800"], :brand=>"Digicel", :operator=>"Unigestion Holding S.A.", :status=>"Operational"}, ["372", "03"]=>{:mobile_country_code=>"372", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Natcom", :operator=>"Telecommunication S.A.", :status=>"Operational"}, ["374", "12"]=>{:mobile_country_code=>"374", :mobile_network_code=>"12", :bands=>["GSM 850", "GSM 1900", "UMTS 1900"], :brand=>"bmobile", :operator=>"TSTT", :status=>"Operational"}, ["374", "130"]=>{:mobile_country_code=>"374", :mobile_network_code=>"130", :bands=>["GSM 850", "GSM 1900", "UMTS 1900"], :brand=>"Digicel", :operator=>"Digicel (Trinidad & Tobago) Limited", :status=>"Operational"}, ["374", "140"]=>{:mobile_country_code=>"374", :mobile_network_code=>"140", :bands=>["Unknown"], :notes=>"[17]", :operator=>"LaqTel Ltd.", :status=>"Unknown"}, ["376", "350"]=>{:mobile_country_code=>"376", :mobile_network_code=>"350", :bands=>["GSM 850"], :brand=>"C&W", :operator=>"Cable & Wireless West Indies Ltd (Turks & Caicos)", :status=>"Operational"}, ["376", "352"]=>{:mobile_country_code=>"376", :mobile_network_code=>"352", :bands=>["UMTS 850"], :brand=>"IslandCom", :operator=>"IslandCom Telecommunications", :status=>"Operational"}, ["376", "360"]=>{:mobile_country_code=>"376", :mobile_network_code=>"360", :bands=>["Unknown"], :brand=>"IslandCom", :notes=>"[17]", :operator=>"IslandCom Telecommunications", :status=>"Unknown"}, ["400", "01"]=>{:mobile_country_code=>"400", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Azercell", :notes=>"[7]", :operator=>"", :status=>"Operational"}, ["400", "02"]=>{:mobile_country_code=>"400", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Bakcell", :operator=>"", :status=>"Operational"}, ["400", "03"]=>{:mobile_country_code=>"400", :mobile_network_code=>"03", :bands=>["CDMA"], :brand=>"FONEX", :operator=>"CATEL", :status=>"Operational"}, ["400", "04"]=>{:mobile_country_code=>"400", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Nar Mobile", :operator=>"Azerfon", :status=>"Operational"}, ["401", "01"]=>{:mobile_country_code=>"401", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Beeline", :operator=>"KaR-Tel LLP", :status=>"Operational"}, ["401", "02"]=>{:mobile_country_code=>"401", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Kcell", :operator=>"Kcell JSC", :status=>"Operational"}, ["401", "07"]=>{:mobile_country_code=>"401", :mobile_network_code=>"07", :bands=>["CDMA2000 800"], :brand=>"Dalacom", :notes=>"closed 01-Jan-2014", :operator=>"Altel", :status=>"Operational"}, ["401", "08"]=>{:mobile_country_code=>"401", :mobile_network_code=>"08", :bands=>["CDMA2000 800", "CDMA2000 450"], :brand=>"Kazakhtelecom", :operator=>"", :status=>"Operational"}, ["401", "77"]=>{:mobile_country_code=>"401", :mobile_network_code=>"77", :bands=>["GSM 900", "GSM 1800", "UMTS 900"], :brand=>"Tele2.kz", :notes=>"Called Mobile Telecom Service before its acquisition by Tele2.[84][51]", :operator=>"MTS", :status=>"Operational"}, ["402", "11"]=>{:mobile_country_code=>"402", :mobile_network_code=>"11", :bands=>["GSM 900", "UMTS 850", "UMTS 2100", "LTE 1800"], :brand=>"B-Mobile", :notes=>"[7][32]", :operator=>"B-Mobile / Bhutan Telecom Ltd.", :status=>"Operational"}, ["402", "77"]=>{:mobile_country_code=>"402", :mobile_network_code=>"77", :bands=>["GSM 900", "GSM 1800", "UMTS"], :brand=>"TashiCell", :notes=>"[1]", :operator=>"Tashi InfoComm Limited", :status=>"Operational"}, ["404", "01"]=>{:mobile_country_code=>"404", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Vodafone IN", :operator=>"Haryana", :status=>"Operational"}, ["404", "02"]=>{:mobile_country_code=>"404", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"Punjab", :status=>"Operational"}, ["404", "03"]=>{:mobile_country_code=>"404", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["404", "04"]=>{:mobile_country_code=>"404", :mobile_network_code=>"04", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Delhi & NCR", :status=>"Operational"}, ["404", "05"]=>{:mobile_country_code=>"404", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"Vodafone IN", :notes=>"Formerly Hutch / Fascel", :operator=>"Gujarat", :status=>"Operational"}, ["404", "07"]=>{:mobile_country_code=>"404", :mobile_network_code=>"07", :bands=>["GSM 900"], :brand=>"IDEA", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["404", "09"]=>{:mobile_country_code=>"404", :mobile_network_code=>"09", :bands=>["GSM 900"], :brand=>"Reliance", :operator=>"Assam", :status=>"Operational"}, ["404", "10"]=>{:mobile_country_code=>"404", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"Delhi & NCR", :status=>"Operational"}, ["404", "11"]=>{:mobile_country_code=>"404", :mobile_network_code=>"11", :bands=>["GSM 900", "GSM 1800"], :brand=>"Vodafone IN", :operator=>"Delhi & NCR", :status=>"Operational"}, ["404", "12"]=>{:mobile_country_code=>"404", :mobile_network_code=>"12", :bands=>["GSM 900"], :brand=>"IDEA", :notes=>"Former Escotel", :operator=>"Haryana", :status=>"Operational"}, ["404", "13"]=>{:mobile_country_code=>"404", :mobile_network_code=>"13", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["404", "14"]=>{:mobile_country_code=>"404", :mobile_network_code=>"14", :bands=>["GSM 900", "GSM 1800"], :brand=>"IDEA", :notes=>"Former Spice", :operator=>"Punjab", :status=>"Operational"}, ["404", "15"]=>{:mobile_country_code=>"404", :mobile_network_code=>"15", :bands=>["GSM 900"], :brand=>"Vodafone IN", :operator=>"Uttar Pradesh (East)", :status=>"Operational"}, ["404", "16"]=>{:mobile_country_code=>"404", :mobile_network_code=>"16", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"Former Hexacom", :operator=>"North East", :status=>"Operational"}, ["404", "17"]=>{:mobile_country_code=>"404", :mobile_network_code=>"17", :bands=>["GSM 900", "GSM 1800"], :brand=>"AIRCEL", :operator=>"West Bengal", :status=>"Operational"}, ["404", "18"]=>{:mobile_country_code=>"404", :mobile_network_code=>"18", :bands=>["GSM 900"], :brand=>"Reliance", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["404", "19"]=>{:mobile_country_code=>"404", :mobile_network_code=>"19", :bands=>["GSM 900", "GSM 1800"], :brand=>"IDEA", :notes=>"Former Escotel", :operator=>"Kerala", :status=>"Operational"}, ["404", "20"]=>{:mobile_country_code=>"404", :mobile_network_code=>"20", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vodafone IN", :notes=>"Former Hutchison Maxtouch / Orange / Hutch", :operator=>"Mumbai", :status=>"Operational"}, ["404", "21"]=>{:mobile_country_code=>"404", :mobile_network_code=>"21", :bands=>["GSM 900"], :brand=>"Loop Mobile", :notes=>"Former BPL Mobile", :operator=>"Mumbai", :status=>"Operational"}, ["404", "22"]=>{:mobile_country_code=>"404", :mobile_network_code=>"22", :bands=>["GSM 900"], :brand=>"IDEA", :operator=>"Maharashtra & Goa", :status=>"Operational"}, ["404", "24"]=>{:mobile_country_code=>"404", :mobile_network_code=>"24", :bands=>["GSM 900"], :brand=>"IDEA", :operator=>"Gujarat", :status=>"Operational"}, ["404", "25"]=>{:mobile_country_code=>"404", :mobile_network_code=>"25", :bands=>["GSM 900", "GSM 1800"], :brand=>"AIRCEL", :operator=>"Bihar", :status=>"Operational"}, ["404", "27"]=>{:mobile_country_code=>"404", :mobile_network_code=>"27", :bands=>["GSM 900"], :brand=>"Vodafone IN", :operator=>"Maharashtra & Goa", :status=>"Operational"}, ["404", "28"]=>{:mobile_country_code=>"404", :mobile_network_code=>"28", :bands=>["GSM 900"], :brand=>"AIRCEL", :operator=>"Orissa", :status=>"Operational"}, ["404", "29"]=>{:mobile_country_code=>"404", :mobile_network_code=>"29", :bands=>["GSM 900"], :brand=>"AIRCEL", :operator=>"Assam", :status=>"Operational"}, ["404", "30"]=>{:mobile_country_code=>"404", :mobile_network_code=>"30", :bands=>["GSM 900", "GSM 1800"], :brand=>"Vodafone IN", :notes=>"Former Command / Hutch", :operator=>"Kolkata", :status=>"Operational"}, ["404", "31"]=>{:mobile_country_code=>"404", :mobile_network_code=>"31", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"Kolkata", :status=>"Operational"}, ["404", "34"]=>{:mobile_country_code=>"404", :mobile_network_code=>"34", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Haryana", :status=>"Operational"}, ["404", "36"]=>{:mobile_country_code=>"404", :mobile_network_code=>"36", :bands=>["GSM 900"], :brand=>"Reliance", :operator=>"Bihar & Jharkhand", :status=>"Operational"}, ["404", "37"]=>{:mobile_country_code=>"404", :mobile_network_code=>"37", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Aircel", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["404", "38"]=>{:mobile_country_code=>"404", :mobile_network_code=>"38", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Assam", :status=>"Operational"}, ["404", "40"]=>{:mobile_country_code=>"404", :mobile_network_code=>"40", :bands=>["Unknown"], :brand=>"AirTel", :operator=>"Chennai", :status=>"Operational"}, ["404", "41"]=>{:mobile_country_code=>"404", :mobile_network_code=>"41", :bands=>["GSM 900"], :brand=>"Aircel", :notes=>"Formerly RPG", :operator=>"Chennai", :status=>"Operational"}, ["404", "42"]=>{:mobile_country_code=>"404", :mobile_network_code=>"42", :bands=>["GSM 900"], :brand=>"Aircel", :operator=>"Tamil Nadu", :status=>"Operational"}, ["404", "43"]=>{:mobile_country_code=>"404", :mobile_network_code=>"43", :bands=>["GSM 900"], :brand=>"Vodafone IN", :operator=>"Tamil Nadu", :status=>"Operational"}, ["404", "44"]=>{:mobile_country_code=>"404", :mobile_network_code=>"44", :bands=>["GSM 900"], :brand=>"IDEA", :notes=>"Former Spice", :operator=>"Karnataka", :status=>"Operational"}, ["404", "45"]=>{:mobile_country_code=>"404", :mobile_network_code=>"45", :bands=>["GSM"], :brand=>"Airtel", :operator=>"Karnataka", :status=>"Operational"}, ["404", "46"]=>{:mobile_country_code=>"404", :mobile_network_code=>"46", :bands=>["GSM 900"], :brand=>"Vodafone IN", :operator=>"Kerala", :status=>"Operational"}, ["404", "48"]=>{:mobile_country_code=>"404", :mobile_network_code=>"48", :bands=>["GSM 900"], :brand=>"Dishnet Wireless", :operator=>"Unknown", :status=>"Operational"}, ["404", "49"]=>{:mobile_country_code=>"404", :mobile_network_code=>"49", :bands=>["GSM 900"], :brand=>"Airtel", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["404", "50"]=>{:mobile_country_code=>"404", :mobile_network_code=>"50", :bands=>["GSM 900"], :brand=>"Reliance", :operator=>"North East", :status=>"Operational"}, ["404", "51"]=>{:mobile_country_code=>"404", :mobile_network_code=>"51", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["404", "52"]=>{:mobile_country_code=>"404", :mobile_network_code=>"52", :bands=>["GSM 900"], :brand=>"Reliance", :operator=>"Orissa", :status=>"Operational"}, ["404", "53"]=>{:mobile_country_code=>"404", :mobile_network_code=>"53", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Punjab", :status=>"Operational"}, ["404", "54"]=>{:mobile_country_code=>"404", :mobile_network_code=>"54", :bands=>["GSM 900", "UTMS 2100"], :brand=>"CellOne", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["404", "55"]=>{:mobile_country_code=>"404", :mobile_network_code=>"55", :bands=>["GSM 900", "UTMS 2100"], :brand=>"CellOne", :operator=>"Uttar Pradesh (East)", :status=>"Operational"}, ["404", "56"]=>{:mobile_country_code=>"404", :mobile_network_code=>"56", :bands=>["GSM 900"], :brand=>"IDEA", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["404", "57"]=>{:mobile_country_code=>"404", :mobile_network_code=>"57", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Gujarat", :status=>"Operational"}, ["404", "58"]=>{:mobile_country_code=>"404", :mobile_network_code=>"58", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Madhya Pradesh & Chhattisgarh", :status=>"Operational"}, ["404", "59"]=>{:mobile_country_code=>"404", :mobile_network_code=>"59", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Rajasthan", :status=>"Operational"}, ["404", "60"]=>{:mobile_country_code=>"404", :mobile_network_code=>"60", :bands=>["GSM 900"], :brand=>"Vodafone IN", :operator=>"Rajasthan", :status=>"Operational"}, ["404", "62"]=>{:mobile_country_code=>"404", :mobile_network_code=>"62", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["404", "64"]=>{:mobile_country_code=>"404", :mobile_network_code=>"64", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Chennai", :status=>"Operational"}, ["404", "66"]=>{:mobile_country_code=>"404", :mobile_network_code=>"66", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Maharashtra & Goa", :status=>"Operational"}, ["404", "67"]=>{:mobile_country_code=>"404", :mobile_network_code=>"67", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Reliance", :operator=>"Madhya Pradesh & Chhattisgarh", :status=>"Operational"}, ["404", "68"]=>{:mobile_country_code=>"404", :mobile_network_code=>"68", :bands=>["GSM 900", "UMTS 2100"], :brand=>"DOLPHIN", :operator=>"Delhi & NCR", :status=>"Operational"}, ["404", "69"]=>{:mobile_country_code=>"404", :mobile_network_code=>"69", :bands=>["GSM 900", "UMTS 2100"], :brand=>"DOLPHIN", :operator=>"Mumbai", :status=>"Operational"}, ["404", "70"]=>{:mobile_country_code=>"404", :mobile_network_code=>"70", :bands=>["Unknown"], :brand=>"AirTel", :operator=>"Rajasthan", :status=>"Operational"}, ["404", "71"]=>{:mobile_country_code=>"404", :mobile_network_code=>"71", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Karnataka (Bangalore)", :status=>"Operational"}, ["404", "72"]=>{:mobile_country_code=>"404", :mobile_network_code=>"72", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Kerala", :status=>"Operational"}, ["404", "73"]=>{:mobile_country_code=>"404", :mobile_network_code=>"73", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["404", "74"]=>{:mobile_country_code=>"404", :mobile_network_code=>"74", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"West Bengal", :status=>"Operational"}, ["404", "75"]=>{:mobile_country_code=>"404", :mobile_network_code=>"75", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Bihar", :status=>"Operational"}, ["404", "76"]=>{:mobile_country_code=>"404", :mobile_network_code=>"76", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Orissa", :status=>"Operational"}, ["404", "77"]=>{:mobile_country_code=>"404", :mobile_network_code=>"77", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"North East", :status=>"Operational"}, ["404", "78"]=>{:mobile_country_code=>"404", :mobile_network_code=>"78", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Idea Cellular Ltd", :operator=>"Madhya Pradesh & Chattishgarh", :status=>"Operational"}, ["404", "79"]=>{:mobile_country_code=>"404", :mobile_network_code=>"79", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Andaman Nicobar", :status=>"Operational"}, ["404", "80"]=>{:mobile_country_code=>"404", :mobile_network_code=>"80", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Tamil Nadu", :status=>"Operational"}, ["404", "81"]=>{:mobile_country_code=>"404", :mobile_network_code=>"81", :bands=>["GSM 900", "UMTS 2100"], :brand=>"CellOne", :operator=>"Kolkata", :status=>"Operational"}, ["404", "82"]=>{:mobile_country_code=>"404", :mobile_network_code=>"82", :bands=>["Unknown"], :brand=>"Idea", :notes=>"[citation needed]", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["404", "83"]=>{:mobile_country_code=>"404", :mobile_network_code=>"83", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"Kolkata", :status=>"Operational"}, ["404", "84"]=>{:mobile_country_code=>"404", :mobile_network_code=>"84", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Chennai", :status=>"Operational"}, ["404", "85"]=>{:mobile_country_code=>"404", :mobile_network_code=>"85", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"West Bengal", :status=>"Operational"}, ["404", "86"]=>{:mobile_country_code=>"404", :mobile_network_code=>"86", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vodafone IN", :operator=>"Karnataka", :status=>"Operational"}, ["404", "87"]=>{:mobile_country_code=>"404", :mobile_network_code=>"87", :bands=>["Unknown"], :brand=>"IDEA", :operator=>"Rajasthan", :status=>"Operational"}, ["404", "88"]=>{:mobile_country_code=>"404", :mobile_network_code=>"88", :bands=>["Unknown"], :brand=>"Vodafone IN", :notes=>"[citation needed]", :operator=>"Vodafone Punjab", :status=>"Operational"}, ["404", "89"]=>{:mobile_country_code=>"404", :mobile_network_code=>"89", :bands=>["Unknown"], :brand=>"Idea", :operator=>"Uttar Pradesh (East)", :status=>"Operational"}, ["404", "90"]=>{:mobile_country_code=>"404", :mobile_network_code=>"90", :bands=>["GSM 1800"], :brand=>"AirTel", :operator=>"Maharashtra", :status=>"Operational"}, ["404", "91"]=>{:mobile_country_code=>"404", :mobile_network_code=>"91", :bands=>["GSM 900"], :brand=>"AIRCEL", :operator=>"Kolkata", :status=>"Operational"}, ["404", "92"]=>{:mobile_country_code=>"404", :mobile_network_code=>"92", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"AirTel", :operator=>"Mumbai", :status=>"Operational"}, ["404", "93"]=>{:mobile_country_code=>"404", :mobile_network_code=>"93", :bands=>["GSM 1800"], :brand=>"AirTel", :operator=>"Madhya Pradesh", :status=>"Operational"}, ["404", "94"]=>{:mobile_country_code=>"404", :mobile_network_code=>"94", :bands=>["Unknown"], :brand=>"AirTel", :operator=>"Tamil Nadu", :status=>"Operational"}, ["404", "95"]=>{:mobile_country_code=>"404", :mobile_network_code=>"95", :bands=>["GSM 1800"], :brand=>"AirTel", :operator=>"Kerala", :status=>"Operational"}, ["404", "96"]=>{:mobile_country_code=>"404", :mobile_network_code=>"96", :bands=>["GSM 1800"], :brand=>"AirTel", :operator=>"Haryana", :status=>"Operational"}, ["404", "97"]=>{:mobile_country_code=>"404", :mobile_network_code=>"97", :bands=>["Unknown"], :brand=>"AirTel", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["404", "98"]=>{:mobile_country_code=>"404", :mobile_network_code=>"98", :bands=>["Unknown"], :brand=>"AirTel", :operator=>"Gujarat", :status=>"Operational"}, ["405", "01"]=>{:mobile_country_code=>"405", :mobile_network_code=>"01", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["405", "025"]=>{:mobile_country_code=>"405", :mobile_network_code=>"025", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["405", "026"]=>{:mobile_country_code=>"405", :mobile_network_code=>"026", :bands=>["CDMA 2000"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.5G", :operator=>"Assam", :status=>"Operational"}, ["405", "027"]=>{:mobile_country_code=>"405", :mobile_network_code=>"027", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Bihar/Jharkhand", :status=>"Operational"}, ["405", "028"]=>{:mobile_country_code=>"405", :mobile_network_code=>"028", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Chennai", :status=>"Operational"}, ["405", "029"]=>{:mobile_country_code=>"405", :mobile_network_code=>"029", :bands=>["CDMA 2000"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Delhi", :status=>"Operational"}, ["405", "03"]=>{:mobile_country_code=>"405", :mobile_network_code=>"03", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"Bihar", :status=>"Operational"}, ["405", "030"]=>{:mobile_country_code=>"405", :mobile_network_code=>"030", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Gujarat", :status=>"Operational"}, ["405", "031"]=>{:mobile_country_code=>"405", :mobile_network_code=>"031", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Haryana", :status=>"Operational"}, ["405", "032"]=>{:mobile_country_code=>"405", :mobile_network_code=>"032", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["405", "033"]=>{:mobile_country_code=>"405", :mobile_network_code=>"033", :bands=>["CDMA 2000"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["405", "034"]=>{:mobile_country_code=>"405", :mobile_network_code=>"034", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Karnataka", :status=>"Operational"}, ["405", "035"]=>{:mobile_country_code=>"405", :mobile_network_code=>"035", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Kerala", :status=>"Operational"}, ["405", "036"]=>{:mobile_country_code=>"405", :mobile_network_code=>"036", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Kolkata", :status=>"Operational"}, ["405", "037"]=>{:mobile_country_code=>"405", :mobile_network_code=>"037", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Maharashtra & Goa", :status=>"Operational"}, ["405", "038"]=>{:mobile_country_code=>"405", :mobile_network_code=>"038", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Madhya Pradesh", :status=>"Operational"}, ["405", "039"]=>{:mobile_country_code=>"405", :mobile_network_code=>"039", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Mumbai", :status=>"Operational"}, ["405", "04"]=>{:mobile_country_code=>"405", :mobile_network_code=>"04", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"Chennai", :status=>"Operational"}, ["405", "041"]=>{:mobile_country_code=>"405", :mobile_network_code=>"041", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Orissa", :status=>"Operational"}, ["405", "042"]=>{:mobile_country_code=>"405", :mobile_network_code=>"042", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Punjab", :status=>"Operational"}, ["405", "043"]=>{:mobile_country_code=>"405", :mobile_network_code=>"043", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Rajasthan", :status=>"Operational"}, ["405", "044"]=>{:mobile_country_code=>"405", :mobile_network_code=>"044", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Tamil Nadu including Chennai", :status=>"Operational"}, ["405", "045"]=>{:mobile_country_code=>"405", :mobile_network_code=>"045", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"Uttar Pradesh (E)", :status=>"Operational"}, ["405", "046"]=>{:mobile_country_code=>"405", :mobile_network_code=>"046", :bands=>["CDMA 2000", "GSM 1800", "UMTS 2100"], :brand=>"TATA DOCOMO", :notes=>"HSPA+, 3G network, EDGE, 2.75G", :operator=>"Uttar Pradesh (W) & Uttarkhand", :status=>"Operational"}, ["405", "047"]=>{:mobile_country_code=>"405", :mobile_network_code=>"047", :bands=>["CDMA 2000", "GSM 1800"], :brand=>"TATA DOCOMO", :notes=>"EDGE, 2.75G", :operator=>"West Bengal", :status=>"Operational"}, ["405", "05"]=>{:mobile_country_code=>"405", :mobile_network_code=>"05", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"Delhi & NCR", :status=>"Operational"}, ["405", "06"]=>{:mobile_country_code=>"405", :mobile_network_code=>"06", :bands=>["GSM 1800"], :brand=>"Reliance", :operator=>"Gujarat", :status=>"Operational"}, ["405", "07"]=>{:mobile_country_code=>"405", :mobile_network_code=>"07", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Haryana", :status=>"Operational"}, ["405", "08"]=>{:mobile_country_code=>"405", :mobile_network_code=>"08", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["405", "09"]=>{:mobile_country_code=>"405", :mobile_network_code=>"09", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Reliance", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["405", "10"]=>{:mobile_country_code=>"405", :mobile_network_code=>"10", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Karnataka", :status=>"Operational"}, ["405", "11"]=>{:mobile_country_code=>"405", :mobile_network_code=>"11", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Kerala", :status=>"Operational"}, ["405", "12"]=>{:mobile_country_code=>"405", :mobile_network_code=>"12", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Kolkata", :status=>"Operational"}, ["405", "13"]=>{:mobile_country_code=>"405", :mobile_network_code=>"13", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Maharashtra & Goa", :status=>"Operational"}, ["405", "14"]=>{:mobile_country_code=>"405", :mobile_network_code=>"14", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Madhya Pradesh", :status=>"Operational"}, ["405", "15"]=>{:mobile_country_code=>"405", :mobile_network_code=>"15", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Reliance", :operator=>"Mumbai", :status=>"Operational"}, ["405", "17"]=>{:mobile_country_code=>"405", :mobile_network_code=>"17", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Orissa", :status=>"Operational"}, ["405", "18"]=>{:mobile_country_code=>"405", :mobile_network_code=>"18", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Punjab", :status=>"Operational"}, ["405", "19"]=>{:mobile_country_code=>"405", :mobile_network_code=>"19", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Rajasthan", :status=>"Operational"}, ["405", "20"]=>{:mobile_country_code=>"405", :mobile_network_code=>"20", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Tamil Nadu", :status=>"Operational"}, ["405", "21"]=>{:mobile_country_code=>"405", :mobile_network_code=>"21", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Uttar Pradesh (East)", :status=>"Operational"}, ["405", "22"]=>{:mobile_country_code=>"405", :mobile_network_code=>"22", :bands=>["GSM"], :brand=>"Reliance", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["405", "23"]=>{:mobile_country_code=>"405", :mobile_network_code=>"23", :bands=>["GSM"], :brand=>"Reliance", :operator=>"West Bengal", :status=>"Operational"}, ["405", "51"]=>{:mobile_country_code=>"405", :mobile_network_code=>"51", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"West Bengal", :status=>"Operational"}, ["405", "52"]=>{:mobile_country_code=>"405", :mobile_network_code=>"52", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"Bihar & Jharkhand", :status=>"Operational"}, ["405", "53"]=>{:mobile_country_code=>"405", :mobile_network_code=>"53", :bands=>["GSM"], :brand=>"AirTel", :operator=>"Orissa", :status=>"Operational"}, ["405", "54"]=>{:mobile_country_code=>"405", :mobile_network_code=>"54", :bands=>["GSM 900"], :brand=>"AirTel", :operator=>"Uttar Pradesh (East)", :status=>"Operational"}, ["405", "55"]=>{:mobile_country_code=>"405", :mobile_network_code=>"55", :bands=>["GSM 900", "UTMS 2100"], :brand=>"Airtel", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["405", "56"]=>{:mobile_country_code=>"405", :mobile_network_code=>"56", :bands=>["GSM 900", "GSM 1800"], :brand=>"AirTel", :operator=>"Assam", :status=>"Operational"}, ["405", "66"]=>{:mobile_country_code=>"405", :mobile_network_code=>"66", :bands=>["GSM 900", "GSM 1800"], :brand=>"Vodafone IN", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["405", "67"]=>{:mobile_country_code=>"405", :mobile_network_code=>"67", :bands=>["Unknown"], :brand=>"Vodafone IN", :operator=>"West Bengal", :status=>"Operational"}, ["405", "70"]=>{:mobile_country_code=>"405", :mobile_network_code=>"70", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Bihar & Jharkhand", :status=>"Operational"}, ["405", "750"]=>{:mobile_country_code=>"405", :mobile_network_code=>"750", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["405", "751"]=>{:mobile_country_code=>"405", :mobile_network_code=>"751", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Assam", :status=>"Operational"}, ["405", "752"]=>{:mobile_country_code=>"405", :mobile_network_code=>"752", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Bihar & Jharkhand", :status=>"Operational"}, ["405", "753"]=>{:mobile_country_code=>"405", :mobile_network_code=>"753", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Orissa", :status=>"Operational"}, ["405", "754"]=>{:mobile_country_code=>"405", :mobile_network_code=>"754", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Himachal Pradesh", :status=>"Operational"}, ["405", "755"]=>{:mobile_country_code=>"405", :mobile_network_code=>"755", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"North East", :status=>"Operational"}, ["405", "756"]=>{:mobile_country_code=>"405", :mobile_network_code=>"756", :bands=>["GSM 1800"], :brand=>"Vodafone IN", :operator=>"Madhya Pradesh & Chhattisgarh", :status=>"Operational"}, ["405", "799"]=>{:mobile_country_code=>"405", :mobile_network_code=>"799", :bands=>["GSM 900", "GSM 1800"], :brand=>"IDEA", :operator=>"Mumbai", :status=>"Operational"}, ["405", "800"]=>{:mobile_country_code=>"405", :mobile_network_code=>"800", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Delhi & NCR", :status=>"Operational"}, ["405", "801"]=>{:mobile_country_code=>"405", :mobile_network_code=>"801", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["405", "802"]=>{:mobile_country_code=>"405", :mobile_network_code=>"802", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Gujarat", :status=>"Not operational"}, ["405", "803"]=>{:mobile_country_code=>"405", :mobile_network_code=>"803", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Karnataka", :status=>"Operational"}, ["405", "804"]=>{:mobile_country_code=>"405", :mobile_network_code=>"804", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Maharashtra & Goa", :status=>"Operational"}, ["405", "805"]=>{:mobile_country_code=>"405", :mobile_network_code=>"805", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Mumbai", :status=>"Operational"}, ["405", "806"]=>{:mobile_country_code=>"405", :mobile_network_code=>"806", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Rajasthan", :status=>"Operational"}, ["405", "807"]=>{:mobile_country_code=>"405", :mobile_network_code=>"807", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Haryana", :status=>"Not operational"}, ["405", "808"]=>{:mobile_country_code=>"405", :mobile_network_code=>"808", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Madhya Pradesh", :status=>"Not operational"}, ["405", "809"]=>{:mobile_country_code=>"405", :mobile_network_code=>"809", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Kerala", :status=>"Operational"}, ["405", "810"]=>{:mobile_country_code=>"405", :mobile_network_code=>"810", :bands=>["GSM 1800"], :brand=>"AIRCEL", :operator=>"Uttar Pradesh (East)", :status=>"Operational"}, ["405", "811"]=>{:mobile_country_code=>"405", :mobile_network_code=>"811", :bands=>["GSM"], :brand=>"AIRCEL", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["405", "812"]=>{:mobile_country_code=>"405", :mobile_network_code=>"812", :bands=>["GSM"], :brand=>"AIRCEL", :notes=>"License cancelled by Supreme Court", :operator=>"Punjab", :status=>"Not operational"}, ["405", "818"]=>{:mobile_country_code=>"405", :mobile_network_code=>"818", :bands=>["GSM"], :brand=>"Uninor", :operator=>"Uttar Pradesh (West)", :status=>"Operational"}, ["405", "819"]=>{:mobile_country_code=>"405", :mobile_network_code=>"819", :bands=>["GSM"], :brand=>"Uninor", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["405", "820"]=>{:mobile_country_code=>"405", :mobile_network_code=>"820", :bands=>["GSM 1800"], :brand=>"Uninor", :operator=>"Karnataka", :status=>"Operational"}, ["405", "821"]=>{:mobile_country_code=>"405", :mobile_network_code=>"821", :bands=>["GSM 1800"], :brand=>"Uninor", :operator=>"Kerala", :status=>"Operational"}, ["405", "822"]=>{:mobile_country_code=>"405", :mobile_network_code=>"822", :bands=>["GSM"], :brand=>"Uninor", :operator=>"Kolkata", :status=>"Operational"}, ["405", "824"]=>{:mobile_country_code=>"405", :mobile_network_code=>"824", :bands=>["GSM 1800"], :brand=>"Videocon Datacom", :operator=>"Assam", :status=>"Reserved"}, ["405", "827"]=>{:mobile_country_code=>"405", :mobile_network_code=>"827", :bands=>["GSM 1800"], :brand=>"Videocon Datacom", :operator=>"Gujarat", :status=>"Operational"}, ["405", "834"]=>{:mobile_country_code=>"405", :mobile_network_code=>"834", :bands=>["GSM 1800"], :brand=>"Videocon Datacom", :operator=>"Madhya Pradesh", :status=>"Reserved"}, ["405", "840"]=>{:mobile_country_code=>"405", :mobile_network_code=>"840", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"West Bengal", :status=>"Reserved"}, ["405", "844"]=>{:mobile_country_code=>"405", :mobile_network_code=>"844", :bands=>["GSM"], :brand=>"Uninor", :operator=>"Delhi & NCR", :status=>"Not operational"}, ["405", "845"]=>{:mobile_country_code=>"405", :mobile_network_code=>"845", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Assam", :status=>"Operational"}, ["405", "846"]=>{:mobile_country_code=>"405", :mobile_network_code=>"846", :bands=>["GSM 1800", "UTMS 2100"], :brand=>"IDEA", :operator=>"Jammu & Kashmir", :status=>"Operational"}, ["405", "847"]=>{:mobile_country_code=>"405", :mobile_network_code=>"847", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Karnataka", :status=>"Operational"}, ["405", "848"]=>{:mobile_country_code=>"405", :mobile_network_code=>"848", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Kolkata", :status=>"Operational"}, ["405", "849"]=>{:mobile_country_code=>"405", :mobile_network_code=>"849", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"North East", :status=>"Operational"}, ["405", "850"]=>{:mobile_country_code=>"405", :mobile_network_code=>"850", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Orissa", :status=>"Operational"}, ["405", "851"]=>{:mobile_country_code=>"405", :mobile_network_code=>"851", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Punjab", :status=>"Operational"}, ["405", "852"]=>{:mobile_country_code=>"405", :mobile_network_code=>"852", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Tamil Nadu", :status=>"Operational"}, ["405", "853"]=>{:mobile_country_code=>"405", :mobile_network_code=>"853", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"West Bengal", :status=>"Operational"}, ["405", "854"]=>{:mobile_country_code=>"405", :mobile_network_code=>"854", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Andra Pradesh", :status=>"Reserved"}, ["405", "855"]=>{:mobile_country_code=>"405", :mobile_network_code=>"855", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Assam", :status=>"Reserved"}, ["405", "856"]=>{:mobile_country_code=>"405", :mobile_network_code=>"856", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Bihar", :status=>"Reserved"}, ["405", "857"]=>{:mobile_country_code=>"405", :mobile_network_code=>"857", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Gujarat", :status=>"Reserved"}, ["405", "858"]=>{:mobile_country_code=>"405", :mobile_network_code=>"858", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Haryana", :status=>"Reserved"}, ["405", "859"]=>{:mobile_country_code=>"405", :mobile_network_code=>"859", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Himachal Pradesh", :status=>"Reserved"}, ["405", "860"]=>{:mobile_country_code=>"405", :mobile_network_code=>"860", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Jammu Kashmir", :status=>"Reserved"}, ["405", "861"]=>{:mobile_country_code=>"405", :mobile_network_code=>"861", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Karnataka", :status=>"Reserved"}, ["405", "862"]=>{:mobile_country_code=>"405", :mobile_network_code=>"862", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Kerala", :status=>"Reserved"}, ["405", "863"]=>{:mobile_country_code=>"405", :mobile_network_code=>"863", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Madhyya Pradesh", :status=>"Reserved"}, ["405", "864"]=>{:mobile_country_code=>"405", :mobile_network_code=>"864", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Maharashtra", :status=>"Reserved"}, ["405", "865"]=>{:mobile_country_code=>"405", :mobile_network_code=>"865", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"North East", :status=>"Reserved"}, ["405", "866"]=>{:mobile_country_code=>"405", :mobile_network_code=>"866", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Orissa", :status=>"Reserved"}, ["405", "867"]=>{:mobile_country_code=>"405", :mobile_network_code=>"867", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Punjab", :status=>"Reserved"}, ["405", "868"]=>{:mobile_country_code=>"405", :mobile_network_code=>"868", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Rajasthan", :status=>"Reserved"}, ["405", "869"]=>{:mobile_country_code=>"405", :mobile_network_code=>"869", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Tamil Nadu Chennai", :status=>"Reserved"}, ["405", "870"]=>{:mobile_country_code=>"405", :mobile_network_code=>"870", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Uttar Pradesh West", :status=>"Reserved"}, ["405", "871"]=>{:mobile_country_code=>"405", :mobile_network_code=>"871", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Uttar Pradesh East", :status=>"Reserved"}, ["405", "872"]=>{:mobile_country_code=>"405", :mobile_network_code=>"872", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Delhi", :status=>"Reserved"}, ["405", "873"]=>{:mobile_country_code=>"405", :mobile_network_code=>"873", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Kolkatta", :status=>"Reserved"}, ["405", "874"]=>{:mobile_country_code=>"405", :mobile_network_code=>"874", :bands=>["Unknown"], :brand=>"Jio", :notes=>"4G", :operator=>"Mumbai", :status=>"Reserved"}, ["405", "875"]=>{:mobile_country_code=>"405", :mobile_network_code=>"875", :bands=>["GSM 1800"], :brand=>"Uninor", :operator=>"Assam", :status=>"Reserved"}, ["405", "880"]=>{:mobile_country_code=>"405", :mobile_network_code=>"880", :bands=>["GSM 1800"], :brand=>"Uninor", :operator=>"West Bengal", :status=>"Operational"}, ["405", "881"]=>{:mobile_country_code=>"405", :mobile_network_code=>"881", :bands=>["GSM 1800"], :brand=>"S Tel", :operator=>"Assam", :status=>"Reserved"}, ["405", "908"]=>{:mobile_country_code=>"405", :mobile_network_code=>"908", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Andhra Pradesh and Telangana", :status=>"Operational"}, ["405", "909"]=>{:mobile_country_code=>"405", :mobile_network_code=>"909", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Delhi", :status=>"Operational"}, ["405", "910"]=>{:mobile_country_code=>"405", :mobile_network_code=>"910", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Haryana", :status=>"Operational"}, ["405", "911"]=>{:mobile_country_code=>"405", :mobile_network_code=>"911", :bands=>["GSM 1800"], :brand=>"IDEA", :operator=>"Maharashtra", :status=>"Operational"}, ["405", "912"]=>{:mobile_country_code=>"405", :mobile_network_code=>"912", :bands=>["GSM 1800"], :brand=>"Etisalat DB(cheers)", :notes=>"License cancelled by Supreme Court", :operator=>"Andhra Pradesh and Telangana", :status=>"Not operational"}, ["405", "913"]=>{:mobile_country_code=>"405", :mobile_network_code=>"913", :bands=>["GSM 1800"], :brand=>"Etisalat DB(cheers)", :notes=>"License cancelled by Supreme Court", :operator=>"Delhi & NCR", :status=>"Not operational"}, ["405", "914"]=>{:mobile_country_code=>"405", :mobile_network_code=>"914", :bands=>["GSM 1800"], :brand=>"Etisalat DB(cheers)", :notes=>"License cancelled by Supreme Court", :operator=>"Gujarat", :status=>"Not operational"}, ["405", "917"]=>{:mobile_country_code=>"405", :mobile_network_code=>"917", :bands=>["GSM 1800"], :brand=>"Etisalat DB(cheers)", :notes=>"License cancelled by Supreme Court", :operator=>"Kerala", :status=>"Not operational"}, ["405", "927"]=>{:mobile_country_code=>"405", :mobile_network_code=>"927", :bands=>["Unknown"], :brand=>"Uninor", :operator=>"Gujarat", :status=>"Operational"}, ["405", "929"]=>{:mobile_country_code=>"405", :mobile_network_code=>"929", :bands=>["GSM 1800"], :brand=>"Uninor", :operator=>"Maharashtra", :status=>"Operational"}, ["410", "01"]=>{:mobile_country_code=>"410", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Mobilink", :operator=>"Mobilink-PMCL", :status=>"Operational"}, ["410", "02"]=>{:mobile_country_code=>"410", :mobile_network_code=>"02", :bands=>["CDMA2000 1900"], :brand=>"PTCL", :operator=>"PTCL", :status=>"Operational"}, ["410", "03"]=>{:mobile_country_code=>"410", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Ufone", :operator=>"Pakistan Telecommunication Mobile Ltd", :status=>"Operational"}, ["410", "04"]=>{:mobile_country_code=>"410", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Zong", :notes=>"Formerly Paktel", :operator=>"China Mobile", :status=>"Operational"}, ["410", "05"]=>{:mobile_country_code=>"410", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"SCO Mobile", :operator=>"SCO Mobile Ltd", :status=>"Operational"}, ["410", "06"]=>{:mobile_country_code=>"410", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800"], :brand=>"Telenor", :notes=>"UMTS 2100 license awarded", :operator=>"Telenor Pakistan", :status=>"Operational"}, ["410", "07"]=>{:mobile_country_code=>"410", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"Warid Pakistan", :operator=>"WaridTel", :status=>"Operational"}, ["412", "01"]=>{:mobile_country_code=>"412", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"AWCC", :operator=>"Afghan Wireless Communication Company", :status=>"Operational"}, ["412", "20"]=>{:mobile_country_code=>"412", :mobile_network_code=>"20", :bands=>["GSM 900", "UMTS"], :brand=>"Roshan", :notes=>"[1]", :operator=>"Telecom Development Company Afghanistan Ltd.", :status=>"Operational"}, ["412", "40"]=>{:mobile_country_code=>"412", :mobile_network_code=>"40", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MTN", :notes=>"[1]", :operator=>"MTN Group Afghanistan", :status=>"Operational"}, ["412", "50"]=>{:mobile_country_code=>"412", :mobile_network_code=>"50", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Etisalat", :notes=>"[1][2]", :operator=>"Etisalat Afghanistan", :status=>"Operational"}, ["412", "55"]=>{:mobile_country_code=>"412", :mobile_network_code=>"55", :bands=>["CDMA 800"], :brand=>"WASEL", :operator=>"WASEL Afghanistan", :status=>"Operational"}, ["412", "80"]=>{:mobile_country_code=>"412", :mobile_network_code=>"80", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Salaam", :notes=>"[2][3]", :operator=>"Afghan Telecom", :status=>"Operational"}, ["412", "88"]=>{:mobile_country_code=>"412", :mobile_network_code=>"88", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Salaam", :notes=>"[4]", :operator=>"Afghan Telecom", :status=>"Operational"}, ["413", "01"]=>{:mobile_country_code=>"413", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Mobitel", :operator=>"Mobitel (Pvt) Ltd", :status=>"Operational"}, ["413", "02"]=>{:mobile_country_code=>"413", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Dialog", :operator=>"Dialog Axiata PLC", :status=>"Operational"}, ["413", "03"]=>{:mobile_country_code=>"413", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Etisalat", :notes=>"Former Tigo or Celltel", :operator=>"Etisalat Lanka (Pvt) Ltd", :status=>"Operational"}, ["413", "05"]=>{:mobile_country_code=>"413", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Airtel", :operator=>"Bharti Airtel Lanka (Pvt) Ltd", :status=>"Operational"}, ["413", "08"]=>{:mobile_country_code=>"413", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Hutch", :operator=>"Hutchison Telecommunications Lanka (Pvt) Ltd", :status=>"Operational"}, ["414", "01"]=>{:mobile_country_code=>"414", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"MPT", :notes=>"[105]", :operator=>"Myanmar Post and Telecommunication", :status=>"Operational"}, ["414", "05"]=>{:mobile_country_code=>"414", :mobile_network_code=>"05", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"Ooredoo", :notes=>"[106]", :operator=>"Ooredoo Myanmar", :status=>"Operational"}, ["414", "06"]=>{:mobile_country_code=>"414", :mobile_network_code=>"06", :bands=>["GSM 900"], :brand=>"Telenor Myanmar", :notes=>"[107]", :operator=>"Telenor Myanmar (Comcel Myanmar)", :status=>"Operational"}, ["415", "01"]=>{:mobile_country_code=>"415", :mobile_network_code=>"01", :bands=>["GSM 900 2G 3G 4G"], :brand=>"Alfa", :notes=>"UMTS 1800", :operator=>"MIC 1", :status=>"Operational"}, ["415", "03"]=>{:mobile_country_code=>"415", :mobile_network_code=>"03", :bands=>["GSM 900 2G 3G 4G"], :brand=>"mtc touch", :notes=>"UMTS 1800", :operator=>"MIC 2", :status=>"Operational"}, ["415", "05"]=>{:mobile_country_code=>"415", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"Ogero Mobile", :operator=>"Ogero Telecom", :status=>"Planned"}, ["416", "01"]=>{:mobile_country_code=>"416", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"zain JO", :notes=>"Former Fastlink", :operator=>"Jordan Mobile Telephone Services", :status=>"Operational"}, ["416", "02"]=>{:mobile_country_code=>"416", :mobile_network_code=>"02", :bands=>["iDEN 800"], :brand=>"XPress Telecom", :notes=>"[4]", :operator=>"XPress Telecom", :status=>"Operational"}, ["416", "03"]=>{:mobile_country_code=>"416", :mobile_network_code=>"03", :bands=>["GSM 1800"], :brand=>"Umniah", :operator=>"Umniah Mobile Company", :status=>"Operational"}, ["416", "77"]=>{:mobile_country_code=>"416", :mobile_network_code=>"77", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Petra Jordanian Mobile Telecommunications Company (MobileCom)", :status=>"Operational"}, ["417", "01"]=>{:mobile_country_code=>"417", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Syriatel", :operator=>"Syriatel Mobile Telecom", :status=>"Operational"}, ["417", "02"]=>{:mobile_country_code=>"417", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MTN", :notes=>"Former Spacetel", :operator=>"MTN Syria", :status=>"Operational"}, ["417", "09"]=>{:mobile_country_code=>"417", :mobile_network_code=>"09", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Syrian Telecom", :status=>"Unknown"}, ["418", "05"]=>{:mobile_country_code=>"418", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"Asia Cell", :operator=>"Asia Cell Telecommunications Company", :status=>"Operational"}, ["418", "08"]=>{:mobile_country_code=>"418", :mobile_network_code=>"08", :bands=>["GSM 900"], :brand=>"SanaTel", :operator=>"", :status=>"Operational"}, ["418", "20"]=>{:mobile_country_code=>"418", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800"], :brand=>"Zain", :notes=>"Former MTC Atheer", :operator=>"Zain Iraq", :status=>"Operational"}, ["418", "30"]=>{:mobile_country_code=>"418", :mobile_network_code=>"30", :bands=>["GSM 900"], :brand=>"Zain", :notes=>"Former Orascom Telecom (Iraqna)", :operator=>"Zain Iraq", :status=>"Operational"}, ["418", "40"]=>{:mobile_country_code=>"418", :mobile_network_code=>"40", :bands=>["GSM 900"], :brand=>"Korek", :operator=>"Telecom Ltd", :status=>"Operational"}, ["418", "45"]=>{:mobile_country_code=>"418", :mobile_network_code=>"45", :bands=>["UMTS"], :brand=>"Mobitel", :operator=>"Mobitel Co. Ltd.", :status=>"Operational"}, ["418", "62"]=>{:mobile_country_code=>"418", :mobile_network_code=>"62", :bands=>["CDMA 800", "CDMA 1900"], :brand=>"Itisaluna", :operator=>"Itisaluna Wireless CO.", :status=>"Operational"}, ["418", "92"]=>{:mobile_country_code=>"418", :mobile_network_code=>"92", :bands=>["CDMA"], :brand=>"Omnnea", :operator=>"Omnnea Wireless", :status=>"Operational"}, ["419", "02"]=>{:mobile_country_code=>"419", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100"], :brand=>"zain KW", :operator=>"Zain Kuwait", :status=>"Operational"}, ["419", "03"]=>{:mobile_country_code=>"419", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"K.S.C Ooredoo", :operator=>"National Mobile Telecommunications", :status=>"Operational"}, ["419", "04"]=>{:mobile_country_code=>"419", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Viva", :operator=>"Kuwait Telecommunication Company", :status=>"Operational"}, ["420", "01"]=>{:mobile_country_code=>"420", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 900", "UMTS 2100", "LTE 2300"], :brand=>"Al Jawal (STC )", :notes=>"[51]", :operator=>"Saudi Telecom Company", :status=>"Operational"}, ["420", "03"]=>{:mobile_country_code=>"420", :mobile_network_code=>"03", :bands=>["GSM 900", "UMTS 900", "UMTS 2100", "LTE 2600"], :brand=>"Mobily", :notes=>"[51]", :operator=>"Etihad Etisalat Company", :status=>"Operational"}, ["420", "04"]=>{:mobile_country_code=>"420", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"Zain SA", :notes=>"Active September 2008[128][51]", :operator=>"Zain Saudi Arabia", :status=>"Operational"}, ["420", "05"]=>{:mobile_country_code=>"420", :mobile_network_code=>"05", :bands=>["MVNO"], :brand=>"Virgin Mobile", :operator=>"Virgin Mobile Saudi Arabia", :status=>"Operational"}, ["420", "21"]=>{:mobile_country_code=>"420", :mobile_network_code=>"21", :bands=>["GSM-R 900"], :brand=>"RGSM", :operator=>"Saudi Railways GSM", :status=>"Operational"}, ["421", "01"]=>{:mobile_country_code=>"421", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"SabaFon", :operator=>"", :status=>"Operational"}, ["421", "02"]=>{:mobile_country_code=>"421", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"MTN", :operator=>"Spacetel Yemen", :status=>"Operational"}, ["421", "03"]=>{:mobile_country_code=>"421", :mobile_network_code=>"03", :bands=>["CDMA2000 800"], :brand=>"Yemen Mobile", :operator=>"Yemen Mobile", :status=>"Operational"}, ["421", "04"]=>{:mobile_country_code=>"421", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"HiTS-UNITEL", :operator=>"Y", :status=>"Operational"}, ["422", "02"]=>{:mobile_country_code=>"422", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900"], :brand=>"Omantel", :notes=>"[51]", :operator=>"Oman Telecommunications Company", :status=>"Operational"}, ["422", "03"]=>{:mobile_country_code=>"422", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900"], :brand=>"Nawras", :notes=>"[51]", :operator=>"Omani Qatari Telecommunications Company SAOC", :status=>"Operational"}, ["422", "04"]=>{:mobile_country_code=>"422", :mobile_network_code=>"04", :bands=>["Unknown"], :brand=>"Omantel", :notes=>"[17]", :operator=>"Oman Telecommunications Company", :status=>"Unknown"}, ["424", "02"]=>{:mobile_country_code=>"424", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Etisalat", :operator=>"Emirates Telecom Corp", :status=>"Operational"}, ["424", "03"]=>{:mobile_country_code=>"424", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"du", :operator=>"Emirates Integrated Telecommunications Company", :status=>"Operational"}, ["425", "01"]=>{:mobile_country_code=>"425", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Orange", :notes=>"[51]", :operator=>"Partner Communications Company Ltd", :status=>"Operational"}, ["425", "02"]=>{:mobile_country_code=>"425", :mobile_network_code=>"02", :bands=>["GSM 1800", "UMTS 850", "UMTS 2100"], :brand=>"Cellcom", :operator=>"Cellcom Israel Ltd", :status=>"Operational"}, ["425", "03"]=>{:mobile_country_code=>"425", :mobile_network_code=>"03", :bands=>["CDMA 800", "UMTS 850", "UMTS 2100"], :brand=>"Pelephone", :operator=>"Pelephone Communications Ltd.", :status=>"Operational"}, ["425", "04"]=>{:mobile_country_code=>"425", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Globalsim Ltd", :status=>"Unknown"}, ["425", "05"]=>{:mobile_country_code=>"425", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"Jawwal", :notes=>"[10]\nTook over by Israel changed to MCC:425 MNC\u00A0:04", :operator=>"Palestine Cellular Communications, Ltd.", :status=>"Operational"}, ["425", "06"]=>{:mobile_country_code=>"425", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800"], :brand=>"Wataniya", :notes=>"[11]", :operator=>"Wataniya Palestine Mobile Telecommunications Company", :status=>"Operational"}, ["425", "07"]=>{:mobile_country_code=>"425", :mobile_network_code=>"07", :bands=>["iDEN 800", "UMTS 2100"], :brand=>"Hot Mobile", :notes=>"Former Mirs Communications. Uses Pelephone network for roaming", :operator=>"Hot Mobile Ltd", :status=>"Operational"}, ["425", "08"]=>{:mobile_country_code=>"425", :mobile_network_code=>"08", :bands=>["UMTS 2100"], :brand=>"Golan Telecom", :notes=>"Uses Cellcom network for roaming", :operator=>"Golan Telecom Ltd", :status=>"Operational"}, ["425", "11"]=>{:mobile_country_code=>"425", :mobile_network_code=>"11", :bands=>["MVNO"], :notes=>"[4]", :operator=>"365 Telecom", :status=>"Unknown"}, ["425", "12"]=>{:mobile_country_code=>"425", :mobile_network_code=>"12", :bands=>["MVNO"], :notes=>"[4]", :operator=>"Free Telecom", :status=>"Unknown"}, ["425", "13"]=>{:mobile_country_code=>"425", :mobile_network_code=>"13", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Ituran Cellular Communications", :status=>"Unknown"}, ["425", "14"]=>{:mobile_country_code=>"425", :mobile_network_code=>"14", :bands=>["MVNO"], :brand=>"Youphone", :notes=>"MVNO (Orange) [4]", :operator=>"Alon Cellular Ltd.", :status=>"Operational"}, ["425", "15"]=>{:mobile_country_code=>"425", :mobile_network_code=>"15", :bands=>["MVNO"], :brand=>"Home Cellular", :notes=>"MVNO (Cellcom) [4]", :operator=>"Home Cellular", :status=>"Operational"}, ["425", "16"]=>{:mobile_country_code=>"425", :mobile_network_code=>"16", :bands=>["MVNO"], :brand=>"Rami Levy", :notes=>"MVNO (Pelephone) [4]", :operator=>"Rami Levy", :status=>"Operational"}, ["425", "17"]=>{:mobile_country_code=>"425", :mobile_network_code=>"17", :bands=>["MVNO"], :notes=>"[4]", :operator=>"Gale Phone", :status=>"Unknown"}, ["425", "18"]=>{:mobile_country_code=>"425", :mobile_network_code=>"18", :bands=>["MVNO"], :brand=>"Cellact Communications", :notes=>"MVNO (Pelephone)", :operator=>"Cellact Communications Ltd.", :status=>"Operational"}, ["425", "19"]=>{:mobile_country_code=>"425", :mobile_network_code=>"19", :bands=>["Unknown"], :notes=>"[2]", :operator=>"Azi Communications Ltd.", :status=>"Unknown"}, ["425", "20"]=>{:mobile_country_code=>"425", :mobile_network_code=>"20", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Bezeq Ltd", :status=>"Unknown"}, ["425", "21"]=>{:mobile_country_code=>"425", :mobile_network_code=>"21", :bands=>["Unknown"], :notes=>"[28]", :operator=>"B.I.P. Communications Ltd.", :status=>"Unknown"}, ["425", "23"]=>{:mobile_country_code=>"425", :mobile_network_code=>"23", :bands=>["Unknown"], :notes=>"[83]", :operator=>"Beezz Communication Solutions Ltd.", :status=>"Unknown"}, ["426", "01"]=>{:mobile_country_code=>"426", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Batelco", :notes=>"[7][22]", :operator=>"Bahrain Telecommunications Company", :status=>"Operational"}, ["426", "02"]=>{:mobile_country_code=>"426", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"zain BH", :notes=>"[7][22]", :operator=>"Zain Bahrain", :status=>"Operational"}, ["426", "03"]=>{:mobile_country_code=>"426", :mobile_network_code=>"03", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Civil Aviation Authority", :status=>"Unknown"}, ["426", "04"]=>{:mobile_country_code=>"426", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"VIVA Bahrain", :notes=>"[7][22][23]", :operator=>"Viva Bahrain", :status=>"Operational"}, ["426", "05"]=>{:mobile_country_code=>"426", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"Batelco", :notes=>"Royal Court use only", :operator=>"Bahrain Telecommunications Company", :status=>"Operational"}, ["427", "01"]=>{:mobile_country_code=>"427", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800", "LTE 2600"], :brand=>"ooredoo", :notes=>"Former Qtel (Qatar Telecom)", :operator=>"ooredoo", :status=>"Operational"}, ["427", "02"]=>{:mobile_country_code=>"427", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Vodafone", :notes=>"[51]", :operator=>"Vodafone Qatar", :status=>"Operational"}, ["427", "05"]=>{:mobile_country_code=>"427", :mobile_network_code=>"05", :bands=>["TETRA 380"], :brand=>"Ministry of Interior", :operator=>"Ministry of Interior", :status=>"Operational"}, ["427", "06"]=>{:mobile_country_code=>"427", :mobile_network_code=>"06", :bands=>["LTE"], :brand=>"Ministry of Interior", :notes=>"[27]", :operator=>"Ministry of Interior", :status=>"Operational"}, ["428", "88"]=>{:mobile_country_code=>"428", :mobile_network_code=>"88", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Unitel", :operator=>"Unitel LLC", :status=>"Operational"}, ["428", "91"]=>{:mobile_country_code=>"428", :mobile_network_code=>"91", :bands=>["CDMA2000 800", "UMTS 2100"], :brand=>"Skytel", :operator=>"Skytel LLC", :status=>"Operational"}, ["428", "98"]=>{:mobile_country_code=>"428", :mobile_network_code=>"98", :bands=>["CDMA2000 450", "UMTS 2100"], :brand=>"G-Mobile", :operator=>"G-Mobile LLC", :status=>"Operational"}, ["428", "99"]=>{:mobile_country_code=>"428", :mobile_network_code=>"99", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Mobicom", :operator=>"Mobicom Corporation", :status=>"Operational"}, ["429", "01"]=>{:mobile_country_code=>"429", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Namaste / NT Mobile", :operator=>"Nepal Telecom", :status=>"Operational"}, ["429", "02"]=>{:mobile_country_code=>"429", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Ncell", :operator=>"Ncell Pvt. Ltd.Spice Nepal", :status=>"Operational"}, ["429", "03"]=>{:mobile_country_code=>"429", :mobile_network_code=>"03", :bands=>["CDMA2000 800"], :brand=>"Sky/C-Phone", :operator=>"Nepal Telecom", :status=>"Operational"}, ["429", "04"]=>{:mobile_country_code=>"429", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"SmartCell", :operator=>"Smart Telecom Pvt. Ltd.", :status=>"Operational"}, ["432", "11"]=>{:mobile_country_code=>"432", :mobile_network_code=>"11", :bands=>["GSM 900", "GSM 1800", "UMTS"], :brand=>"IR-MCI (Hamrahe Avval)", :operator=>"Mobile Communications Company of Iran", :status=>"Operational"}, ["432", "14"]=>{:mobile_country_code=>"432", :mobile_network_code=>"14", :bands=>["GSM 900"], :brand=>"TKC", :operator=>"Telecommunication Kish Company", :status=>"Operational"}, ["432", "19"]=>{:mobile_country_code=>"432", :mobile_network_code=>"19", :bands=>["GSM 900"], :brand=>"MTCE (Espadan)", :operator=>"Mobile Telecommunications Company of Esfahan", :status=>"Operational"}, ["432", "20"]=>{:mobile_country_code=>"432", :mobile_network_code=>"20", :bands=>["UMTS"], :brand=>"Rightel", :notes=>"[82]", :operator=>"", :status=>"Operational"}, ["432", "32"]=>{:mobile_country_code=>"432", :mobile_network_code=>"32", :bands=>["GSM 900", "GSM 1800"], :brand=>"Taliya", :operator=>"Rafsanjan Industrial Complex", :status=>"Operational"}, ["432", "35"]=>{:mobile_country_code=>"432", :mobile_network_code=>"35", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"MTN Irancell", :operator=>"MTN Irancell Telecommunications Services Company", :status=>"Operational"}, ["432", "70"]=>{:mobile_country_code=>"432", :mobile_network_code=>"70", :bands=>["GSM 900", "GSM 1800"], :brand=>"TCI", :notes=>"Mostly used in rural areas with poor telephone line and cable equipments, instead of telephone", :operator=>"Telephone Communications Company of Iran", :status=>"Operational"}, ["432", "93"]=>{:mobile_country_code=>"432", :mobile_network_code=>"93", :bands=>["GSM 1800"], :brand=>"Iraphone", :notes=>"Mostly used in rural areas with poor telephone line and cable equipments, instead of telephone", :operator=>"Iraphone", :status=>"Operational"}, ["434", "01"]=>{:mobile_country_code=>"434", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :operator=>"Buztel", :status=>"Not operational"}, ["434", "02"]=>{:mobile_country_code=>"434", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :operator=>"Uzmacom", :status=>"Not operational"}, ["434", "03"]=>{:mobile_country_code=>"434", :mobile_network_code=>"03", :bands=>["CDMA2000 450"], :brand=>"UzMobile", :notes=>"EVDO Rev A", :operator=>"Uzbektelekom", :status=>"Operational"}, ["434", "04"]=>{:mobile_country_code=>"434", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"Beeline", :notes=>"Former Daewoo Unitel", :operator=>"Unitel LLC", :status=>"Operational"}, ["434", "05"]=>{:mobile_country_code=>"434", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"Ucell", :notes=>"[158]", :operator=>"Coscom", :status=>"Operational"}, ["434", "06"]=>{:mobile_country_code=>"434", :mobile_network_code=>"06", :bands=>["CDMA2000 800"], :brand=>"Perfectum Mobile", :operator=>"RUBICON WIRELESS COMMUNICATION", :status=>"Operational"}, ["434", "07"]=>{:mobile_country_code=>"434", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"MTS", :notes=>"License revoked", :operator=>"Uzdunrobita", :status=>"Not operational"}, ["436", "01"]=>{:mobile_country_code=>"436", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800"], :brand=>"Tcell", :notes=>"[13]", :operator=>"JV Somoncom", :status=>"Operational"}, ["436", "02"]=>{:mobile_country_code=>"436", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 800"], :brand=>"Tcell", :notes=>"[14]", :operator=>"Indigo Tajikistan", :status=>"Operational"}, ["436", "03"]=>{:mobile_country_code=>"436", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Megafon Tajikistan", :notes=>"[15]", :operator=>"TT Mobile", :status=>"Operational"}, ["436", "04"]=>{:mobile_country_code=>"436", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800", "LTE 2100"], :brand=>"Babilon-M", :notes=>"[16]", :operator=>"Babilon-Mobile", :status=>"Operational"}, ["436", "05"]=>{:mobile_country_code=>"436", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Beeline", :notes=>"[17]", :operator=>"Tacom", :status=>"Operational"}, ["436", "12"]=>{:mobile_country_code=>"436", :mobile_network_code=>"12", :bands=>["UMTS 2100"], :brand=>"Tcell", :notes=>"[18]", :operator=>"Indigo", :status=>"Unknown"}, ["437", "01"]=>{:mobile_country_code=>"437", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Beeline", :notes=>"former Bitel", :operator=>"Sky Mobile LLC", :status=>"Operational"}, ["437", "03"]=>{:mobile_country_code=>"437", :mobile_network_code=>"03", :bands=>["CDMA2000"], :brand=>"Fonex", :operator=>"Aktel Ltd", :status=>"Operational"}, ["437", "05"]=>{:mobile_country_code=>"437", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"MegaCom", :operator=>"Alfa Telecom CJSC", :status=>"Operational"}, ["437", "09"]=>{:mobile_country_code=>"437", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800"], :brand=>"O!", :operator=>"NurTelecom LLC", :status=>"Operational"}, ["438", "01"]=>{:mobile_country_code=>"438", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MTS (BARASH Communication)", :operator=>"ES \"MTS-Turkmenistan\"", :status=>"Operational"}, ["438", "02"]=>{:mobile_country_code=>"438", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"TM-Cell", :operator=>"Altyn Asyr", :status=>"Operational"}, ["440", "00"]=>{:mobile_country_code=>"440", :mobile_network_code=>"00", :bands=>["UMTS 1700"], :brand=>"Y!Mobile", :operator=>"EMOBILE Limited", :status=>"Operational"}, ["440", "01"]=>{:mobile_country_code=>"440", :mobile_network_code=>"01", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "02"]=>{:mobile_country_code=>"440", :mobile_network_code=>"02", :bands=>["UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT DoCoMo - Kansai", :status=>"Operational"}, ["440", "03"]=>{:mobile_country_code=>"440", :mobile_network_code=>"03", :bands=>["UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT DoCoMo - Hokuriku", :status=>"Operational"}, ["440", "04"]=>{:mobile_country_code=>"440", :mobile_network_code=>"04", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "06"]=>{:mobile_country_code=>"440", :mobile_network_code=>"06", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "07"]=>{:mobile_country_code=>"440", :mobile_network_code=>"07", :bands=>["CDMA2000", "1X EV-DO Rev.A"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "08"]=>{:mobile_country_code=>"440", :mobile_network_code=>"08", :bands=>["CDMA2000"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "09"]=>{:mobile_country_code=>"440", :mobile_network_code=>"09", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Kansai", :status=>"Operational"}, ["440", "10"]=>{:mobile_country_code=>"440", :mobile_network_code=>"10", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100\u3000", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "11"]=>{:mobile_country_code=>"440", :mobile_network_code=>"11", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Tokai", :status=>"Operational"}, ["440", "12"]=>{:mobile_country_code=>"440", :mobile_network_code=>"12", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "13"]=>{:mobile_country_code=>"440", :mobile_network_code=>"13", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "14"]=>{:mobile_country_code=>"440", :mobile_network_code=>"14", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Tohoku", :status=>"Operational"}, ["440", "15"]=>{:mobile_country_code=>"440", :mobile_network_code=>"15", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "16"]=>{:mobile_country_code=>"440", :mobile_network_code=>"16", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "17"]=>{:mobile_country_code=>"440", :mobile_network_code=>"17", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "18"]=>{:mobile_country_code=>"440", :mobile_network_code=>"18", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Tokai", :status=>"Operational"}, ["440", "19"]=>{:mobile_country_code=>"440", :mobile_network_code=>"19", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Hokkaido", :status=>"Operational"}, ["440", "20"]=>{:mobile_country_code=>"440", :mobile_network_code=>"20", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "21"]=>{:mobile_country_code=>"440", :mobile_network_code=>"21", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "22"]=>{:mobile_country_code=>"440", :mobile_network_code=>"22", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Kansai", :status=>"Operational"}, ["440", "23"]=>{:mobile_country_code=>"440", :mobile_network_code=>"23", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Tokai", :status=>"Operational"}, ["440", "24"]=>{:mobile_country_code=>"440", :mobile_network_code=>"24", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Chugoku", :status=>"Operational"}, ["440", "25"]=>{:mobile_country_code=>"440", :mobile_network_code=>"25", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Hokkaido", :status=>"Operational"}, ["440", "26"]=>{:mobile_country_code=>"440", :mobile_network_code=>"26", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Kyushu", :status=>"Operational"}, ["440", "27"]=>{:mobile_country_code=>"440", :mobile_network_code=>"27", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Tohoku", :status=>"Operational"}, ["440", "28"]=>{:mobile_country_code=>"440", :mobile_network_code=>"28", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Shikoku", :status=>"Operational"}, ["440", "29"]=>{:mobile_country_code=>"440", :mobile_network_code=>"29", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "30"]=>{:mobile_country_code=>"440", :mobile_network_code=>"30", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "31"]=>{:mobile_country_code=>"440", :mobile_network_code=>"31", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Kansai", :status=>"Operational"}, ["440", "32"]=>{:mobile_country_code=>"440", :mobile_network_code=>"32", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT docomo", :operator=>"NTT docomo", :status=>"Operational"}, ["440", "33"]=>{:mobile_country_code=>"440", :mobile_network_code=>"33", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Tokai", :status=>"Operational"}, ["440", "34"]=>{:mobile_country_code=>"440", :mobile_network_code=>"34", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT docomo", :operator=>"NTT docomo - Kyushu", :status=>"Operational"}, ["440", "35"]=>{:mobile_country_code=>"440", :mobile_network_code=>"35", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Kansai", :status=>"Operational"}, ["440", "36"]=>{:mobile_country_code=>"440", :mobile_network_code=>"36", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "37"]=>{:mobile_country_code=>"440", :mobile_network_code=>"37", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "38"]=>{:mobile_country_code=>"440", :mobile_network_code=>"38", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "39"]=>{:mobile_country_code=>"440", :mobile_network_code=>"39", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "40"]=>{:mobile_country_code=>"440", :mobile_network_code=>"40", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "41"]=>{:mobile_country_code=>"440", :mobile_network_code=>"41", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "42"]=>{:mobile_country_code=>"440", :mobile_network_code=>"42", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "43"]=>{:mobile_country_code=>"440", :mobile_network_code=>"43", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "44"]=>{:mobile_country_code=>"440", :mobile_network_code=>"44", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "45"]=>{:mobile_country_code=>"440", :mobile_network_code=>"45", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "46"]=>{:mobile_country_code=>"440", :mobile_network_code=>"46", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "47"]=>{:mobile_country_code=>"440", :mobile_network_code=>"47", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "48"]=>{:mobile_country_code=>"440", :mobile_network_code=>"48", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "49"]=>{:mobile_country_code=>"440", :mobile_network_code=>"49", :bands=>["UMTS", "HSDPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "50"]=>{:mobile_country_code=>"440", :mobile_network_code=>"50", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "51"]=>{:mobile_country_code=>"440", :mobile_network_code=>"51", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "52"]=>{:mobile_country_code=>"440", :mobile_network_code=>"52", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "53"]=>{:mobile_country_code=>"440", :mobile_network_code=>"53", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "54"]=>{:mobile_country_code=>"440", :mobile_network_code=>"54", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "55"]=>{:mobile_country_code=>"440", :mobile_network_code=>"55", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "56"]=>{:mobile_country_code=>"440", :mobile_network_code=>"56", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "58"]=>{:mobile_country_code=>"440", :mobile_network_code=>"58", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Kansai", :status=>"Operational"}, ["440", "60"]=>{:mobile_country_code=>"440", :mobile_network_code=>"60", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Kansai", :status=>"Operational"}, ["440", "61"]=>{:mobile_country_code=>"440", :mobile_network_code=>"61", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Chugoku", :status=>"Operational"}, ["440", "62"]=>{:mobile_country_code=>"440", :mobile_network_code=>"62", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Kyushu", :status=>"Operational"}, ["440", "63"]=>{:mobile_country_code=>"440", :mobile_network_code=>"63", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "64"]=>{:mobile_country_code=>"440", :mobile_network_code=>"64", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "65"]=>{:mobile_country_code=>"440", :mobile_network_code=>"65", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Shikoku", :status=>"Operational"}, ["440", "66"]=>{:mobile_country_code=>"440", :mobile_network_code=>"66", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "67"]=>{:mobile_country_code=>"440", :mobile_network_code=>"67", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Tohoku", :status=>"Operational"}, ["440", "68"]=>{:mobile_country_code=>"440", :mobile_network_code=>"68", :bands=>["UMTS 800", "UMTS 1700", "UMTS 2100"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Kyushu", :status=>"Operational"}, ["440", "69"]=>{:mobile_country_code=>"440", :mobile_network_code=>"69", :bands=>["UMTS", "WCDMA", "HSDPA", "HSUPA", "LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["440", "70"]=>{:mobile_country_code=>"440", :mobile_network_code=>"70", :bands=>["CDMA2000 800", "CDMA2000 2100"], :brand=>"au", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "71"]=>{:mobile_country_code=>"440", :mobile_network_code=>"71", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "72"]=>{:mobile_country_code=>"440", :mobile_network_code=>"72", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "73"]=>{:mobile_country_code=>"440", :mobile_network_code=>"73", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "74"]=>{:mobile_country_code=>"440", :mobile_network_code=>"74", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "75"]=>{:mobile_country_code=>"440", :mobile_network_code=>"75", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "76"]=>{:mobile_country_code=>"440", :mobile_network_code=>"76", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "77"]=>{:mobile_country_code=>"440", :mobile_network_code=>"77", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "78"]=>{:mobile_country_code=>"440", :mobile_network_code=>"78", :bands=>["UMTS", "HSDPA"], :operator=>"Okinawa Cellular Telephone", :status=>"Operational"}, ["440", "79"]=>{:mobile_country_code=>"440", :mobile_network_code=>"79", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "80"]=>{:mobile_country_code=>"440", :mobile_network_code=>"80", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Cellular Tokyo", :status=>"Not operational"}, ["440", "81"]=>{:mobile_country_code=>"440", :mobile_network_code=>"81", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Cellular Tokyo", :status=>"Not operational"}, ["440", "82"]=>{:mobile_country_code=>"440", :mobile_network_code=>"82", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Phone Kansai", :status=>"Not operational"}, ["440", "83"]=>{:mobile_country_code=>"440", :mobile_network_code=>"83", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Cellular Tokai", :status=>"Not operational"}, ["440", "84"]=>{:mobile_country_code=>"440", :mobile_network_code=>"84", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Phone Kansai", :status=>"Not operational"}, ["440", "85"]=>{:mobile_country_code=>"440", :mobile_network_code=>"85", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Cellular Tokai", :status=>"Not operational"}, ["440", "86"]=>{:mobile_country_code=>"440", :mobile_network_code=>"86", :bands=>["GSM"], :brand=>"TU-KA", :notes=>"Closed on March 31, 2008.", :operator=>"TU-KA Cellular Tokyo", :status=>"Not operational"}, ["440", "87"]=>{:mobile_country_code=>"440", :mobile_network_code=>"87", :bands=>["UMTS", "HSDPA"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo - Chugoku", :status=>"Operational"}, ["440", "88"]=>{:mobile_country_code=>"440", :mobile_network_code=>"88", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "89"]=>{:mobile_country_code=>"440", :mobile_network_code=>"89", :bands=>["WCDMA"], :brand=>"KDDI", :operator=>"KDDI Corporation", :status=>"Operational"}, ["440", "90"]=>{:mobile_country_code=>"440", :mobile_network_code=>"90", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "92"]=>{:mobile_country_code=>"440", :mobile_network_code=>"92", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "93"]=>{:mobile_country_code=>"440", :mobile_network_code=>"93", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "94"]=>{:mobile_country_code=>"440", :mobile_network_code=>"94", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "95"]=>{:mobile_country_code=>"440", :mobile_network_code=>"95", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "96"]=>{:mobile_country_code=>"440", :mobile_network_code=>"96", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "97"]=>{:mobile_country_code=>"440", :mobile_network_code=>"97", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "98"]=>{:mobile_country_code=>"440", :mobile_network_code=>"98", :bands=>["UMTS", "HSPA+", "DC-HSDPA"], :brand=>"SoftBank", :notes=>"Formerly known as Vodafone K.K.", :operator=>"SoftBank Mobile Corp", :status=>"Operational"}, ["440", "99"]=>{:mobile_country_code=>"440", :mobile_network_code=>"99", :bands=>["LTE (4G)"], :brand=>"NTT DoCoMo", :operator=>"NTT DoCoMo", :status=>"Operational"}, ["450", "02"]=>{:mobile_country_code=>"450", :mobile_network_code=>"02", :bands=>["CDMA2000 1700"], :brand=>"KT", :notes=>"Formerly Hansol PCS, Merged with KT", :operator=>"KT", :status=>"Discontinued"}, ["450", "03"]=>{:mobile_country_code=>"450", :mobile_network_code=>"03", :bands=>["CDMA2000 800"], :brand=>"Power 017", :notes=>"Merged with SK Telecom in 2002", :operator=>"Shinsegi Telecom, Inc.", :status=>"Discontinued"}, ["450", "04"]=>{:mobile_country_code=>"450", :mobile_network_code=>"04", :bands=>["CDMA2000 1700"], :brand=>"KT", :notes=>"HSM", :operator=>"KT", :status=>"Discontinued"}, ["450", "05"]=>{:mobile_country_code=>"450", :mobile_network_code=>"05", :bands=>["CDMA2000 800", "UMTS 2100", "LTE 850", "LTE 1800"], :brand=>"SKTelecom", :operator=>"SK Telecom", :status=>"Operational"}, ["450", "06"]=>{:mobile_country_code=>"450", :mobile_network_code=>"06", :bands=>["CDMA2000 1700", "LTE 850 2100 2600"], :brand=>"LG U+", :operator=>"LG Telecom", :status=>"Operational"}, ["450", "08"]=>{:mobile_country_code=>"450", :mobile_network_code=>"08", :bands=>["UMTS 2100", "LTE 900", "LTE 1800"], :brand=>"olleh", :operator=>"KT", :status=>"Operational"}, ["450", "11"]=>{:mobile_country_code=>"450", :mobile_network_code=>"11", :bands=>["UMTS 2100"], :brand=>"SKTelecom", :notes=>"SKTelecom MVNO", :operator=>"Korea Cable Telecom(t-plus), Eco-mobile", :status=>"Operational"}, ["452", "01"]=>{:mobile_country_code=>"452", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MobiFone", :operator=>"Vietnam Mobile Telecom Services Company", :status=>"Operational"}, ["452", "02"]=>{:mobile_country_code=>"452", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vinaphone", :operator=>"Vietnam Telecom Services Company", :status=>"Operational"}, ["452", "03"]=>{:mobile_country_code=>"452", :mobile_network_code=>"03", :bands=>["CDMA2000 800"], :brand=>"S-Fone", :notes=>"License revoked [160]", :operator=>"S-Telecom", :status=>"Not operational"}, ["452", "04"]=>{:mobile_country_code=>"452", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Viettel Mobile", :operator=>"Viettel Telecom", :status=>"Operational"}, ["452", "05"]=>{:mobile_country_code=>"452", :mobile_network_code=>"05", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vietnamobile", :operator=>"Hanoi Telecom", :status=>"Operational"}, ["452", "06"]=>{:mobile_country_code=>"452", :mobile_network_code=>"06", :bands=>["CDMA2000 450"], :brand=>"EVNTelecom", :notes=>"License revoked [160]", :operator=>"EVN Telecom", :status=>"Not operational"}, ["452", "07"]=>{:mobile_country_code=>"452", :mobile_network_code=>"07", :bands=>["GSM 1800"], :brand=>"Gmobile", :notes=>"Former Beeline", :operator=>"GTEL Mobile JSC", :status=>"Operational"}, ["452", "08"]=>{:mobile_country_code=>"452", :mobile_network_code=>"08", :bands=>["UMTS 2100"], :brand=>"EVNTelecom", :notes=>"Acquired by Viettel Mobile", :operator=>"EVN Telecom", :status=>"Not operational"}, ["454", "00"]=>{:mobile_country_code=>"454", :mobile_network_code=>"00", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"1O1O / One2Free / New World Mobility", :operator=>"CSL Limited", :status=>"Operational"}, ["454", "01"]=>{:mobile_country_code=>"454", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :notes=>"MVNO on CSL network; network code operational only at land borders and Airport to attract inbound roamers to join 454-00", :operator=>"CITIC Telecom 1616", :status=>"Operational"}, ["454", "02"]=>{:mobile_country_code=>"454", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :notes=>"Network code operational only at land borders and Airport to attract inbound roamers to join 454-00", :operator=>"CSL Limited", :status=>"Operational"}, ["454", "03"]=>{:mobile_country_code=>"454", :mobile_network_code=>"03", :bands=>["UMTS 900", "UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"3", :operator=>"Hutchison Telecom", :status=>"Operational"}, ["454", "04"]=>{:mobile_country_code=>"454", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"3 (2G)", :operator=>"Hutchison Telecom", :status=>"Operational"}, ["454", "05"]=>{:mobile_country_code=>"454", :mobile_network_code=>"05", :bands=>["CDMA 800"], :brand=>"3 (CDMA)", :notes=>"Defunct CDMA IS-95 network, decommissioned on 19 Nov 2008 at 23:59", :operator=>"Hutchison Telecom", :status=>"Not operational"}, ["454", "06"]=>{:mobile_country_code=>"454", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 1800"], :brand=>"SmarTone", :operator=>"SmarTone Mobile Communications Limited", :status=>"Operational"}, ["454", "07"]=>{:mobile_country_code=>"454", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :notes=>"MVNO on PCCW Mobile network code operational only at land borders and Airport to attract inbound roamers to join 454-16 or 454-19", :operator=>"China Unicom (Hong Kong) Limited", :status=>"Operational"}, ["454", "08"]=>{:mobile_country_code=>"454", :mobile_network_code=>"08", :bands=>["Unknown"], :brand=>"Truphone", :notes=>"MVNO", :operator=>"Truphone Limited", :status=>"Operational"}, ["454", "09"]=>{:mobile_country_code=>"454", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800"], :notes=>"MVNO on CSL network", :operator=>"China Motion Telecom", :status=>"Operational"}, ["454", "10"]=>{:mobile_country_code=>"454", :mobile_network_code=>"10", :bands=>["GSM 1800"], :brand=>"New World Mobility", :notes=>"Signal Combined with 454-00", :operator=>"CSL Limited", :status=>"Not Operational"}, ["454", "11"]=>{:mobile_country_code=>"454", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"MVNO on PCCW Mobile and Hutchison Telecom networks", :operator=>"China-Hong Kong Telecom", :status=>"Operational"}, ["454", "12"]=>{:mobile_country_code=>"454", :mobile_network_code=>"12", :bands=>["GSM 1800", "LTE 1800", "LTE 2600"], :brand=>"CMCC HK", :notes=>"Formerly Peoples", :operator=>"China Mobile Hong Kong Company Limited", :status=>"Operational"}, ["454", "13"]=>{:mobile_country_code=>"454", :mobile_network_code=>"13", :bands=>["UMTS 2100"], :brand=>"CMCC HK", :notes=>"MVNO on PCCW Mobile (3G)", :operator=>"China Mobile Hong Kong Company Limited", :status=>"MVNO"}, ["454", "14"]=>{:mobile_country_code=>"454", :mobile_network_code=>"14", :bands=>["GSM 900", "GSM 1800"], :notes=>"Network code operational only at land borders and Airport to attract inbound roamers to join 454-03 or 454-04", :operator=>"Hutchison Telecom", :status=>"Operational"}, ["454", "15"]=>{:mobile_country_code=>"454", :mobile_network_code=>"15", :bands=>["GSM 1800"], :notes=>"Network code operational only at land borders and Airport to attract inbound roamers to join 454-06", :operator=>"SmarTone Mobile Communications Limited", :status=>"Operational"}, ["454", "16"]=>{:mobile_country_code=>"454", :mobile_network_code=>"16", :bands=>["GSM 1800"], :brand=>"PCCW Mobile (2G)", :notes=>"Formerly SUNDAY", :operator=>"PCCW-HKT", :status=>"Operational"}, ["454", "17"]=>{:mobile_country_code=>"454", :mobile_network_code=>"17", :bands=>["GSM 1800"], :notes=>"Network code operational only at land borders and Airport to attract inbound roamers to join 454-06", :operator=>"SmarTone Mobile Communications Limited", :status=>"Operational"}, ["454", "18"]=>{:mobile_country_code=>"454", :mobile_network_code=>"18", :bands=>["GSM 900", "GSM 1800"], :operator=>"CSL Limited", :status=>"Not Operational"}, ["454", "19"]=>{:mobile_country_code=>"454", :mobile_network_code=>"19", :bands=>["UMTS 2100", "LTE 1800", "LTE 2600"], :brand=>"PCCW Mobile (3G/4G)", :operator=>"PCCW-HKT", :status=>"Operational"}, ["454", "22"]=>{:mobile_country_code=>"454", :mobile_network_code=>"22", :bands=>["GSM 1800"], :brand=>"P Plus", :notes=>"P Plus Communications was acquired by SmarTone Mobile Communications Limited", :operator=>"P Plus Communications", :status=>"Not operational"}, ["454", "29"]=>{:mobile_country_code=>"454", :mobile_network_code=>"29", :bands=>["CDMA 800"], :brand=>"PCCW Mobile (CDMA)", :notes=>"CDMA2000 1xEV-DO Rev A network for inbound roamers, with limited coverage", :operator=>"PCCW-HKT", :status=>"Operational"}, ["455", "00"]=>{:mobile_country_code=>"455", :mobile_network_code=>"00", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"SmarTone", :operator=>"SmarTone \u2013 Comunica\u00E7\u00F5es M\u00F5veis, S.A.", :status=>"Operational"}, ["455", "01"]=>{:mobile_country_code=>"455", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"CTM", :operator=>"C.T.M. Telemovel+", :status=>"Operational"}, ["455", "02"]=>{:mobile_country_code=>"455", :mobile_network_code=>"02", :bands=>["CDMA 800"], :brand=>"China Telecom", :operator=>"China Telecom", :status=>"Operational"}, ["455", "03"]=>{:mobile_country_code=>"455", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"3", :operator=>"Hutchison Telecom", :status=>"Operational"}, ["455", "04"]=>{:mobile_country_code=>"455", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"CTM", :operator=>"C.T.M. Telemovel+", :status=>"Operational"}, ["455", "05"]=>{:mobile_country_code=>"455", :mobile_network_code=>"05", :bands=>["UMTS 900", "UMTS 2100"], :brand=>"3", :operator=>"Hutchison Telecom", :status=>"Operational"}, ["455", "06"]=>{:mobile_country_code=>"455", :mobile_network_code=>"06", :bands=>["Unknown"], :brand=>"SmarTone", :notes=>"[4]", :operator=>"SmarTone \u2013 Comunica\u00E7\u00F5es M\u00F5veis, S.A.", :status=>"Unknown"}, ["456", "01"]=>{:mobile_country_code=>"456", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cellcard", :operator=>"The Royal Group", :status=>"Operational"}, ["456", "02"]=>{:mobile_country_code=>"456", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Smart Axiata", :notes=>"[7]", :operator=>"Smart Axiata Co. Ltd", :status=>"Operational"}, ["456", "03"]=>{:mobile_country_code=>"456", :mobile_network_code=>"03", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"qb", :notes=>"aka CADCOMMS", :operator=>"Cambodia Advance Communications Co. Ltd", :status=>"Operational"}, ["456", "04"]=>{:mobile_country_code=>"456", :mobile_network_code=>"04", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"qb", :notes=>"aka CADCOMMS", :operator=>"Cambodia Advance Communications Co. Ltd", :status=>"Operational"}, ["456", "05"]=>{:mobile_country_code=>"456", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Smart Axiata", :operator=>"Smart Axiata Co. Ltd", :status=>"Operational"}, ["456", "06"]=>{:mobile_country_code=>"456", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Smart Axiata", :operator=>"Smart Axiata Co. Ltd", :status=>"Operational"}, ["456", "08"]=>{:mobile_country_code=>"456", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Metfone", :operator=>"Viettel", :status=>"Operational"}, ["456", "09"]=>{:mobile_country_code=>"456", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800"], :brand=>"Beeline", :operator=>"Sotelco Ltd.", :status=>"Operational"}, ["456", "11"]=>{:mobile_country_code=>"456", :mobile_network_code=>"11", :bands=>["CDMA2000"], :brand=>"Excell", :operator=>"", :status=>"Operational"}, ["456", "18"]=>{:mobile_country_code=>"456", :mobile_network_code=>"18", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cellcard", :operator=>"The Royal Group", :status=>"Operational"}, ["457", "01"]=>{:mobile_country_code=>"457", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 4G"], :brand=>"LTC", :operator=>"LaoTelecom", :status=>"Operational"}, ["457", "02"]=>{:mobile_country_code=>"457", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"ETL", :operator=>"Enterprise of Telecommunications Lao", :status=>"Operational"}, ["457", "03"]=>{:mobile_country_code=>"457", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Unitel", :notes=>"Former Lao-Asia Telecom Company (LAT)", :operator=>"Star Telecom Co., Ltd", :status=>"Operational"}, ["457", "08"]=>{:mobile_country_code=>"457", :mobile_network_code=>"08", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 4G"], :brand=>"Beeline", :notes=>"Former Millicom Lao Co Ltd (Tigo)", :operator=>"VimpelCom Lao Ltd", :status=>"Operational"}, ["460", "00"]=>{:mobile_country_code=>"460", :mobile_network_code=>"00", :bands=>["GSM 900", "GSM 1800", "TD-SCDMA 1900", "TD-SCDMA 2000", "TD-LTE 1900", "TD-LTE 2300", "TD-LTE 2600"], :brand=>"China Mobile", :operator=>"China Mobile", :status=>"Operational"}, ["460", "01"]=>{:mobile_country_code=>"460", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "TD-LTE 2300", "TD-LTE 2600", "FDD-LTE 1800"], :brand=>"China Unicom", :notes=>"CDMA network sold to China Telecom, WCDMA commercial trial started in May 2009 and in full commercial operation as of October 2009.", :operator=>"China Unicom", :status=>"Operational"}, ["460", "02"]=>{:mobile_country_code=>"460", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "TD-SCDMA 1900", "TD-SCDMA 2000", "TD-LTE 1900", "TD-LTE 2300", "TD-LTE 2600"], :brand=>"China Mobile", :operator=>"China Mobile", :status=>"Not operational"}, ["460", "03"]=>{:mobile_country_code=>"460", :mobile_network_code=>"03", :bands=>["CDMA2000 800", "FDD-LTE 1800", "FDD-LTE 2100", "TD-LTE 2300", "TD-LTE 2600"], :brand=>"China Telecom", :notes=>"EV-DO", :operator=>"China Telecom", :status=>"Operational"}, ["460", "04"]=>{:mobile_country_code=>"460", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Global Star Satellite", :status=>"Unknown"}, ["460", "05"]=>{:mobile_country_code=>"460", :mobile_network_code=>"05", :bands=>["CDMA2000 800", "FDD-LTE 1800", "FDD-LTE 2100", "TD-LTE 2300", "TD-LTE 2600"], :brand=>"China Telecom", :operator=>"China Telecom", :status=>"Not operational"}, ["460", "06"]=>{:mobile_country_code=>"460", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"China Unicom", :operator=>"China Unicom", :status=>"Not operational"}, ["460", "07"]=>{:mobile_country_code=>"460", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "TD-SCDMA 1900", "TD-SCDMA 2000", "TD-LTE 1900", "TD-LTE 2300", "TD-LTE 2600"], :brand=>"China Mobile", :operator=>"China Mobile", :status=>"Not operational"}, ["460", "20"]=>{:mobile_country_code=>"460", :mobile_network_code=>"20", :bands=>["GSM-R"], :brand=>"China Tietong", :operator=>"China Tietong", :status=>"Operational"}, ["466", "01"]=>{:mobile_country_code=>"466", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"FarEasTone", :operator=>"Far EasTone Telecommunications Co Ltd", :status=>"Operational"}, ["466", "05"]=>{:mobile_country_code=>"466", :mobile_network_code=>"05", :bands=>["CDMA2000 800"], :brand=>"APTG", :operator=>"Asia Pacific Telecom", :status=>"Operational"}, ["466", "06"]=>{:mobile_country_code=>"466", :mobile_network_code=>"06", :bands=>["GSM 1800"], :brand=>"FarEasTone", :notes=>"Acquired by KG Telecom in 1999 and then KG Telecom get acquired by FarEasTone", :operator=>"Far EasTone Telecommunications Co Ltd", :status=>"operational"}, ["466", "11"]=>{:mobile_country_code=>"466", :mobile_network_code=>"11", :bands=>["Refer to 466-92 Chunghwa Telecom"], :brand=>"Chunghwa LDM", :operator=>"LDTA/Chunghwa Telecom", :status=>"Operational"}, ["466", "88"]=>{:mobile_country_code=>"466", :mobile_network_code=>"88", :bands=>["GSM 1800"], :brand=>"FarEasTone", :notes=>"In use by FarEasTone now, which acquired KG Telecom in 2004. brand was operated until 2009", :operator=>"Far EasTone Telecommunications Co Ltd", :status=>"operational"}, ["466", "89"]=>{:mobile_country_code=>"466", :mobile_network_code=>"89", :bands=>["UMTS 2100"], :brand=>"VIBO", :operator=>"VIBO Telecom", :status=>"Operational"}, ["466", "92"]=>{:mobile_country_code=>"466", :mobile_network_code=>"92", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE900", "LTE1800"], :brand=>"Chunghwa", :operator=>"Chunghwa Telecom", :status=>"Operational"}, ["466", "93"]=>{:mobile_country_code=>"466", :mobile_network_code=>"93", :bands=>["GSM 900"], :brand=>"MobiTai", :notes=>"Acquired by Taiwan Mobile in 2004. MobiTai brand was operated until 2008", :operator=>"Mobitai Communications", :status=>"Not operational"}, ["466", "97"]=>{:mobile_country_code=>"466", :mobile_network_code=>"97", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Taiwan Mobile", :operator=>"Taiwan Mobile Co. Ltd", :status=>"Operational"}, ["466", "99"]=>{:mobile_country_code=>"466", :mobile_network_code=>"99", :bands=>["GSM 900"], :brand=>"TransAsia", :notes=>"Acquired by Taiwan Mobile in 2002. TransAsia brand was operated until 2008", :operator=>"TransAsia Telecoms", :status=>"Not operational"}, ["467", "05"]=>{:mobile_country_code=>"467", :mobile_network_code=>"05", :bands=>["UMTS 2100"], :brand=>"Koryolink", :operator=>"Cheo Technology Jv Company", :status=>"Operational"}, ["467", "193"]=>{:mobile_country_code=>"467", :mobile_network_code=>"193", :bands=>["GSM 900"], :brand=>"SunNet", :operator=>"Korea Posts and Telecommunications Corporation", :status=>"discontinued"}, ["470", "01"]=>{:mobile_country_code=>"470", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Grameenphone", :operator=>"GrameenPhone Ltd", :status=>"Operational"}, ["470", "02"]=>{:mobile_country_code=>"470", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Robi", :notes=>"Formerly Aktel[24]", :operator=>"Axiata Bangladesh Ltd.", :status=>"Operational"}, ["470", "03"]=>{:mobile_country_code=>"470", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Banglalink", :operator=>"Banglalink Digital Communications Ltd", :status=>"Operational"}, ["470", "04"]=>{:mobile_country_code=>"470", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"TeleTalk", :operator=>"Teletalk Bangladesh Limited", :status=>"Operational"}, ["470", "05"]=>{:mobile_country_code=>"470", :mobile_network_code=>"05", :bands=>["CDMA 800", "GSM 900", "GSM 1800"], :brand=>"Citycell", :operator=>"Pacific Bangladesh Telecom Limited", :status=>"Operational"}, ["470", "07"]=>{:mobile_country_code=>"470", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Airtel", :notes=>"Formerly Warid Telcom", :operator=>"Bharti airtel Bangladesh Ltd.", :status=>"Operational"}, ["472", "01"]=>{:mobile_country_code=>"472", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Dhiraagu", :operator=>"Dhivehi Raajjeyge Gulhun", :status=>"Operational"}, ["472", "02"]=>{:mobile_country_code=>"472", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100", "LTE 2600"], :brand=>"Ooredoo", :notes=>"[98]", :operator=>"Wataniya Telecom Maldives", :status=>"Operational"}, ["502", "01"]=>{:mobile_country_code=>"502", :mobile_network_code=>"01", :bands=>["CDMA2000 450 (depreciated)011-(6digits)"], :brand=>"ATUR 450", :operator=>"Telekom Malaysia Bhd", :status=>"Operational"}, ["502", "10"]=>{:mobile_country_code=>"502", :mobile_network_code=>"10", :bands=>[], :notes=>"[92]", :operator=>"DiGi Telecommunications", :status=>""}, ["502", "11"]=>{:mobile_country_code=>"502", :mobile_network_code=>"11", :bands=>[], :brand=>"TM Homeline", :notes=>"[92]", :operator=>"Telekom Malaysia Bhd[93]", :status=>""}, ["502", "12"]=>{:mobile_country_code=>"502", :mobile_network_code=>"12", :bands=>["MVNO"], :brand=>"Kartu As", :notes=>"uses Maxis[92]", :operator=>"Telin Malaysia Sdn Bhd", :status=>"Operational"}, ["502", "13"]=>{:mobile_country_code=>"502", :mobile_network_code=>"13", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Celcom", :notes=>"Formerly TMTouch\n[94]", :operator=>"Celcom Axiata Berhad", :status=>"Operational"}, ["502", "14"]=>{:mobile_country_code=>"502", :mobile_network_code=>"14", :bands=>[], :notes=>"[92]", :operator=>"Telekom Malaysia Berhad for PSTN SMS", :status=>""}, ["502", "150"]=>{:mobile_country_code=>"502", :mobile_network_code=>"150", :bands=>["MVNO"], :brand=>"Tune Talk", :notes=>"uses Celcom[92]", :operator=>"Tune Talk Sdn Bhd", :status=>"Operational"}, ["502", "151"]=>{:mobile_country_code=>"502", :mobile_network_code=>"151", :bands=>["MVNO"], :notes=>"SalamFone[95] (MVNO)-MAXIS,[92] Previously using DiGi.", :operator=>"Baraka Telecom Sdn Bhd (MVNE)", :status=>"Operational"}, ["502", "152"]=>{:mobile_country_code=>"502", :mobile_network_code=>"152", :bands=>["WiMAX 2.3\u00A0GHz", "LTE 4G"], :brand=>"Yes", :notes=>"[92]", :operator=>"YTL Communications Sdn Bhd", :status=>"Operational"}, ["502", "156"]=>{:mobile_country_code=>"502", :mobile_network_code=>"156", :bands=>["LTE 4G", "MVNO"], :brand=>"Altel", :notes=>"[92]", :operator=>"Altel Communications Sdn Bhd", :status=>"Operational"}, ["502", "16"]=>{:mobile_country_code=>"502", :mobile_network_code=>"16", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"DiGi", :operator=>"DiGi Telecommunications", :status=>"Operational"}, ["502", "17"]=>{:mobile_country_code=>"502", :mobile_network_code=>"17", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Hotlink", :notes=>"Formerly TimeCel Adam017", :operator=>"Maxis Prepaid", :status=>"Operational"}, ["502", "18"]=>{:mobile_country_code=>"502", :mobile_network_code=>"18", :bands=>["CDMA 850[96]"], :brand=>"TM Homeline", :notes=>"On MCMC website, 502-18 is allocated to U Mobile[92]", :operator=>"Telekom Malaysia Bhd", :status=>"Operational"}, ["502", "19"]=>{:mobile_country_code=>"502", :mobile_network_code=>"19", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Celcom", :notes=>"[97]", :operator=>"Celcom Axiata Berhad", :status=>"Operational"}, ["502", "20"]=>{:mobile_country_code=>"502", :mobile_network_code=>"20", :bands=>["CDMA"], :notes=>"PTT and CDMA Technology. Uses TM CDMA[92]", :operator=>"Electcoms Wireless Sdn Bhd", :status=>"Operational"}, ["505", "01"]=>{:mobile_country_code=>"505", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 1800"], :brand=>"Telstra", :operator=>"Telstra Corporation Limited", :status=>"Operational"}, ["505", "02"]=>{:mobile_country_code=>"505", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800", "LTE-TDD 2300"], :brand=>"Optus", :notes=>"[7]", :operator=>"Singtel Optus Proprietary Limited", :status=>"Operational"}, ["505", "03"]=>{:mobile_country_code=>"505", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"Vodafone", :notes=>"[7]", :operator=>"Vodafone Hutchison Australia Proprietary Limited", :status=>"Operational"}, ["505", "04"]=>{:mobile_country_code=>"505", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"Private network", :operator=>"Department of Defence", :status=>"Operational"}, ["505", "05"]=>{:mobile_country_code=>"505", :mobile_network_code=>"05", :bands=>[], :brand=>"Ozitel", :notes=>"Brand was taken over by Telstra.", :operator=>"", :status=>"Not operational"}, ["505", "06"]=>{:mobile_country_code=>"505", :mobile_network_code=>"06", :bands=>["UMTS 2100"], :brand=>"3", :notes=>"Vodafone Hutchison Australia and Telstra ended their network sharing agreement on 31 August 2012. The 3TELSTRA network was shut down on this date.", :operator=>"Vodafone Hutchison Australia Proprietary Limited", :status=>"Not operational"}, ["505", "07"]=>{:mobile_country_code=>"505", :mobile_network_code=>"07", :bands=>["Unknown"], :brand=>"Vodafone", :notes=>"[4]", :operator=>"Vodafone Network Pty. Ltd.", :status=>"Unknown"}, ["505", "08"]=>{:mobile_country_code=>"505", :mobile_network_code=>"08", :bands=>["GSM 900"], :brand=>"One.Tel", :notes=>"Brand was dissolved.", :operator=>"One.Tel Limited", :status=>"Not operational"}, ["505", "09"]=>{:mobile_country_code=>"505", :mobile_network_code=>"09", :bands=>[], :brand=>"Airnet", :notes=>"No longer provide mobile services.", :operator=>"", :status=>"Not operational"}, ["505", "10"]=>{:mobile_country_code=>"505", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"Norfolk Telecom", :operator=>"Norfolk Telecom", :status=>"Operational"}, ["505", "11"]=>{:mobile_country_code=>"505", :mobile_network_code=>"11", :bands=>["Unknown"], :brand=>"Telstra", :notes=>"[4]", :operator=>"Telstra Corporation Ltd.", :status=>"Unknown"}, ["505", "12"]=>{:mobile_country_code=>"505", :mobile_network_code=>"12", :bands=>["UMTS 2100"], :brand=>"3", :notes=>"See MNC 06", :operator=>"Vodafone Hutchison Australia Proprietary Limited", :status=>"Not operational"}, ["505", "13"]=>{:mobile_country_code=>"505", :mobile_network_code=>"13", :bands=>["GSM 1800"], :brand=>"Railcorp", :notes=>"For internal use by Railcorp Digital Train Radio System.", :operator=>"Rail Corporation New South Wales", :status=>"Reserved"}, ["505", "14"]=>{:mobile_country_code=>"505", :mobile_network_code=>"14", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"AAPT", :notes=>"Wholesale from Vodafone Hutchison Australia", :operator=>"Telecom New Zealand", :status=>"Operational"}, ["505", "15"]=>{:mobile_country_code=>"505", :mobile_network_code=>"15", :bands=>[], :brand=>"3GIS", :notes=>"Taken over by Vodafone.", :operator=>"", :status=>"Not operational"}, ["505", "16"]=>{:mobile_country_code=>"505", :mobile_network_code=>"16", :bands=>["GSM 1800"], :brand=>"VicTrack", :notes=>"Digital Train Radio System. Starting to be seen.", :operator=>"Victorian Rail Track", :status=>"Reserved"}, ["505", "17"]=>{:mobile_country_code=>"505", :mobile_network_code=>"17", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Vidid Wireless Pty. Ltd.", :status=>"Unknown"}, ["505", "18"]=>{:mobile_country_code=>"505", :mobile_network_code=>"18", :bands=>[], :brand=>"Pactel", :operator=>"Pactel International Pty Ltd", :status=>"Reserved"}, ["505", "19"]=>{:mobile_country_code=>"505", :mobile_network_code=>"19", :bands=>["MVNO"], :brand=>"Lycamobile", :operator=>"Lycamobile Pty Ltd", :status=>"Operational"}, ["505", "20"]=>{:mobile_country_code=>"505", :mobile_network_code=>"20", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Ausgrid Corporation", :status=>"Unknown"}, ["505", "21"]=>{:mobile_country_code=>"505", :mobile_network_code=>"21", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Queensland Rail Limited", :status=>"Unknown"}, ["505", "22"]=>{:mobile_country_code=>"505", :mobile_network_code=>"22", :bands=>["Unknown"], :notes=>"[4]", :operator=>"iiNet Ltd", :status=>"Unknown"}, ["505", "23"]=>{:mobile_country_code=>"505", :mobile_network_code=>"23", :bands=>["LTE 2100"], :notes=>"[4]", :operator=>"Challenge Networks Pty. Ltd.", :status=>"Planning"}, ["505", "24"]=>{:mobile_country_code=>"505", :mobile_network_code=>"24", :bands=>["Unknown"], :operator=>"Advanced Communications Technologies Pty. Ltd.", :status=>"Unknown"}, ["505", "25"]=>{:mobile_country_code=>"505", :mobile_network_code=>"25", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Pilbara Iron Company Services Pty Ltd", :status=>"Unknown"}, ["505", "26"]=>{:mobile_country_code=>"505", :mobile_network_code=>"26", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Dialogue Communications Pty. Ltd.", :status=>"Unknown"}, ["505", "27"]=>{:mobile_country_code=>"505", :mobile_network_code=>"27", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Nexium Telecommunications", :status=>"Unknown"}, ["505", "28"]=>{:mobile_country_code=>"505", :mobile_network_code=>"28", :bands=>["Unknown"], :notes=>"[15]", :operator=>"RCOM International Pty Ltd", :status=>"Unknown"}, ["505", "30"]=>{:mobile_country_code=>"505", :mobile_network_code=>"30", :bands=>["Unknown"], :notes=>"[16]", :operator=>"Compatel Limited", :status=>"Unknown"}, ["505", "31"]=>{:mobile_country_code=>"505", :mobile_network_code=>"31", :bands=>["Unknown"], :notes=>"[17]", :operator=>"BHP Billiton", :status=>"Unknown"}, ["505", "32"]=>{:mobile_country_code=>"505", :mobile_network_code=>"32", :bands=>["Unknown"], :notes=>"[18]", :operator=>"Thales Australia", :status=>"Unknown"}, ["505", "38"]=>{:mobile_country_code=>"505", :mobile_network_code=>"38", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"Crazy John's", :notes=>"Some existing customers - wholesale from Telstra/all new and some existing from Vodafone Hutchison Australia.", :operator=>"Vodafone Hutchison Australia Proprietary Limited", :status=>"Operational"}, ["505", "62"]=>{:mobile_country_code=>"505", :mobile_network_code=>"62", :bands=>["LTE 2300"], :brand=>"NBN", :operator=>"National Broadband Network Co.", :status=>"Unknown"}, ["505", "68"]=>{:mobile_country_code=>"505", :mobile_network_code=>"68", :bands=>["LTE 2300"], :brand=>"NBN", :operator=>"National Broadband Network Co.", :status=>"Unknown"}, ["505", "71"]=>{:mobile_country_code=>"505", :mobile_network_code=>"71", :bands=>["Unknown"], :brand=>"Telstra", :operator=>"Telstra Corporation Limited", :status=>"Operational"}, ["505", "72"]=>{:mobile_country_code=>"505", :mobile_network_code=>"72", :bands=>["Unknown"], :brand=>"Telstra", :operator=>"Telstra Corporation Limited", :status=>"Operational"}, ["505", "88"]=>{:mobile_country_code=>"505", :mobile_network_code=>"88", :bands=>[], :brand=>"Localstar Holding Pty. Ltd.", :notes=>"Globalstar Satellite (no longer in service, locally).", :operator=>"", :status=>"Not operational"}, ["505", "90"]=>{:mobile_country_code=>"505", :mobile_network_code=>"90", :bands=>["Unknown"], :brand=>"Optus", :operator=>"Singtel Optus Proprietary Limited", :status=>"Operational"}, ["505", "99"]=>{:mobile_country_code=>"505", :mobile_network_code=>"99", :bands=>["GSM 1800"], :brand=>"One.Tel", :notes=>"Brand was dissolved. Rail operators purchased 1800 spectrum.", :operator=>"One.Tel", :status=>"Not operational"}, ["510", "00"]=>{:mobile_country_code=>"510", :mobile_network_code=>"00", :bands=>["Satellite"], :brand=>"PSN", :operator=>"PT Pasifik Satelit Nusantara (ACeS)", :status=>"Operational"}, ["510", "01"]=>{:mobile_country_code=>"510", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE FDD 900"], :brand=>"INDOSAT", :notes=>"Former PT Satelindo\nLTE Trials on KPPTI Building (Indosat Tower building and surrounding areas), Jakarta [79]", :operator=>"PT Indonesian Satellite Corporation Tbk (INDOSAT)", :status=>"Operational"}, ["510", "03"]=>{:mobile_country_code=>"510", :mobile_network_code=>"03", :bands=>["CDMA 800"], :brand=>"StarOne", :operator=>"PT Indosat Tbk", :status=>"Operational"}, ["510", "07"]=>{:mobile_country_code=>"510", :mobile_network_code=>"07", :bands=>["CDMA 800"], :brand=>"TelkomFlexi", :operator=>"PT Telkom", :status=>"Operational"}, ["510", "08"]=>{:mobile_country_code=>"510", :mobile_network_code=>"08", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"AXIS", :notes=>"Merged with XL", :operator=>"PT Natrindo Telepon Seluler", :status=>"Operational"}, ["510", "09"]=>{:mobile_country_code=>"510", :mobile_network_code=>"09", :bands=>["CDMA 1900", "800", "LTE TDD 2300"], :brand=>"SMARTFREN", :operator=>"PT Smart Telecom", :status=>"Operational"}, ["510", "10"]=>{:mobile_country_code=>"510", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE FDD 900"], :brand=>"Telkomsel", :operator=>"PT Telekomunikasi Selular", :status=>"Operational"}, ["510", "11"]=>{:mobile_country_code=>"510", :mobile_network_code=>"11", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE FDD 1800"], :brand=>"XL", :notes=>"LTE Trials on some XL Centers [80]", :operator=>"PT XL Axiata Tbk", :status=>"Operational"}, ["510", "20"]=>{:mobile_country_code=>"510", :mobile_network_code=>"20", :bands=>["GSM 1800"], :brand=>"TELKOMMobile", :notes=>"Merged with Telkomsel", :operator=>"PT Telkom Indonesia Tbk", :status=>"Not operational"}, ["510", "21"]=>{:mobile_country_code=>"510", :mobile_network_code=>"21", :bands=>["GSM 1800"], :brand=>"IM3", :notes=>"Merged with Indosat (MNC 01) MNC 21 not used anymore", :operator=>"PT Indonesian Satellite Corporation Tbk (INDOSAT)", :status=>"Not operational"}, ["510", "27"]=>{:mobile_country_code=>"510", :mobile_network_code=>"27", :bands=>["CDMA 450"], :brand=>"Ceria", :operator=>"PT Sampoerna Telekomunikasi Indonesia", :status=>"Operational"}, ["510", "28"]=>{:mobile_country_code=>"510", :mobile_network_code=>"28", :bands=>["CDMA 800"], :brand=>"Fren/Hepi", :notes=>"Merged with SMART (MNC 09)", :operator=>"PT Mobile-8 Telecom", :status=>"Operational"}, ["510", "88"]=>{:mobile_country_code=>"510", :mobile_network_code=>"88", :bands=>["LTE TDD 2300"], :brand=>"BOLT! Super 4G", :notes=>"Jabodetabek Area only [81]", :operator=>"PT Internux", :status=>"Operational"}, ["510", "89"]=>{:mobile_country_code=>"510", :mobile_network_code=>"89", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"3", :operator=>"PT Hutchison CP Telecommunications", :status=>"Operational"}, ["510", "99"]=>{:mobile_country_code=>"510", :mobile_network_code=>"99", :bands=>["CDMA 800"], :brand=>"Esia", :operator=>"PT Bakrie Telecom", :status=>"Operational"}, ["510", "995"]=>{:mobile_country_code=>"510", :mobile_network_code=>"995", :bands=>["Unknown"], :brand=>"Komselindo", :operator=>"[Komselindo STKB-C \\(NMT\\)]", :status=>"Operational"}, ["510", "996"]=>{:mobile_country_code=>"510", :mobile_network_code=>"996", :bands=>["Unknown"], :brand=>"Komselindo", :operator=>"[Komselindo STKB-C \\(NMT\\)]", :status=>"Operational"}, ["514", "01"]=>{:mobile_country_code=>"514", :mobile_network_code=>"01", :bands=>["GSM 850", "GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Telin Telkomcel", :notes=>"Formerly operated in the region.[4][56]", :operator=>"PT Telekomunikasi Indonesia International", :status=>"Planned"}, ["514", "02"]=>{:mobile_country_code=>"514", :mobile_network_code=>"02", :bands=>["GSM 900"], :notes=>"[4][56]", :operator=>"Timor Telecom", :status=>"Operational"}, ["514", "03"]=>{:mobile_country_code=>"514", :mobile_network_code=>"03", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Viettel Timor-Leste", :status=>"Planned"}, ["515", "01"]=>{:mobile_country_code=>"515", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Islacom", :operator=>"Globe Telecom via Innove Communications", :status=>"Not operational"}, ["515", "02"]=>{:mobile_country_code=>"515", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 900", "UMTS 2100"], :brand=>"Globe", :notes=>"[51]", :operator=>"Globe Telecom", :status=>"Operational"}, ["515", "03"]=>{:mobile_country_code=>"515", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100"], :brand=>"Smart", :operator=>"PLDT via Smart Communications", :status=>"Operational"}, ["515", "05"]=>{:mobile_country_code=>"515", :mobile_network_code=>"05", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Sun", :operator=>"Digital Telecommunications Philippines", :status=>"Operational"}, ["515", "11"]=>{:mobile_country_code=>"515", :mobile_network_code=>"11", :bands=>["Unknown"], :operator=>"PLDT via ACeS Philippines", :status=>"Unknown"}, ["515", "18"]=>{:mobile_country_code=>"515", :mobile_network_code=>"18", :bands=>["GSM 900", "UMTS 2100 (defunct)"], :brand=>"Cure", :notes=>"Formerly \u00FCmobile, now D/B/A Red Mobile", :operator=>"PLDT via Smart's Connectivity Unlimited Resources Enterprise", :status=>"Operational"}, ["515", "24"]=>{:mobile_country_code=>"515", :mobile_network_code=>"24", :bands=>["Unknown"], :brand=>"ABS-CBN", :operator=>"ABS-CBN Convergence with Globe Telecom", :status=>"Operational"}, ["515", "88"]=>{:mobile_country_code=>"515", :mobile_network_code=>"88", :bands=>["Unknown"], :operator=>"Nextel", :status=>"Unknown"}, ["520", "00"]=>{:mobile_country_code=>"520", :mobile_network_code=>"00", :bands=>["UMTS 850"], :brand=>"my by CAT", :notes=>"GSM roaming with True Move", :operator=>"CAT Telecom", :status=>"Operational"}, ["520", "01"]=>{:mobile_country_code=>"520", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 900"], :brand=>"AIS", :operator=>"Advanced Info Service", :status=>"Operational"}, ["520", "02"]=>{:mobile_country_code=>"520", :mobile_network_code=>"02", :bands=>["CDMA 800"], :brand=>"CAT CDMA", :notes=>"1xEV-DO Rev.A", :operator=>"CAT Telecom", :status=>"Operational"}, ["520", "03"]=>{:mobile_country_code=>"520", :mobile_network_code=>"03", :bands=>["UMTS 2100"], :brand=>"AIS 3G", :notes=>"GSM roaming with TH GSM", :operator=>"AWN", :status=>"Operational"}, ["520", "04"]=>{:mobile_country_code=>"520", :mobile_network_code=>"04", :bands=>["UMTS 2100", "LTE 2100"], :brand=>"truemove H 4G LTE", :notes=>"First commercial 4G LTE since April 2013[149] / GSM roaming with True Move / HSPA roaming with CAT 3G+[150]", :operator=>"Real Future", :status=>"Operational"}, ["520", "05"]=>{:mobile_country_code=>"520", :mobile_network_code=>"05", :bands=>["UMTS 2100", "LTE 2100"], :brand=>"dtac TriNet", :notes=>"GSM/HSPA roaming with dtac[151]", :operator=>"DTN", :status=>"Operational"}, ["520", "10"]=>{:mobile_country_code=>"520", :mobile_network_code=>"10", :bands=>["Unknown"], :brand=>"\u00A0?", :operator=>"WCS IQ", :status=>"Unknown"}, ["520", "15"]=>{:mobile_country_code=>"520", :mobile_network_code=>"15", :bands=>["UMTS 2100"], :brand=>"TOT 3G", :notes=>"Former known as Thaimobile 1900 (ACT Mobile)", :operator=>"Telephone Organization of Thailand (TOT)", :status=>"Operational"}, ["520", "18"]=>{:mobile_country_code=>"520", :mobile_network_code=>"18", :bands=>["GSM 1800", "UMTS 850"], :brand=>"dtac", :operator=>"Total Access Communication", :status=>"Operational"}, ["520", "23"]=>{:mobile_country_code=>"520", :mobile_network_code=>"23", :bands=>["GSM 1800"], :brand=>"AIS GSM 1800", :operator=>"(AIS)", :status=>"Operational"}, ["520", "25"]=>{:mobile_country_code=>"520", :mobile_network_code=>"25", :bands=>["PHS 1900"], :brand=>"WE PCT", :notes=>"In Bangkok area", :operator=>"True Corporation", :status=>"Operational"}, ["520", "47"]=>{:mobile_country_code=>"520", :mobile_network_code=>"47", :bands=>["Unknown"], :notes=>"[152]", :operator=>"Telephone Organization of Thailand (TOT)", :status=>"Unknown"}, ["520", "99"]=>{:mobile_country_code=>"520", :mobile_network_code=>"99", :bands=>["GSM 1800"], :brand=>"truemove", :operator=>"True Corporation", :status=>"Operational"}, ["525", "01"]=>{:mobile_country_code=>"525", :mobile_network_code=>"01", :bands=>["GSM 900", "1800, UMTS 900", "2100, LTE 1800", "2600"], :brand=>"SingTel", :notes=>"[131][132]", :operator=>"Singapore Telecom", :status=>"Operational"}, ["525", "02"]=>{:mobile_country_code=>"525", :mobile_network_code=>"02", :bands=>["GSM 1800"], :brand=>"SingTel-G18", :notes=>"[131][132]", :operator=>"Singapore Telecom", :status=>"Operational"}, ["525", "03"]=>{:mobile_country_code=>"525", :mobile_network_code=>"03", :bands=>["GSM 900", "1800, UMTS 900", "2100, LTE 1800", "2600"], :brand=>"M1", :notes=>"[131][132]", :operator=>"M1 Limited", :status=>"Operational"}, ["525", "05"]=>{:mobile_country_code=>"525", :mobile_network_code=>"05", :bands=>["GSM 1800, UMTS 900", "2100, LTE 1800"], :brand=>"StarHub", :notes=>"[131][132]", :operator=>"StarHub Mobile", :status=>"Operational"}, ["525", "06"]=>{:mobile_country_code=>"525", :mobile_network_code=>"06", :bands=>["Unknown"], :brand=>"StarHub", :notes=>"[131][132]", :operator=>"StarHub Mobile", :status=>"Unknown"}, ["525", "07"]=>{:mobile_country_code=>"525", :mobile_network_code=>"07", :bands=>["Unknown"], :brand=>"SingTel", :notes=>"[131][132]", :operator=>"Singapore Telecom", :status=>"Unknown"}, ["525", "12"]=>{:mobile_country_code=>"525", :mobile_network_code=>"12", :bands=>["iDEN 800"], :brand=>"Grid", :notes=>"Digital Trunked Radio Network[131][132]", :operator=>"GRID Communications Pte Ltd.", :status=>"Operational"}, ["528", "01"]=>{:mobile_country_code=>"528", :mobile_network_code=>"01", :bands=>["Unknown"], :operator=>"Jabatan Telekom Brunei", :status=>"Unknown"}, ["528", "02"]=>{:mobile_country_code=>"528", :mobile_network_code=>"02", :bands=>["UMTS 2100"], :brand=>"B-Mobile", :operator=>"B-Mobile Communications Sdn Bhd", :status=>"Operational"}, ["528", "11"]=>{:mobile_country_code=>"528", :mobile_network_code=>"11", :bands=>["GSM 900", "UMTS 2100", "LTE 1800"], :brand=>"DSTCom", :notes=>"[7]", :operator=>"Data Stream Technology", :status=>"Operational"}, ["530", "00"]=>{:mobile_country_code=>"530", :mobile_network_code=>"00", :bands=>["AMPS 800", "TDMA 800"], :brand=>"Telecom", :notes=>"Shut down on 31 March 2007", :operator=>"Telecom New Zealand", :status=>"Not operational"}, ["530", "01"]=>{:mobile_country_code=>"530", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"Vodafone", :notes=>"UMTS 2100 is used in urban areas. UMTS 900 is referred to as \"3G extended\" and used in rural areas.[109][110]", :operator=>"Vodafone New Zealand", :status=>"Operational"}, ["530", "02"]=>{:mobile_country_code=>"530", :mobile_network_code=>"02", :bands=>["CDMA2000 800"], :brand=>"Telecom", :notes=>"Shut down on 31 July 2012", :operator=>"Telecom New Zealand", :status=>"Not operational"}, ["530", "03"]=>{:mobile_country_code=>"530", :mobile_network_code=>"03", :bands=>["UMTS-TDD 2000"], :brand=>"Woosh", :notes=>"Former Walker Wireless; wireless broadband only", :operator=>"Woosh Wireless", :status=>"Operational"}, ["530", "04"]=>{:mobile_country_code=>"530", :mobile_network_code=>"04", :bands=>["UMTS 2100"], :brand=>"TelstraClear", :notes=>"Brought out by Vodafone NZ", :operator=>"TelstraClear New Zealand", :status=>"Not operational"}, ["530", "05"]=>{:mobile_country_code=>"530", :mobile_network_code=>"05", :bands=>["UMTS 850", "UMTS 2100", "LTE 700", "LTE 1800", "LTE 2600"], :brand=>"Spark NZ", :operator=>"Spark New Zealand", :status=>"Operational"}, ["530", "06"]=>{:mobile_country_code=>"530", :mobile_network_code=>"06", :bands=>["MVNO"], :brand=>"Skinny", :operator=>"Spark New Zealand", :status=>"Operational"}, ["530", "07"]=>{:mobile_country_code=>"530", :mobile_network_code=>"07", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Bluereach Limited", :status=>"Unknown"}, ["530", "24"]=>{:mobile_country_code=>"530", :mobile_network_code=>"24", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"2degrees", :notes=>"[51]", :operator=>"2degrees", :status=>"Operational"}, ["536", "02"]=>{:mobile_country_code=>"536", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Digicel", :notes=>"Mnc is assigned to Digicel (Fiji) Limited to be used with Digicel networks in Nauru", :operator=>"Digicel (Nauru) Corporation", :status=>"Operational"}, ["537", "01"]=>{:mobile_country_code=>"537", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 900"], :brand=>"bmobile", :operator=>"Bemobile Limited", :status=>"Operational"}, ["537", "02"]=>{:mobile_country_code=>"537", :mobile_network_code=>"02", :bands=>["CDMA2000 450"], :notes=>"Formerly Greencom [116][117]", :operator=>"Telikom PNG Ltd.", :status=>"Operational"}, ["537", "03"]=>{:mobile_country_code=>"537", :mobile_network_code=>"03", :bands=>["GSM 900", "UMTS 900"], :brand=>"Digicel", :operator=>"Digicel PNG", :status=>"Operational"}, ["539", "01"]=>{:mobile_country_code=>"539", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"U-Call", :operator=>"Tonga Communications Corporation", :status=>"Operational"}, ["539", "43"]=>{:mobile_country_code=>"539", :mobile_network_code=>"43", :bands=>["Unknown"], :operator=>"Shoreline Communication", :status=>"Operational"}, ["539", "88"]=>{:mobile_country_code=>"539", :mobile_network_code=>"88", :bands=>["GSM 900"], :brand=>"Digicel", :operator=>"Digicel (Tonga) Limited", :status=>"Operational"}, ["540", "01"]=>{:mobile_country_code=>"540", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"BREEZE", :notes=>"[134]", :operator=>"Solomon Telekom Co Ltd", :status=>"Operational"}, ["540", "02"]=>{:mobile_country_code=>"540", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"BeMobile", :notes=>"[134][135]", :operator=>"BMobile (SI) Ltd", :status=>"Operational"}, ["541", "00"]=>{:mobile_country_code=>"541", :mobile_network_code=>"00", :bands=>["GSM 900"], :brand=>"AIL", :operator=>"ACeS International (AIL)", :status=>"Operational"}, ["541", "01"]=>{:mobile_country_code=>"541", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"SMILE", :operator=>"Telecom Vanuatu Ltd", :status=>"Operational"}, ["541", "05"]=>{:mobile_country_code=>"541", :mobile_network_code=>"05", :bands=>["GSM 900", "UMTS 900"], :brand=>"Digicel", :operator=>"Digicel Vanuatu Ltd", :status=>"Operational"}, ["541", "07"]=>{:mobile_country_code=>"541", :mobile_network_code=>"07", :bands=>["LTE-TDD 2300"], :brand=>"WanTok", :operator=>"WanTok Vanuatu Ltd", :status=>"Operational"}, ["542", "01"]=>{:mobile_country_code=>"542", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100", "LTE 1800"], :brand=>"Vodafone", :notes=>"[7]", :operator=>"Vodafone Fiji", :status=>"Operational"}, ["542", "02"]=>{:mobile_country_code=>"542", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 900", "UMTS 2100", "WIMAX 4G"], :brand=>"Digicel", :operator=>"Digicel Fiji", :status=>"Operational"}, ["542", "03"]=>{:mobile_country_code=>"542", :mobile_network_code=>"03", :bands=>["CDMA"], :notes=>"[4]", :operator=>"Telecom Fiji Ltd", :status=>"Unknown"}, ["544", "11"]=>{:mobile_country_code=>"544", :mobile_network_code=>"11", :bands=>["GSM 850", "GSM 1900", "UMTS 850"], :brand=>"Bluesky", :notes=>"[1][5]", :operator=>"Bluesky", :status=>"Operational"}, ["545", "01"]=>{:mobile_country_code=>"545", :mobile_network_code=>"01", :bands=>["UMTS 850", "LTE 700"], :brand=>"Kiribati - TSKL", :operator=>"Telecom Services Kiribati Ltd", :status=>"Operational"}, ["545", "09"]=>{:mobile_country_code=>"545", :mobile_network_code=>"09", :bands=>["GSM 900"], :brand=>"Kiribati - Frigate Net", :operator=>"Telecom Services Kiribati Ltd", :status=>"Operational"}, ["546", "01"]=>{:mobile_country_code=>"546", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 900"], :brand=>"Mobilis", :notes=>"[51]", :operator=>"OPT New Caledonia", :status=>"Operational"}, ["547", "05"]=>{:mobile_country_code=>"547", :mobile_network_code=>"05", :bands=>["WiMAX"], :notes=>"[61]", :operator=>"VITI", :status=>"Operational"}, ["547", "10"]=>{:mobile_country_code=>"547", :mobile_network_code=>"10", :bands=>["GSM 900"], :notes=>"[4]", :operator=>"Mara Telecom", :status=>"Not operational"}, ["547", "15"]=>{:mobile_country_code=>"547", :mobile_network_code=>"15", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vodafone", :notes=>"[62]", :operator=>"Pacific Mobile Telecom", :status=>"Operational"}, ["547", "20"]=>{:mobile_country_code=>"547", :mobile_network_code=>"20", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Vini", :notes=>"[63]", :operator=>"Tikiphone SA", :status=>"Operational"}, ["548", "01"]=>{:mobile_country_code=>"548", :mobile_network_code=>"01", :bands=>["GSM 900"], :operator=>"Telecom Cook", :status=>"Operational"}, ["549", "01"]=>{:mobile_country_code=>"549", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Digicel", :operator=>"Digicel Pacific Ltd.", :status=>"Operational"}, ["549", "27"]=>{:mobile_country_code=>"549", :mobile_network_code=>"27", :bands=>["GSM 900"], :brand=>"Bluesky", :notes=>"Formerly known as Samoatel Ltd (Samoatel)[127]", :operator=>"Bluesky Samoa Ltd", :status=>"Operational"}, ["550", "01"]=>{:mobile_country_code=>"550", :mobile_network_code=>"01", :bands=>["GSM 900"], :operator=>"FSMTC", :status=>"Operational"}, ["551", "01"]=>{:mobile_country_code=>"551", :mobile_network_code=>"01", :bands=>[], :operator=>"Marshall Islands National Telecommunications Authority (MINTA)", :status=>"Operational"}, ["552", "01"]=>{:mobile_country_code=>"552", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"PNCC", :operator=>"Palau National Communications Corp.", :status=>"Operational"}, ["552", "80"]=>{:mobile_country_code=>"552", :mobile_network_code=>"80", :bands=>["GSM 1800"], :brand=>"Palau Mobile", :operator=>"Palau Mobile Corporation", :status=>"Operational"}, ["553", "01"]=>{:mobile_country_code=>"553", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"TTC", :operator=>"Tuvalu Telecom", :status=>"Operational"}, ["555", "01"]=>{:mobile_country_code=>"555", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Telecom Niue", :operator=>"Telecom Niue", :status=>"Operational"}, ["602", "01"]=>{:mobile_country_code=>"602", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Mobinil", :operator=>"ECMS-Mobinil", :status=>"Operational"}, ["602", "02"]=>{:mobile_country_code=>"602", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vodafone", :operator=>"Vodafone Egypt", :status=>"Operational"}, ["602", "03"]=>{:mobile_country_code=>"602", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Etisalat", :operator=>"Etisalat Egypt", :status=>"Operational"}, ["603", "01"]=>{:mobile_country_code=>"603", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "CDMA 1900"], :brand=>"Mobilis", :notes=>"[1]", :operator=>"ATM Mobilis", :status=>"Operational"}, ["603", "02"]=>{:mobile_country_code=>"603", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Djezzy", :operator=>"Orascom Telecom Algerie Spa", :status=>"Operational"}, ["603", "03"]=>{:mobile_country_code=>"603", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Ooredoo", :notes=>"[1] Formerly Nedjma", :operator=>"Wataniya Telecom Algerie", :status=>"Operational"}, ["604", "00"]=>{:mobile_country_code=>"604", :mobile_network_code=>"00", :bands=>["GSM 900", "GSM 1800"], :brand=>"M\u00E9ditel", :operator=>"Medi Telecom", :status=>"Operational"}, ["604", "01"]=>{:mobile_country_code=>"604", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"IAM", :operator=>"Ittissalat Al Maghrib (Maroc Telecom)", :status=>"Operational"}, ["604", "02"]=>{:mobile_country_code=>"604", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Wana Corporate", :operator=>"Wan Mobile (Wana)", :status=>"Operational"}, ["604", "05"]=>{:mobile_country_code=>"604", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"INWI", :operator=>"WANA - Groupe ONA", :status=>"Operational"}, ["605", "01"]=>{:mobile_country_code=>"605", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Orange", :operator=>"Orange Tunisie", :status=>"Operational"}, ["605", "02"]=>{:mobile_country_code=>"605", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Tunicell", :operator=>"Tunisie Telecom", :status=>"Operational"}, ["605", "03"]=>{:mobile_country_code=>"605", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"OOREDOO TN", :notes=>"former Orascom Telecom Tunisie [51]", :operator=>"ooredoo Tunisiana", :status=>"Operational"}, ["606", "00"]=>{:mobile_country_code=>"606", :mobile_network_code=>"00", :bands=>["GSM900", "GSM 1800", "UMTS 2100"], :brand=>"Libyana", :operator=>"Libyana", :status=>"Operational"}, ["606", "01"]=>{:mobile_country_code=>"606", :mobile_network_code=>"01", :bands=>["GSM900", "GSM 1800"], :brand=>"Madar", :operator=>"Al-Madar Al-Jadeed", :status=>"Operational"}, ["606", "02"]=>{:mobile_country_code=>"606", :mobile_network_code=>"02", :bands=>["GSM900", "GSM 1800"], :brand=>"Al-Jeel Phone", :notes=>"Uses Al-Madar for frequency access", :operator=>"Al-Jeel Al-Jadeed", :status=>"Operational"}, ["606", "03"]=>{:mobile_country_code=>"606", :mobile_network_code=>"03", :bands=>["GSM900", "GSM 1800", "UMTS 2100"], :brand=>"Libya Phone", :notes=>"Uses Libyana for frequency access", :operator=>"Libya Telecom and Technology (LTT)", :status=>"Operational"}, ["606", "06"]=>{:mobile_country_code=>"606", :mobile_network_code=>"06", :bands=>["CDMA2000"], :brand=>"Hatef Libya", :operator=>"Hatef Libya", :status=>"Operational"}, ["607", "01"]=>{:mobile_country_code=>"607", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1900"], :brand=>"Gamcel", :operator=>"Gamcel", :status=>"Operational"}, ["607", "02"]=>{:mobile_country_code=>"607", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1900"], :brand=>"Africel", :operator=>"Africel", :status=>"Operational"}, ["607", "03"]=>{:mobile_country_code=>"607", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1900"], :brand=>"Comium", :operator=>"Comium", :status=>"Operational"}, ["607", "04"]=>{:mobile_country_code=>"607", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"QCell", :operator=>"QCell Gambia", :status=>"Operational"}, ["608", "01"]=>{:mobile_country_code=>"608", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Orange", :operator=>"Sonatel", :status=>"Operational"}, ["608", "02"]=>{:mobile_country_code=>"608", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 4G"], :brand=>"Tigo", :notes=>"former SENTEL GSM", :operator=>"Millicom International Cellular S.A.", :status=>"Operational"}, ["608", "03"]=>{:mobile_country_code=>"608", :mobile_network_code=>"03", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Expresso", :operator=>"Sudatel", :status=>"Operational"}, ["608", "04"]=>{:mobile_country_code=>"608", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[129]", :operator=>"CSU-SA", :status=>"Unknown"}, ["609", "01"]=>{:mobile_country_code=>"609", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Mattel", :operator=>"Mattel", :status=>"Operational"}, ["609", "02"]=>{:mobile_country_code=>"609", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Chinguitel", :notes=>"[101]", :operator=>"Chinguitel", :status=>"Operational"}, ["609", "10"]=>{:mobile_country_code=>"609", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"Mauritel", :operator=>"Mauritel Mobiles", :status=>"Operational"}, ["610", "01"]=>{:mobile_country_code=>"610", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Malitel", :operator=>"Malitel SA", :status=>"Operational"}, ["610", "02"]=>{:mobile_country_code=>"610", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Orange Mali SA", :status=>"Operational"}, ["611", "01"]=>{:mobile_country_code=>"611", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Orange S.A.", :notes=>"Formerly Spacetel[73]", :operator=>"Orange", :status=>"Operational"}, ["611", "02"]=>{:mobile_country_code=>"611", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Sotelgui", :notes=>"[73]", :operator=>"Sotelgui Lagui", :status=>"Operational"}, ["611", "03"]=>{:mobile_country_code=>"611", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Telecel Guinee", :notes=>"[73]", :operator=>"INTERCEL Guin\u00E9e", :status=>"Operational"}, ["611", "04"]=>{:mobile_country_code=>"611", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"MTN", :notes=>"[73]", :operator=>"Areeba Guinea", :status=>"Operational"}, ["611", "05"]=>{:mobile_country_code=>"611", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Cellcom", :notes=>"[73]", :operator=>"Cellcom", :status=>"Operational"}, ["612", "01"]=>{:mobile_country_code=>"612", :mobile_network_code=>"01", :bands=>["Unknown"], :operator=>"Cora de Comstar", :status=>"Not operational"}, ["612", "02"]=>{:mobile_country_code=>"612", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Moov", :notes=>"[4]", :operator=>"Atlantique Cellulaire", :status=>"Operational"}, ["612", "03"]=>{:mobile_country_code=>"612", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Orange", :status=>"Operational"}, ["612", "04"]=>{:mobile_country_code=>"612", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"KoZ", :operator=>"Comium Ivory Coast Inc", :status=>"Operational"}, ["612", "05"]=>{:mobile_country_code=>"612", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"MTN", :notes=>"[4]", :operator=>"Loteny Telecom", :status=>"Operational"}, ["612", "06"]=>{:mobile_country_code=>"612", :mobile_network_code=>"06", :bands=>["GSM 1800"], :brand=>"GreenN", :operator=>"Oricel", :status=>"Operational"}, ["612", "07"]=>{:mobile_country_code=>"612", :mobile_network_code=>"07", :bands=>["GSM 1800"], :notes=>"[17]", :operator=>"Aircomm", :status=>"Operational"}, ["613", "01"]=>{:mobile_country_code=>"613", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS"], :brand=>"Telmob", :notes=>"[8] [1]", :operator=>"Onatel", :status=>"Operational"}, ["613", "02"]=>{:mobile_country_code=>"613", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS"], :brand=>"Airtel", :notes=>"Previously Zain/Celtel.[1][41]", :operator=>"Airtel Burkina Faso", :status=>"Operational"}, ["613", "03"]=>{:mobile_country_code=>"613", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Telecel Faso", :notes=>"[9]", :operator=>"Telecel Faso SA", :status=>"Operational"}, ["614", "01"]=>{:mobile_country_code=>"614", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"SahelCom", :operator=>"La Soci\u00E9t\u00E9 Sah\u00E9lienne de T\u00E9l\u00E9communications (SahelCom)", :status=>"Operational"}, ["614", "02"]=>{:mobile_country_code=>"614", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"formerly Zain[111] and Celtel[41]", :operator=>"Bharti Airtel Limited", :status=>"Operational"}, ["614", "03"]=>{:mobile_country_code=>"614", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Moov", :notes=>"Former Telecel", :operator=>"Atlantique Telecom (subsidiary of Etisalat)", :status=>"Operational"}, ["614", "04"]=>{:mobile_country_code=>"614", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Orange", :operator=>"Orange Niger", :status=>"Operational"}, ["615", "01"]=>{:mobile_country_code=>"615", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Togo Cell", :operator=>"Togo Telecom", :status=>"Operational"}, ["615", "03"]=>{:mobile_country_code=>"615", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Moov", :operator=>"Moov Togo", :status=>"Operational"}, ["616", "01"]=>{:mobile_country_code=>"616", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Libercom", :operator=>"Benin Telecoms Mobile", :status=>"Operational"}, ["616", "02"]=>{:mobile_country_code=>"616", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Moov", :notes=>"EtiSalat / Atlantique Telecom/Moov", :operator=>"Telecel Benin", :status=>"Operational"}, ["616", "03"]=>{:mobile_country_code=>"616", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"MTN", :notes=>"Former BeninCell, Areeba [1][30]", :operator=>"Spacetel Benin", :status=>"Operational"}, ["616", "04"]=>{:mobile_country_code=>"616", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"BLK", :operator=>"BLK Communication Benin", :status=>"Operational"}, ["616", "05"]=>{:mobile_country_code=>"616", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"Glo", :operator=>"Glo Communication Benin", :status=>"Operational"}, ["617", "01"]=>{:mobile_country_code=>"617", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Orange", :operator=>"Cellplus Mobile Communications Ltd.", :status=>"Operational"}, ["617", "02"]=>{:mobile_country_code=>"617", :mobile_network_code=>"02", :bands=>["GSM 900", "CDMA2000"], :brand=>"MTML", :operator=>"Mahanagar Telephone (Mauritius) Ltd.", :status=>"Operational"}, ["617", "03"]=>{:mobile_country_code=>"617", :mobile_network_code=>"03", :bands=>["Unknown"], :brand=>"MTML", :notes=>"[17]", :operator=>"Mahanagar Telephone (Mauritius) Ltd.", :status=>"Unknown"}, ["617", "10"]=>{:mobile_country_code=>"617", :mobile_network_code=>"10", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Emtel", :operator=>"Emtel Ltd.", :status=>"Operational"}, ["618", "01"]=>{:mobile_country_code=>"618", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Lonestar Cell", :operator=>"Lonestar Communications Corporation", :status=>"Operational"}, ["618", "02"]=>{:mobile_country_code=>"618", :mobile_network_code=>"02", :bands=>["Unknown"], :brand=>"Libercell", :operator=>"Atlantic Wireless (Liberia) Inc.", :status=>"Operational"}, ["618", "04"]=>{:mobile_country_code=>"618", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"Comium", :operator=>"Comium Liberia", :status=>"Operational"}, ["618", "07"]=>{:mobile_country_code=>"618", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"Cellcom", :operator=>"Cellcom Telecommunications, Inc", :status=>"Operational"}, ["618", "20"]=>{:mobile_country_code=>"618", :mobile_network_code=>"20", :bands=>["CDMA2000"], :brand=>"LIBTELCO", :operator=>"Liberia Telecommunications Corporation", :status=>"Operational"}, ["619", "01"]=>{:mobile_country_code=>"619", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS"], :brand=>"Airtel", :notes=>"Former Zain, Celtel [1]", :operator=>"Bharti Airtel Limited", :status=>"Operational"}, ["619", "02"]=>{:mobile_country_code=>"619", :mobile_network_code=>"02", :bands=>["Unknown"], :brand=>"Africell", :notes=>"Former Millicom, Tigo [17]", :operator=>"Lintel Sierra Leone Limited", :status=>"Unknown"}, ["619", "03"]=>{:mobile_country_code=>"619", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Africell", :operator=>"Lintel Sierra Leone Limited", :status=>"Operational"}, ["619", "04"]=>{:mobile_country_code=>"619", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Comium", :operator=>"Comium (Sierra Leone) Ltd.", :status=>"Not operational"}, ["619", "05"]=>{:mobile_country_code=>"619", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"Africell", :operator=>"Lintel Sierra Leone Limited", :status=>"Operational"}, ["619", "06"]=>{:mobile_country_code=>"619", :mobile_network_code=>"06", :bands=>["CDMA 800"], :brand=>"SierraTel", :operator=>"Sierra Leone Telephony", :status=>"Operational"}, ["619", "09"]=>{:mobile_country_code=>"619", :mobile_network_code=>"09", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Smart Mobile", :notes=>"[130][18]", :operator=>"InterGroup Telecom SL", :status=>"Operational"}, ["619", "25"]=>{:mobile_country_code=>"619", :mobile_network_code=>"25", :bands=>["Unknown"], :brand=>"Mobitel", :operator=>"Mobitel", :status=>"Reserved"}, ["619", "40"]=>{:mobile_country_code=>"619", :mobile_network_code=>"40", :bands=>["GSM"], :notes=>"[17]", :operator=>"Datatel (SL) Ltd.", :status=>"Unknown"}, ["619", "50"]=>{:mobile_country_code=>"619", :mobile_network_code=>"50", :bands=>["CDMA"], :notes=>"[17]", :operator=>"Datatel (SL) Ltd.", :status=>"Unknown"}, ["620", "01"]=>{:mobile_country_code=>"620", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"MTN", :notes=>"former spacefon[1]", :operator=>"MTN Group", :status=>"Operational"}, ["620", "02"]=>{:mobile_country_code=>"620", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS"], :brand=>"Vodafone", :notes=>"former Onetouch[1]", :operator=>"Vodafone Group", :status=>"Operational"}, ["620", "03"]=>{:mobile_country_code=>"620", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS"], :brand=>"tiGO", :notes=>"former MOBITEL[1]", :operator=>"Millicom Ghana", :status=>"Operational"}, ["620", "04"]=>{:mobile_country_code=>"620", :mobile_network_code=>"04", :bands=>["CDMA2000"], :brand=>"Expresso", :notes=>"former Kasapa", :operator=>"Kasapa / Hutchison Telecom", :status=>"Operational"}, ["620", "06"]=>{:mobile_country_code=>"620", :mobile_network_code=>"06", :bands=>["GSM 900", "GSM 1800", "UMTS"], :brand=>"Airtel", :notes=>"former Zain[1]", :operator=>"Airtel", :status=>"Operational"}, ["620", "07"]=>{:mobile_country_code=>"620", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS"], :brand=>"Globacom", :notes=>"[1]", :operator=>"Globacom Group", :status=>"Operational"}, ["620", "10"]=>{:mobile_country_code=>"620", :mobile_network_code=>"10", :bands=>["LTE-TDD 2600"], :brand=>"Blu", :notes=>"LTE band 38", :operator=>"Blu Telecommunications", :status=>"Operational"}, ["620", "11"]=>{:mobile_country_code=>"620", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Netafrique Dot Com Ltd", :status=>"Unknown"}, ["621", "20"]=>{:mobile_country_code=>"621", :mobile_network_code=>"20", :bands=>["GSM 900", "GSM 1800"], :brand=>"Airtel", :notes=>"Former Zain,[111] V-Mobile", :operator=>"Bharti Airtel Limited", :status=>"Operational"}, ["621", "25"]=>{:mobile_country_code=>"621", :mobile_network_code=>"25", :bands=>["CDMA2000 800", "CDMA2000 1900"], :brand=>"Visafone", :operator=>"Visafone Communications Ltd.", :status=>"Operational"}, ["621", "30"]=>{:mobile_country_code=>"621", :mobile_network_code=>"30", :bands=>["GSM 900", "GSM 1800"], :brand=>"MTN", :operator=>"MTN Nigeria Communications Limited", :status=>"Operational"}, ["621", "40"]=>{:mobile_country_code=>"621", :mobile_network_code=>"40", :bands=>["GSM 900", "GSM 1800"], :brand=>"M-Tel", :operator=>"Nigerian Mobile Telecommunications Limited", :status=>"Not Operational"}, ["621", "50"]=>{:mobile_country_code=>"621", :mobile_network_code=>"50", :bands=>["GSM 900", "GSM 1800"], :brand=>"Glo", :operator=>"Globacom Ltd", :status=>"Operational"}, ["621", "60"]=>{:mobile_country_code=>"621", :mobile_network_code=>"60", :bands=>["GSM 900", "GSM 1800"], :brand=>"Etisalat", :operator=>"Emerging Markets Telecommunication Services Ltd (Etisalat)", :status=>"Operational"}, ["622", "01"]=>{:mobile_country_code=>"622", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"[48]", :operator=>"Bharti Airtel SA", :status=>"Operational"}, ["622", "02"]=>{:mobile_country_code=>"622", :mobile_network_code=>"02", :bands=>["CDMA2000"], :brand=>"Tawali", :notes=>"semi-fixed line; formerly Tchad Mobile / Orascom Telecom GSM 900 - defunct in 2004", :operator=>"SotelTchad", :status=>"Operational"}, ["622", "03"]=>{:mobile_country_code=>"622", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Tigo", :notes=>"[48]", :operator=>"Millicom", :status=>"Operational"}, ["622", "07"]=>{:mobile_country_code=>"622", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"Salam", :notes=>"[48]", :operator=>"SotelTchad", :status=>"Operational"}, ["623", "01"]=>{:mobile_country_code=>"623", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"CTP", :notes=>"now Atlantique Telecom Centrafrique SA (ETISALAT)", :operator=>"Centrafrique Telecom Plus", :status=>"Operational"}, ["623", "02"]=>{:mobile_country_code=>"623", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"TC", :operator=>"Telecel Centrafrique", :status=>"Operational"}, ["623", "03"]=>{:mobile_country_code=>"623", :mobile_network_code=>"03", :bands=>["GSM 1800"], :brand=>"Orange", :operator=>"Orange RCA", :status=>"Reserved"}, ["623", "04"]=>{:mobile_country_code=>"623", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"Nationlink", :operator=>"Nationlink Telecom RCA", :status=>"Operational"}, ["624", "01"]=>{:mobile_country_code=>"624", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"MTN Cameroon", :operator=>"Mobile Telephone Network Cameroon Ltd", :status=>"Operational"}, ["624", "02"]=>{:mobile_country_code=>"624", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Orange Cameroun S.A.", :status=>"Operational"}, ["624", "04"]=>{:mobile_country_code=>"624", :mobile_network_code=>"04", :bands=>["Unknown"], :brand=>"Nexttel", :notes=>"[46]", :operator=>"Nexttel", :status=>"Operational"}, ["625", "01"]=>{:mobile_country_code=>"625", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"CVMOVEL", :operator=>"CVMovel, S.A.", :status=>"Operational"}, ["625", "02"]=>{:mobile_country_code=>"625", :mobile_network_code=>"02", :bands=>["GSM 1800"], :brand=>"T+", :operator=>"T+", :status=>"Operational"}, ["626", "01"]=>{:mobile_country_code=>"626", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"CSTmovel", :operator=>"Companhia Santomese de Telecomunica\u00E7\u00F4e", :status=>"Operational"}, ["627", "01"]=>{:mobile_country_code=>"627", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Orange GQ", :operator=>"GETESA", :status=>"Operational"}, ["627", "03"]=>{:mobile_country_code=>"627", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Hits GQ", :operator=>"HiTs EG.SA", :status=>"Operational"}, ["628", "01"]=>{:mobile_country_code=>"628", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Libertis", :operator=>"Gabon Telecom & Libertis S.A.", :status=>"Operational"}, ["628", "02"]=>{:mobile_country_code=>"628", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Moov", :operator=>"Atlantique T\u00E9l\u00E9com (Etisalat Group) Gabon S.A.", :status=>"Operational"}, ["628", "03"]=>{:mobile_country_code=>"628", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"[41]", :operator=>"Airtel Gabon S.A.", :status=>"Operational"}, ["628", "04"]=>{:mobile_country_code=>"628", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"Azur", :operator=>"USAN Gabon S.A.", :status=>"Operational"}, ["628", "05"]=>{:mobile_country_code=>"628", :mobile_network_code=>"05", :bands=>["Unknown"], :brand=>"RAG", :notes=>"[4]", :operator=>"R\u00E9seau de l\u2019Administration Gabonaise", :status=>"Unknown"}, ["629", "01"]=>{:mobile_country_code=>"629", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"Former Zain and Celtel brand[41]", :operator=>"Celtel Congo", :status=>"Operational"}, ["629", "07"]=>{:mobile_country_code=>"629", :mobile_network_code=>"07", :bands=>["GSM 900"], :operator=>"Warid Telecom", :status=>"Operational"}, ["629", "10"]=>{:mobile_country_code=>"629", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"Libertis Telecom", :operator=>"MTN CONGO S.A", :status=>"Operational"}, ["630", "01"]=>{:mobile_country_code=>"630", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Vodacom", :operator=>"Vodacom Congo RDC sprl", :status=>"Operational"}, ["630", "02"]=>{:mobile_country_code=>"630", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"airtel", :notes=>"[41]", :operator=>"Airtel sprl", :status=>"Operational"}, ["630", "04"]=>{:mobile_country_code=>"630", :mobile_network_code=>"04", :bands=>["Unknown"], :operator=>"Cellco", :status=>"Unknown"}, ["630", "05"]=>{:mobile_country_code=>"630", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"Supercell", :operator=>"Supercell SPRL", :status=>"Operational"}, ["630", "10"]=>{:mobile_country_code=>"630", :mobile_network_code=>"10", :bands=>["Unknown"], :brand=>"Libertis Telecom", :operator=>"", :status=>"Operational"}, ["630", "86"]=>{:mobile_country_code=>"630", :mobile_network_code=>"86", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Orange", :operator=>"Orange RDC sarl", :status=>"Operational"}, ["630", "88"]=>{:mobile_country_code=>"630", :mobile_network_code=>"88", :bands=>["GSM 900", "GSM 1800"], :brand=>"YTT", :notes=>"Planned[4]", :operator=>"Yozma Timeturns sprl", :status=>"Not operational"}, ["630", "89"]=>{:mobile_country_code=>"630", :mobile_network_code=>"89", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Tigo", :notes=>"a Millicom Company", :operator=>"OASIS sprl", :status=>"Operational"}, ["630", "90"]=>{:mobile_country_code=>"630", :mobile_network_code=>"90", :bands=>["GSM 900", "GSM 1800"], :brand=>"Africell", :notes=>"[4]", :operator=>"Africell RDC sprl", :status=>"Operational"}, ["631", "02"]=>{:mobile_country_code=>"631", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"UNITEL", :notes=>";[7][8][9] also lists LTE 2100", :operator=>"UNITEL S.a.r.l.", :status=>"Operational"}, ["631", "04"]=>{:mobile_country_code=>"631", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "LTE 1800"], :brand=>"MOVICEL", :notes=>"[1][7][8]", :operator=>"MOVICEL Telecommunications S.A.", :status=>"Operational"}, ["632", "01"]=>{:mobile_country_code=>"632", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Guinetel", :notes=>"[4]", :operator=>"Guin\u00E9tel S.A.", :status=>"Operational"}, ["632", "02"]=>{:mobile_country_code=>"632", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"MTN Areeba", :notes=>"[74]", :operator=>"Spacetel Guin\u00E9-Bissau S.A.", :status=>"Operational"}, ["632", "03"]=>{:mobile_country_code=>"632", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Orange", :operator=>"", :status=>"Operational"}, ["632", "07"]=>{:mobile_country_code=>"632", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800"], :brand=>"Guinetel", :operator=>"Guin\u00E9tel S.A.", :status=>"Operational"}, ["633", "01"]=>{:mobile_country_code=>"633", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Cable & Wireless", :operator=>"Cable & Wireless Seychelles", :status=>"Operational"}, ["633", "02"]=>{:mobile_country_code=>"633", :mobile_network_code=>"02", :bands=>["GSM 1800"], :brand=>"Mediatech International", :operator=>"Mediatech International", :status=>"Operational"}, ["633", "10"]=>{:mobile_country_code=>"633", :mobile_network_code=>"10", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Airtel", :operator=>"Telecom Seychelles Ltd", :status=>"Operational"}, ["634", "01"]=>{:mobile_country_code=>"634", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Zain SD", :notes=>"Former, Mobitel", :operator=>"Zain Group - Sudan", :status=>"Operational"}, ["634", "02"]=>{:mobile_country_code=>"634", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"MTN", :operator=>"MTN Sudan", :status=>"Operational"}, ["634", "05"]=>{:mobile_country_code=>"634", :mobile_network_code=>"05", :bands=>["CDMA2000 450"], :brand=>"Canar Telecom", :operator=>"", :status=>"Operational"}, ["634", "07"]=>{:mobile_country_code=>"634", :mobile_network_code=>"07", :bands=>["GSM 1800", "UMTS 2100", "CDMA2000 800"], :brand=>"Sudani One", :operator=>"Sudatel Group", :status=>"Operational"}, ["634", "09"]=>{:mobile_country_code=>"634", :mobile_network_code=>"09", :bands=>[], :brand=>"Privet Network", :operator=>"NEC", :status=>""}, ["635", "10"]=>{:mobile_country_code=>"635", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"MTN", :operator=>"MTN Rwandacell SARL", :status=>"Operational"}, ["635", "12"]=>{:mobile_country_code=>"635", :mobile_network_code=>"12", :bands=>["GSM\u00A0???"], :brand=>"Rwandatel", :notes=>"GSM licence revoked in April 2011[125]", :operator=>"Rwandatel S.A.", :status=>"Not operational"}, ["635", "13"]=>{:mobile_country_code=>"635", :mobile_network_code=>"13", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Tigo", :operator=>"TIGO RWANDA S.A", :status=>"Operational"}, ["635", "14"]=>{:mobile_country_code=>"635", :mobile_network_code=>"14", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Airtel", :notes=>"Live since 1 April 2012[126]", :operator=>"Airtel RWANDA", :status=>"Operational"}, ["635", "17"]=>{:mobile_country_code=>"635", :mobile_network_code=>"17", :bands=>["Unknown"], :notes=>"[54]", :operator=>"Olleh Rwanda Networks", :status=>"Unknown"}, ["636", "01"]=>{:mobile_country_code=>"636", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 21000"], :brand=>"ETH-MTN", :notes=>"[4]", :operator=>"Ethio Telecom", :status=>"Operational"}, ["637", "01"]=>{:mobile_country_code=>"637", :mobile_network_code=>"01", :bands=>["GSM 900 GSM 1800 3G 2100"], :brand=>"Telesom", :operator=>"Telesom", :status=>"Operational"}, ["637", "04"]=>{:mobile_country_code=>"637", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Somafone", :operator=>"Somafone FZLLC", :status=>"Operational"}, ["637", "10"]=>{:mobile_country_code=>"637", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"Nationlink", :operator=>"NationLink Telecom", :status=>"Operational"}, ["637", "30"]=>{:mobile_country_code=>"637", :mobile_network_code=>"30", :bands=>["GSM 900"], :brand=>"Golis", :operator=>"Golis Telecom Somalia", :status=>"Operational"}, ["637", "50"]=>{:mobile_country_code=>"637", :mobile_network_code=>"50", :bands=>["GSM 900"], :brand=>"Hormuud", :notes=>"Uncertain MNC number, maybe (also) 25", :operator=>"Hormuud Telecom Somalia Inc", :status=>"Operational"}, ["637", "57"]=>{:mobile_country_code=>"637", :mobile_network_code=>"57", :bands=>["GSM 900", "GSM 1800"], :brand=>"Unittel", :operator=>"Unitted Telecom", :status=>"Operational"}, ["637", "60"]=>{:mobile_country_code=>"637", :mobile_network_code=>"60", :bands=>["GSM 900", "GSM 1800"], :brand=>"Nationlink Telecom", :operator=>"Nationlink Telecom", :status=>"Operational"}, ["637", "67"]=>{:mobile_country_code=>"637", :mobile_network_code=>"67", :bands=>["GSM 900 GSM 1800 3G 2100"], :brand=>"Horntel Group", :operator=>"HTG Group Somalia", :status=>"Operational"}, ["637", "70"]=>{:mobile_country_code=>"637", :mobile_network_code=>"70", :bands=>["Unknown"], :notes=>"MNC withdrawn [116]", :operator=>"Onkod Telecom Ltd.", :status=>"Not operational"}, ["637", "71"]=>{:mobile_country_code=>"637", :mobile_network_code=>"71", :bands=>["900", "1800", "2100"], :brand=>"Somtel", :operator=>"2G/3G", :status=>"Operational"}, ["637", "82"]=>{:mobile_country_code=>"637", :mobile_network_code=>"82", :bands=>["GSM 900", "GSM 1800", "CDMA2000", "4G LTE Alcatel-Lucent"], :brand=>"Telcom", :operator=>"Telcom Somalia", :status=>"Operational"}, ["638", "01"]=>{:mobile_country_code=>"638", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Evatis", :operator=>"Djibouti Telecom SA", :status=>"Operational"}, ["639", "02"]=>{:mobile_country_code=>"639", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Safaricom", :operator=>"Safaricom Limited", :status=>"Operational"}, ["639", "03"]=>{:mobile_country_code=>"639", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Airtel", :notes=>"[41]", :operator=>"B Airtel", :status=>"Operational"}, ["639", "05"]=>{:mobile_country_code=>"639", :mobile_network_code=>"05", :bands=>["GSM 900"], :brand=>"yu", :operator=>"Econet Wireless Kenya", :status=>"Operational"}, ["639", "07"]=>{:mobile_country_code=>"639", :mobile_network_code=>"07", :bands=>["CDMA2000", "GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Orange Kenya", :operator=>"Telkom Kenya", :status=>"Operational"}, ["640", "02"]=>{:mobile_country_code=>"640", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"tiGO", :notes=>"Former Mobitel and Buzz", :operator=>"MIC Tanzania Limited", :status=>"Operational"}, ["640", "03"]=>{:mobile_country_code=>"640", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Zantel", :operator=>"Zanzibar Telecom Ltd", :status=>"Operational"}, ["640", "04"]=>{:mobile_country_code=>"640", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"Vodacom", :operator=>"Vodacom Tanzania Limited", :status=>"Operational"}, ["640", "05"]=>{:mobile_country_code=>"640", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800"], :brand=>"Airtel", :notes=>"Former Celtel (Zain)[41]", :operator=>"Bharti Airtel", :status=>"Operational"}, ["640", "06"]=>{:mobile_country_code=>"640", :mobile_network_code=>"06", :bands=>["CDMA"], :brand=>"Sasatel", :notes=>"[148]", :operator=>"Dovetel Limited", :status=>"Operational"}, ["640", "07"]=>{:mobile_country_code=>"640", :mobile_network_code=>"07", :bands=>["CDMA 800"], :brand=>"TTCL Mobile", :notes=>"[148]", :operator=>"Tanzania Telecommunication Company LTD (TTCL)", :status=>"Operational"}, ["640", "08"]=>{:mobile_country_code=>"640", :mobile_network_code=>"08", :bands=>["CDMA"], :brand=>"Benson Online (BOL)", :notes=>"[148]", :operator=>"Benson Informatics Limited", :status=>"Operational"}, ["640", "09"]=>{:mobile_country_code=>"640", :mobile_network_code=>"09", :bands=>["\u00A0???"], :brand=>"Hits", :notes=>"[148]", :operator=>"ExcellentCom Tanzania Limited", :status=>"Reserved"}, ["640", "11"]=>{:mobile_country_code=>"640", :mobile_network_code=>"11", :bands=>["LTE 800"], :brand=>"SmileCom", :notes=>"[148]", :operator=>"Smile Telecoms Holdings Ltd.", :status=>"Operational"}, ["641", "01"]=>{:mobile_country_code=>"641", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"Former Zain, Celtel [41]", :operator=>"Bharti Airtel", :status=>"Operational"}, ["641", "10"]=>{:mobile_country_code=>"641", :mobile_network_code=>"10", :bands=>["GSM 900", "LTE-TDD 2600"], :brand=>"MTN", :notes=>"LTE band 41", :operator=>"MTN Uganda", :status=>"Operational"}, ["641", "11"]=>{:mobile_country_code=>"641", :mobile_network_code=>"11", :bands=>["GSM 900", "UMTS 2100"], :brand=>"UTL", :operator=>"Uganda Telecom Ltd.", :status=>"Operational"}, ["641", "14"]=>{:mobile_country_code=>"641", :mobile_network_code=>"14", :bands=>["GSM 900", "GSM 1800", "LTE 800"], :brand=>"Africell", :notes=>"Former Orange, HITS Telecom", :operator=>"Africell Uganda", :status=>"Operational"}, ["641", "18"]=>{:mobile_country_code=>"641", :mobile_network_code=>"18", :bands=>["GSM 900", "GSM 1800"], :operator=>"Suretelecom", :status=>"Operational"}, ["641", "22"]=>{:mobile_country_code=>"641", :mobile_network_code=>"22", :bands=>["GSM 900", "GSM 1800"], :brand=>"Airtel", :notes=>"Former Warid Telecom", :operator=>"Bharti Airtel", :status=>"Operational"}, ["641", "30"]=>{:mobile_country_code=>"641", :mobile_network_code=>"30", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Anupam Global Soft Uganda Limited", :status=>"Unknown"}, ["641", "33"]=>{:mobile_country_code=>"641", :mobile_network_code=>"33", :bands=>["LTE 800"], :brand=>"Smile", :operator=>"Smile Communications Uganda Limited", :status=>"Operational"}, ["641", "40"]=>{:mobile_country_code=>"641", :mobile_network_code=>"40", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Civil Aviation Authority (CAA)", :status=>"Unknown"}, ["641", "44"]=>{:mobile_country_code=>"641", :mobile_network_code=>"44", :bands=>["MVNO"], :brand=>"K2", :operator=>"K2 Telecom Ltd", :status=>"Operational"}, ["641", "66"]=>{:mobile_country_code=>"641", :mobile_network_code=>"66", :bands=>["Unknown"], :brand=>"i-Tel", :notes=>"[17]", :operator=>"i-Tel Ltd", :status=>"Unknown"}, ["642", "01"]=>{:mobile_country_code=>"642", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Spacetel", :notes=>"[42]", :operator=>"Econet Wireless Burundi PLC", :status=>"Operational"}, ["642", "02"]=>{:mobile_country_code=>"642", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Tempo", :notes=>"Was Safaris", :operator=>"Africell PLC", :status=>"Operational"}, ["642", "03"]=>{:mobile_country_code=>"642", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Onatel", :operator=>"Onatel", :status=>"Operational"}, ["642", "07"]=>{:mobile_country_code=>"642", :mobile_network_code=>"07", :bands=>["GSM 1800"], :brand=>"Smart Mobile", :operator=>"LACELL SU", :status=>"Operational"}, ["642", "08"]=>{:mobile_country_code=>"642", :mobile_network_code=>"08", :bands=>["Unknown"], :brand=>"HiTs Telecom", :notes=>"[43] License revoked[44]", :operator=>"HiTs Telecom", :status=>"Not operational"}, ["642", "82"]=>{:mobile_country_code=>"642", :mobile_network_code=>"82", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Leo", :notes=>"formerly Telecel, then U-COM Burundi[45]", :operator=>"Orascom Telecom (a subsidiary of Vimplecom)", :status=>"Operational"}, ["643", "01"]=>{:mobile_country_code=>"643", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "UMTS 2100"], :brand=>"mCel", :notes=>"[103][51]", :operator=>"Mocambique Celular S.A.", :status=>"Operational"}, ["643", "03"]=>{:mobile_country_code=>"643", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Movitel", :notes=>"[103][104]", :operator=>"Movitel S.A.", :status=>"Operational"}, ["643", "04"]=>{:mobile_country_code=>"643", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Vodacom", :notes=>"[103]", :operator=>"Vodacom Mozambique, S.A.", :status=>"Operational"}, ["645", "01"]=>{:mobile_country_code=>"645", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"Former Celtel (Zain) brand[41]", :operator=>"Bharti Airtel", :status=>"Operational"}, ["645", "02"]=>{:mobile_country_code=>"645", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"MTN", :notes=>"Former Telecel brand[161]", :operator=>"MTN Group", :status=>"Operational"}, ["645", "03"]=>{:mobile_country_code=>"645", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"ZAMTEL", :operator=>"Zambia Telecommunications Company Ltd", :status=>"Operational"}, ["646", "01"]=>{:mobile_country_code=>"646", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"Airtel", :notes=>"Former Celtel (Zain), Madacom", :operator=>"Bharti Airtel", :status=>"Operational"}, ["646", "02"]=>{:mobile_country_code=>"646", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Orange Madagascar S.A.", :status=>"Operational"}, ["646", "03"]=>{:mobile_country_code=>"646", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Sacel", :notes=>"license withdrawn in 2001 [91]", :operator=>"Sacel Madagascar S.A.", :status=>"Not operational"}, ["646", "04"]=>{:mobile_country_code=>"646", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"Telma", :operator=>"Telma Mobile S.A.", :status=>"Operational"}, ["647", "00"]=>{:mobile_country_code=>"647", :mobile_network_code=>"00", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Orange", :operator=>"Orange La R\u00E9union", :status=>"Operational"}, ["647", "01"]=>{:mobile_country_code=>"647", :mobile_network_code=>"01", :bands=>["Unknown"], :notes=>"[59]", :operator=>"BJT Partners", :status=>"Unknown"}, ["647", "02"]=>{:mobile_country_code=>"647", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Outremer", :operator=>"Outremer Telecom", :status=>"Operational"}, ["647", "10"]=>{:mobile_country_code=>"647", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"SFR Reunion", :operator=>"Societe Reunionnaise de Radiotelephone", :status=>"Operational"}, ["648", "01"]=>{:mobile_country_code=>"648", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Net*One", :operator=>"Net*One Cellular (Pvt) Ltd", :status=>"Operational"}, ["648", "03"]=>{:mobile_country_code=>"648", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Telecel", :operator=>"Telecel Zimbabwe (PVT) Ltd", :status=>"Operational"}, ["648", "04"]=>{:mobile_country_code=>"648", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 2100"], :brand=>"Econet", :operator=>"Econet Wireless (Private) Limited", :status=>"Operational"}, ["649", "01"]=>{:mobile_country_code=>"649", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "LTE 1800"], :brand=>"MTC", :operator=>"MTC Namibia", :status=>"Operational"}, ["649", "02"]=>{:mobile_country_code=>"649", :mobile_network_code=>"02", :bands=>["CDMA2000 800"], :brand=>"switch", :operator=>"Telecom Namibia", :status=>"Operational"}, ["649", "03"]=>{:mobile_country_code=>"649", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "LTE 1800"], :brand=>"TN Mobile", :notes=>"former Cell One", :operator=>"Telecom Namibia", :status=>"Operational"}, ["650", "01"]=>{:mobile_country_code=>"650", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800"], :brand=>"TNM", :operator=>"Telecom Network Malawi", :status=>"Operational"}, ["650", "10"]=>{:mobile_country_code=>"650", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"Airtel", :notes=>"Former Celtel (Zain)[41]", :operator=>"Bharti Airtel Limited", :status=>"Operational"}, ["651", "01"]=>{:mobile_country_code=>"651", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Vodacom", :operator=>"Vodacom Lesotho (Pty) Ltd", :status=>"Operational"}, ["651", "02"]=>{:mobile_country_code=>"651", :mobile_network_code=>"02", :bands=>["Unknown"], :operator=>"Econet Ezi-cel", :status=>"Operational"}, ["652", "01"]=>{:mobile_country_code=>"652", :mobile_network_code=>"01", :bands=>["GSM 900", "UMTS"], :brand=>"Mascom", :notes=>"[1]", :operator=>"Mascom Wireless (Pty) Limited", :status=>"Operational"}, ["652", "02"]=>{:mobile_country_code=>"652", :mobile_network_code=>"02", :bands=>["GSM 900", "UMTS 2100"], :brand=>"Orange", :notes=>"formerly Vista Cellular[35][36]", :operator=>"Orange (Botswana) Pty Limited", :status=>"Operational"}, ["652", "04"]=>{:mobile_country_code=>"652", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800"], :brand=>"BTC Mobile", :notes=>"[37]", :operator=>"Botswana Telecommunications Corporation", :status=>"Operational"}, ["653", "01"]=>{:mobile_country_code=>"653", :mobile_network_code=>"01", :bands=>["Unknown"], :notes=>"[17]", :operator=>"SPTC", :status=>"Unknown"}, ["653", "10"]=>{:mobile_country_code=>"653", :mobile_network_code=>"10", :bands=>["GSM 900"], :brand=>"Swazi MTN", :operator=>"Swazi MTN Limited", :status=>"Operational"}, ["654", "01"]=>{:mobile_country_code=>"654", :mobile_network_code=>"01", :bands=>["Unknown"], :brand=>"Comoros Telecom", :operator=>"HURI - SNPT", :status=>"Operational"}, ["655", "01"]=>{:mobile_country_code=>"655", :mobile_network_code=>"01", :bands=>["GSM 900", "GSM 1800", "UMTS 2100", "LTE 1800"], :brand=>"Vodacom", :operator=>"Vodacom", :status=>"Operational"}, ["655", "02"]=>{:mobile_country_code=>"655", :mobile_network_code=>"02", :bands=>["GSM 1800", "UMTS 2100", "LTE-TDD 2300"], :brand=>"Telkom", :notes=>"Former Telkom Mobile, 8.ta", :operator=>"Telkom SA Ltd", :status=>"Operational"}, ["655", "04"]=>{:mobile_country_code=>"655", :mobile_network_code=>"04", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Sasol (Pty) Ltd.", :status=>"Unknown"}, ["655", "06"]=>{:mobile_country_code=>"655", :mobile_network_code=>"06", :bands=>["Unknown"], :operator=>"Sentech (Pty) Ltd", :status=>"Operational"}, ["655", "07"]=>{:mobile_country_code=>"655", :mobile_network_code=>"07", :bands=>["GSM 900", "GSM 1800", "UMTS 900"], :brand=>"Cell C", :notes=>"LTE 2100 trial", :operator=>"Cell C (Pty) Ltd", :status=>"Operational"}, ["655", "10"]=>{:mobile_country_code=>"655", :mobile_network_code=>"10", :bands=>["GSM 900", "UMTS 900", "UMTS 2100", "LTE 1800"], :brand=>"MTN", :operator=>"MTN Group", :status=>"Operational"}, ["655", "11"]=>{:mobile_country_code=>"655", :mobile_network_code=>"11", :bands=>["TETRA 410"], :operator=>"South African Police Service Gauteng", :status=>"Operational"}, ["655", "12"]=>{:mobile_country_code=>"655", :mobile_network_code=>"12", :bands=>["Unknown"], :brand=>"MTN", :notes=>"[17]", :operator=>"MTN Group", :status=>"Unknown"}, ["655", "13"]=>{:mobile_country_code=>"655", :mobile_network_code=>"13", :bands=>["CDMA 800"], :brand=>"Neotel", :operator=>"Neotel Pty Ltd", :status=>"Operational"}, ["655", "14"]=>{:mobile_country_code=>"655", :mobile_network_code=>"14", :bands=>["LTE 1800"], :brand=>"Neotel", :notes=>"[90]", :operator=>"Neotel Pty Ltd", :status=>"Operational"}, ["655", "16"]=>{:mobile_country_code=>"655", :mobile_network_code=>"16", :bands=>["Unknown"], :notes=>"MNC withdrawn [61][136]", :operator=>"Phoenix System Integration (Pty) Ltd", :status=>"Not operational"}, ["655", "19"]=>{:mobile_country_code=>"655", :mobile_network_code=>"19", :bands=>["Unknown"], :brand=>"iBurst", :notes=>"LTE 2600 trial", :operator=>"Wireless Business Solutions (Pty) Ltd", :status=>"Operational"}, ["655", "21"]=>{:mobile_country_code=>"655", :mobile_network_code=>"21", :bands=>["TETRA 410"], :operator=>"Cape Town Metropolitan Council", :status=>"Operational"}, ["655", "25"]=>{:mobile_country_code=>"655", :mobile_network_code=>"25", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Wirels Connect", :status=>"Unknown"}, ["655", "27"]=>{:mobile_country_code=>"655", :mobile_network_code=>"27", :bands=>["Unknown"], :notes=>"[17]", :operator=>"A to Z Vaal Industrial Supplies Pty Ltd", :status=>"Unknown"}, ["655", "30"]=>{:mobile_country_code=>"655", :mobile_network_code=>"30", :bands=>["Unknown"], :operator=>"Bokamoso Consortium", :status=>"Operational"}, ["655", "31"]=>{:mobile_country_code=>"655", :mobile_network_code=>"31", :bands=>["Unknown"], :operator=>"Karabo Telecoms (Pty) Ltd.", :status=>"Operational"}, ["655", "32"]=>{:mobile_country_code=>"655", :mobile_network_code=>"32", :bands=>["Unknown"], :operator=>"Ilizwi Telecommunications", :status=>"Operational"}, ["655", "33"]=>{:mobile_country_code=>"655", :mobile_network_code=>"33", :bands=>["Unknown"], :operator=>"Thinta Thinta Telecommunications Pty Ltd", :status=>"Operational"}, ["655", "34"]=>{:mobile_country_code=>"655", :mobile_network_code=>"34", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Bokone Telecoms Pty Ltd", :status=>"Unknown"}, ["655", "35"]=>{:mobile_country_code=>"655", :mobile_network_code=>"35", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Kingdom Communications Pty Ltd", :status=>"Unknown"}, ["655", "36"]=>{:mobile_country_code=>"655", :mobile_network_code=>"36", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Amatole Telecommunications Pty Ltd", :status=>"Unknown"}, ["655", "41"]=>{:mobile_country_code=>"655", :mobile_network_code=>"41", :bands=>["Unknown"], :notes=>"[17]", :operator=>"South African Police Service", :status=>"Unknown"}, ["655", "50"]=>{:mobile_country_code=>"655", :mobile_network_code=>"50", :bands=>["Unknown"], :notes=>"[90]", :operator=>"Ericsson South Africa (Pty) Ltd", :status=>"Unknown"}, ["655", "51"]=>{:mobile_country_code=>"655", :mobile_network_code=>"51", :bands=>["Unknown"], :notes=>"[137]", :operator=>"Integrat (Pty) Ltd", :status=>"Unknown"}, ["657", "01"]=>{:mobile_country_code=>"657", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Eritel", :operator=>"Eritrea Telecommunications Services Corporation", :status=>"Operational"}, ["659", "02"]=>{:mobile_country_code=>"659", :mobile_network_code=>"02", :bands=>["GSM 900", "1800, UMTS 2100"], :brand=>"MTN", :notes=>"[139][140]", :operator=>"MTN South Sudan", :status=>"Operational"}, ["659", "03"]=>{:mobile_country_code=>"659", :mobile_network_code=>"03", :bands=>["GSM 900", "1800"], :brand=>"Gemtel", :notes=>"[139][140]", :operator=>"Gemtel", :status=>"Operational"}, ["659", "04"]=>{:mobile_country_code=>"659", :mobile_network_code=>"04", :bands=>["GSM 900", "1800"], :brand=>"Vivacell", :notes=>"[139][140]", :operator=>"Network of the World (NOW)", :status=>"Operational"}, ["659", "06"]=>{:mobile_country_code=>"659", :mobile_network_code=>"06", :bands=>["GSM 900", "1800"], :brand=>"Zain", :notes=>"[139][140]", :operator=>"Zain South Sudan", :status=>"Operational"}, ["659", "07"]=>{:mobile_country_code=>"659", :mobile_network_code=>"07", :bands=>["CDMA"], :brand=>"Sudani", :notes=>"[140]", :operator=>"Sudani", :status=>"Operational"}, ["702", "67"]=>{:mobile_country_code=>"702", :mobile_network_code=>"67", :bands=>["GSM 1900", "UMTS", "LTE 850", "LTE 1900"], :brand=>"DigiCell", :notes=>"[1]", :operator=>"Belize Telemedia Ltd. (BTL)", :status=>"Operational"}, ["702", "68"]=>{:mobile_country_code=>"702", :mobile_network_code=>"68", :bands=>["Unknown"], :brand=>"INTELCO", :notes=>"[4]", :operator=>"International Telecommunications Ltd.", :status=>"Unknown"}, ["702", "99"]=>{:mobile_country_code=>"702", :mobile_network_code=>"99", :bands=>["CDMA2000"], :brand=>"Smart", :operator=>"SpeedNet Communications Limited", :status=>"Operational"}, ["704", "01"]=>{:mobile_country_code=>"704", :mobile_network_code=>"01", :bands=>["CDMA 1900", "GSM 900", "GSM 1900", "UMTS 1900"], :brand=>"Claro", :notes=>"former Servicios de Comunicaciones Personales Inalambricas (SERCOM)", :operator=>"Telecomunicaciones de Guatemala, S.A.", :status=>"Operational"}, ["704", "02"]=>{:mobile_country_code=>"704", :mobile_network_code=>"02", :bands=>["GSM 850", "TDMA 800", "UMTS 850"], :brand=>"Tigo", :notes=>"former COMCEL", :operator=>"Millicom / Local partners", :status=>"Operational"}, ["704", "03"]=>{:mobile_country_code=>"704", :mobile_network_code=>"03", :bands=>["CDMA 1900", "GSM 1900", "UMTS 1900"], :brand=>"movistar", :operator=>"Telef\u00F3nica M\u00F3viles Guatemala (Telef\u00F3nica)", :status=>"Operational"}, ["704", "\u00A0?"]=>{:mobile_country_code=>"704", :mobile_network_code=>"\u00A0?", :bands=>["iDEN 800"], :brand=>"RED/INTELFON", :notes=>"INTELFON GUATEMALA own by INTELFON El Salvador", :operator=>"INTELFON Guatemala", :status=>"Operational"}, ["706", "01"]=>{:mobile_country_code=>"706", :mobile_network_code=>"01", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"CTE Telecom Personal, Claro", :notes=>"Claro", :operator=>"CTE Telecom Personal SA de CV Am\u00E9rica M\u00F3vil", :status=>"Operational"}, ["706", "02"]=>{:mobile_country_code=>"706", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"digicel", :notes=>"Digicel Only EDGE and 3G work, LTE NO.", :operator=>"Digicel Group", :status=>"Operational"}, ["706", "03"]=>{:mobile_country_code=>"706", :mobile_network_code=>"03", :bands=>["GSM 850"], :brand=>"Tigo", :notes=>"Tigo / Millicom Only EDGE and 3G work, LTE NO.", :operator=>"Telemovil EL Salvador S.A.", :status=>"Operational"}, ["706", "04"]=>{:mobile_country_code=>"706", :mobile_network_code=>"04", :bands=>["GSM 850"], :brand=>"movistar", :notes=>"Movistar", :operator=>"Telef\u00F3nica M\u00F3viles El Salvador", :status=>"Operational"}, ["708", "001"]=>{:mobile_country_code=>"708", :mobile_network_code=>"001", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"Claro", :notes=>"[75]", :operator=>"Servicios de Comunicaciones de Honduras S.A. de C.V.", :status=>"Operational"}, ["708", "002"]=>{:mobile_country_code=>"708", :mobile_network_code=>"002", :bands=>["CDMA 850", "GSM 850", "UMTS 850"], :brand=>"Tigo", :notes=>"also uses or has used MNC 02[4][75]", :operator=>"Celtel", :status=>"Operational"}, ["708", "030"]=>{:mobile_country_code=>"708", :mobile_network_code=>"030", :bands=>["GSM 1900"], :brand=>"Hondutel", :operator=>"Empresa Hondure\u00F1a de Telecomunicaciones", :status=>"Operational"}, ["708", "040"]=>{:mobile_country_code=>"708", :mobile_network_code=>"040", :bands=>["GSM 1900"], :brand=>"Digicel", :notes=>"[4]", :operator=>"Digicel de Honduras", :status=>"Operational"}, ["710", "21"]=>{:mobile_country_code=>"710", :mobile_network_code=>"21", :bands=>["UMTS 850", "GSM 1900"], :brand=>"Claro", :operator=>"Empresa Nicarag\u00FCense de Telecomunicaciones, S.A. (ENITEL) (Am\u00E9rica M\u00F3vil)", :status=>"Operational"}, ["710", "30"]=>{:mobile_country_code=>"710", :mobile_network_code=>"30", :bands=>["UMTS 850", "GSM 850", "GSM 1900"], :brand=>"movistar", :notes=>"CDMA 800, TDMA 800 and NAMPS 800 are not commercial", :operator=>"Telefon\u00EDa Celular de Nicaragua, S.A. (Telef\u00F3nica, S.A.)", :status=>"Operational"}, ["710", "73"]=>{:mobile_country_code=>"710", :mobile_network_code=>"73", :bands=>["UMTS 850", "GSM 1900"], :brand=>"SERCOM", :notes=>"Not listed by the GSM Association (Merged with ENITEL in 2004 and became Claro in 2009)", :operator=>"Servicios de Comunicaciones S.A.", :status=>"Operational"}, ["712", "01"]=>{:mobile_country_code=>"712", :mobile_network_code=>"01", :bands=>["GSM 1800", "UMTS 850", "LTE 2600"], :brand=>"Kolbi ICE", :notes=>"Network Name: Kolbi ICE", :operator=>"Instituto Costarricense de Electricidad", :status=>"Operational"}, ["712", "02"]=>{:mobile_country_code=>"712", :mobile_network_code=>"02", :bands=>["GSM 1800", "UMTS 850", "LTE 2600"], :brand=>"Kolbi ICE", :notes=>"Network Name: Kolbi ICE", :operator=>"Instituto Costarricense de Electricidad", :status=>"Operational"}, ["712", "03"]=>{:mobile_country_code=>"712", :mobile_network_code=>"03", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Claro", :notes=>"Network Name: Claro", :operator=>"Claro CR Telecomunicaciones (Al\u00F3)", :status=>"Operational"}, ["712", "04"]=>{:mobile_country_code=>"712", :mobile_network_code=>"04", :bands=>["GSM 1800", "UMTS 850", "UMTS 2100"], :brand=>"movistar", :notes=>"[49][50] Network Name: movistar", :operator=>"Telef\u00F3nica M\u00F3viles Costa Rica", :status=>"Operational"}, ["712", "20"]=>{:mobile_country_code=>"712", :mobile_network_code=>"20", :bands=>["GSM 1800", "UMTS 850"], :brand=>"fullm\u00F3vil", :notes=>"Network Name: fullmovil[4]", :operator=>"Virtualis S.A.", :status=>"Operational"}, ["714", "01"]=>{:mobile_country_code=>"714", :mobile_network_code=>"01", :bands=>["GSM 850", "UMTS 850"], :brand=>"Cable & Wireless", :operator=>"Cable & Wireless Panama S.A.", :status=>"Operational"}, ["714", "02"]=>{:mobile_country_code=>"714", :mobile_network_code=>"02", :bands=>["GSM 850", "UMTS 850", "UMTS 1900"], :brand=>"movistar", :notes=>"CDMA2000 800, TDMA 800 and NAMPS 800 are closed.", :operator=>"Telef\u00F3nica Moviles Panama S.A, Bell South Corp. (BSC)", :status=>"Operational"}, ["714", "03"]=>{:mobile_country_code=>"714", :mobile_network_code=>"03", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"Claro", :operator=>"Am\u00E9rica M\u00F3vil", :status=>"Operational"}, ["714", "04"]=>{:mobile_country_code=>"714", :mobile_network_code=>"04", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"Digicel", :operator=>"Digicel Group", :status=>"Operational"}, ["716", "06"]=>{:mobile_country_code=>"716", :mobile_network_code=>"06", :bands=>["CDMA2000 850", "GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900", "LTE 1700-2100"], :brand=>"Movistar", :operator=>"Telef\u00F3nica M\u00F3viles Per\u00FA", :status=>"Operational"}, ["716", "07"]=>{:mobile_country_code=>"716", :mobile_network_code=>"07", :bands=>["iDEN", "UMTS 1900"], :brand=>"NEXTEL", :notes=>"[118]", :operator=>"Americatel Per\u00FA", :status=>"Inactive"}, ["716", "10"]=>{:mobile_country_code=>"716", :mobile_network_code=>"10", :bands=>["GSM 1900", "UMTS 850", "LTE 1900"], :brand=>"Claro (TIM)", :operator=>"Am\u00E9rica M\u00F3vil Per\u00FA", :status=>"Operational"}, ["716", "15"]=>{:mobile_country_code=>"716", :mobile_network_code=>"15", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"Viettel Mobile", :notes=>"Tests[119]", :operator=>"Viettel Peru S.A.C.", :status=>"Operational"}, ["716", "17"]=>{:mobile_country_code=>"716", :mobile_network_code=>"17", :bands=>["iDEN", "UMTS 1900"], :brand=>"NEXTEL", :notes=>"[120]", :operator=>"Americatel Per\u00FA", :status=>"Operational"}, ["722", "010"]=>{:mobile_country_code=>"722", :mobile_network_code=>"010", :bands=>["GSM 850", "GSM 1900", "UMTS", "LTE 1700"], :brand=>"Movistar", :notes=>"[1][13]", :operator=>"Telef\u00F3nica M\u00F3viles Argentina S.A.", :status=>"Operational"}, ["722", "020"]=>{:mobile_country_code=>"722", :mobile_network_code=>"020", :bands=>["iDEN 800"], :brand=>"Nextel", :operator=>"NII Holdings", :status=>"Operational"}, ["722", "040"]=>{:mobile_country_code=>"722", :mobile_network_code=>"040", :bands=>["Unknown"], :brand=>"Globalstar", :operator=>"TE.SA.M Argentina S.A.", :status=>"Operational"}, ["722", "070"]=>{:mobile_country_code=>"722", :mobile_network_code=>"070", :bands=>["GSM 1900"], :brand=>"Movistar", :operator=>"Telef\u00F3nica M\u00F3viles Argentina S.A.", :status=>"Operational"}, ["722", "310"]=>{:mobile_country_code=>"722", :mobile_network_code=>"310", :bands=>["GSM 1900"], :brand=>"Claro", :operator=>"AMX Argentina S.A.", :status=>"Operational"}, ["722", "320"]=>{:mobile_country_code=>"722", :mobile_network_code=>"320", :bands=>["GSM 850", "GSM 1900", "UMTS"], :brand=>"Claro", :notes=>"[1]", :operator=>"AMX Argentina S.A.", :status=>"Operational"}, ["722", "330"]=>{:mobile_country_code=>"722", :mobile_network_code=>"330", :bands=>["GSM 850", "GSM 1900", "UMTS"], :brand=>"Claro", :notes=>"[1]", :operator=>"AMX Argentina S.A.", :status=>"Operational"}, ["722", "340"]=>{:mobile_country_code=>"722", :mobile_network_code=>"340", :bands=>["GSM 850", "GSM 1900", "UMTS"], :brand=>"Personal", :notes=>"[1]", :operator=>"Telecom Personal S.A.", :status=>"Operational"}, ["722", "350"]=>{:mobile_country_code=>"722", :mobile_network_code=>"350", :bands=>["GSM 900"], :brand=>"PORT-HABLE", :operator=>"Hutchison Telecommunications Argentina S.A.", :status=>"Operational"}, ["724", "00"]=>{:mobile_country_code=>"724", :mobile_network_code=>"00", :bands=>["iDEN 850"], :brand=>"Nextel", :operator=>"NII Holdings, Inc.", :status=>"Operational"}, ["724", "01"]=>{:mobile_country_code=>"724", :mobile_network_code=>"01", :bands=>["MVNO"], :notes=>"[17] Through Vivo S.A. network", :operator=>"SISTEER DO BRASIL TELECOMUNICA\u00C7\u00D4ES", :status=>"Unknown"}, ["724", "02"]=>{:mobile_country_code=>"724", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"TIM", :operator=>"Telecom Italia Mobile", :status=>"Operational"}, ["724", "03"]=>{:mobile_country_code=>"724", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"TIM", :operator=>"Telecom Italia Mobile", :status=>"Operational"}, ["724", "04"]=>{:mobile_country_code=>"724", :mobile_network_code=>"04", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"TIM", :operator=>"Telecom Italia Mobile", :status=>"Operational"}, ["724", "05"]=>{:mobile_country_code=>"724", :mobile_network_code=>"05", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"Claro BR", :operator=>"Claro", :status=>"Operational"}, ["724", "06"]=>{:mobile_country_code=>"724", :mobile_network_code=>"06", :bands=>["GSM 850", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"Vivo", :operator=>"Vivo S.A.", :status=>"Operational"}, ["724", "10"]=>{:mobile_country_code=>"724", :mobile_network_code=>"10", :bands=>["GSM 850", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"Vivo", :operator=>"Vivo S.A.", :status=>"Operational"}, ["724", "11"]=>{:mobile_country_code=>"724", :mobile_network_code=>"11", :bands=>["GSM 850", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"Vivo", :operator=>"Vivo S.A.", :status=>"Operational"}, ["724", "15"]=>{:mobile_country_code=>"724", :mobile_network_code=>"15", :bands=>["GSM 900", "GSM 1800", "UMTS 850"], :brand=>"Sercomtel", :notes=>"[17]", :operator=>"Sercomtel Celular", :status=>"Operational"}, ["724", "16"]=>{:mobile_country_code=>"724", :mobile_network_code=>"16", :bands=>["GSM 1800", "UMTS 2100"], :brand=>"Brasil Telecom GSM", :notes=>"acquired by Oi, MNC used for existing Brasil Telecom SIM Cards only", :operator=>"Brasil Telecom GSM", :status=>"Not operational"}, ["724", "18"]=>{:mobile_country_code=>"724", :mobile_network_code=>"18", :bands=>["MVNO"], :notes=>"[17] Through TIM network", :operator=>"Datora (Vodafone)", :status=>"Operational"}, ["724", "23"]=>{:mobile_country_code=>"724", :mobile_network_code=>"23", :bands=>["GSM 850", "GSM 1800", "UMTS 850", "UMTS 2100", "LTE 2600"], :brand=>"Vivo", :notes=>"formerly Telemig Celular", :operator=>"Vivo S.A.", :status=>"Operational"}, ["724", "24"]=>{:mobile_country_code=>"724", :mobile_network_code=>"24", :bands=>["Unknown"], :notes=>"acquired by Oi [17]", :operator=>"Amazonia Celular", :status=>"Unknown"}, ["724", "30"]=>{:mobile_country_code=>"724", :mobile_network_code=>"30", :bands=>["Unknown"], :brand=>"Oi", :notes=>"[17]", :operator=>"TNL PCS Oi", :status=>"Unknown"}, ["724", "31"]=>{:mobile_country_code=>"724", :mobile_network_code=>"31", :bands=>["GSM 1800", "UMTS 2100", "LTE 2600"], :brand=>"Oi", :operator=>"TNL PCS Oi", :status=>"Operational"}, ["724", "32"]=>{:mobile_country_code=>"724", :mobile_network_code=>"32", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100"], :brand=>"CTBC Celular", :operator=>"CTBC Celular S.A.", :status=>"Operational"}, ["724", "33"]=>{:mobile_country_code=>"724", :mobile_network_code=>"33", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100"], :brand=>"CTBC Celular", :operator=>"CTBC Celular S.A.", :status=>"Operational"}, ["724", "34"]=>{:mobile_country_code=>"724", :mobile_network_code=>"34", :bands=>["GSM 900", "GSM 1800", "UMTS 850", "UMTS 2100"], :brand=>"CTBC Celular", :operator=>"CTBC Celular S.A.", :status=>"Operational"}, ["724", "35"]=>{:mobile_country_code=>"724", :mobile_network_code=>"35", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Telcom Telecomunica\u00E7\u00F5es", :status=>"Unknown"}, ["724", "36"]=>{:mobile_country_code=>"724", :mobile_network_code=>"36", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Options Telecomunica\u00E7\u00F5es", :status=>"Unknown"}, ["724", "37"]=>{:mobile_country_code=>"724", :mobile_network_code=>"37", :bands=>["Unknown"], :brand=>"aeiou", :notes=>"Bancruptcy in 2011 [17]", :operator=>"Unicel", :status=>"Not operational"}, ["724", "38"]=>{:mobile_country_code=>"724", :mobile_network_code=>"38", :bands=>["Unknown"], :brand=>"Claro BR", :notes=>"[17]", :operator=>"Claro", :status=>"Unknown"}, ["724", "39"]=>{:mobile_country_code=>"724", :mobile_network_code=>"39", :bands=>["UMTS 2100"], :brand=>"Nextel", :operator=>"NII Holdings, Inc.", :status=>"Operational"}, ["724", "54"]=>{:mobile_country_code=>"724", :mobile_network_code=>"54", :bands=>["MVNO"], :notes=>"[17] Through TIM network", :operator=>"PORTO SEGURO TELECOMUNICA\u00C7\u00D4ES", :status=>"Operational"}, ["724", "99"]=>{:mobile_country_code=>"724", :mobile_network_code=>"99", :bands=>["Unknown"], :brand=>"Local", :notes=>"[17]", :operator=>"Local (Unknown purpose or usage)", :status=>"Unknown"}, ["730", "01"]=>{:mobile_country_code=>"730", :mobile_network_code=>"01", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"entel", :operator=>"Entel PCS Telecomunicaciones S.A.", :status=>"Operational"}, ["730", "02"]=>{:mobile_country_code=>"730", :mobile_network_code=>"02", :bands=>["GSM 850", "UMTS 850", "UMTS 1900", "LTE 2600"], :brand=>"movistar", :operator=>"Telef\u00F3nica M\u00F3vil de Chile", :status=>"Operational"}, ["730", "03"]=>{:mobile_country_code=>"730", :mobile_network_code=>"03", :bands=>["GSM 1900", "UMTS 1900", "UMTS 850", "LTE 2600"], :brand=>"Claro", :operator=>"Claro Chile S.A.", :status=>"Operational"}, ["730", "04"]=>{:mobile_country_code=>"730", :mobile_network_code=>"04", :bands=>["iDEN 800"], :brand=>"Nextel", :operator=>"Centennial Cayman Corp. Chile", :status=>"Operational"}, ["730", "05"]=>{:mobile_country_code=>"730", :mobile_network_code=>"05", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Multikom S.A.", :status=>"Unknown"}, ["730", "06"]=>{:mobile_country_code=>"730", :mobile_network_code=>"06", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Blue Two Chile S.A.", :status=>"Unknown"}, ["730", "07"]=>{:mobile_country_code=>"730", :mobile_network_code=>"07", :bands=>["MVNO"], :brand=>"Virgin Mobile", :notes=>"Uses movistar except LTE", :operator=>"Virgin Mobile", :status=>"Operational"}, ["730", "08"]=>{:mobile_country_code=>"730", :mobile_network_code=>"08", :bands=>["MVNO"], :brand=>"VTR M\u00F3vil", :notes=>"Uses movistar", :operator=>"VTR S.A.", :status=>"Operational"}, ["730", "09"]=>{:mobile_country_code=>"730", :mobile_network_code=>"09", :bands=>["UMTS 1700", "2100 (AWS)"], :brand=>"Nextel", :operator=>"Centennial Cayman Corp. Chile", :status=>"Operational"}, ["730", "10"]=>{:mobile_country_code=>"730", :mobile_network_code=>"10", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"entel", :operator=>"Entel Telefon\u00EDa M\u00F3vil S.A.", :status=>"Operational"}, ["730", "11"]=>{:mobile_country_code=>"730", :mobile_network_code=>"11", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Celupago S.A.", :status=>"Unknown"}, ["730", "12"]=>{:mobile_country_code=>"730", :mobile_network_code=>"12", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Telestar M\u00F3vil S.A.", :status=>"Unknown"}, ["730", "13"]=>{:mobile_country_code=>"730", :mobile_network_code=>"13", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Tribe Mobile Chile SPA", :status=>"Unknown"}, ["730", "14"]=>{:mobile_country_code=>"730", :mobile_network_code=>"14", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Netline Telef\u00F3nica M\u00F3vil Ltda", :status=>"Unknown"}, ["730", "15"]=>{:mobile_country_code=>"730", :mobile_network_code=>"15", :bands=>["Unknown"], :notes=>"[2]", :operator=>"Cibeles Telecom S.A.", :status=>"Unknown"}, ["730", "99"]=>{:mobile_country_code=>"730", :mobile_network_code=>"99", :bands=>["GSM 1900", "UMTS 1900 (Residential)."], :brand=>"Will", :operator=>"WILL Telefon\u00EDa", :status=>"Operational"}, ["732", "001"]=>{:mobile_country_code=>"732", :mobile_network_code=>"001", :bands=>["Unknown"], :operator=>"Colombia Telecomunicaciones S.A.", :status=>"Operational"}, ["732", "002"]=>{:mobile_country_code=>"732", :mobile_network_code=>"002", :bands=>["Unknown"], :brand=>"Edatel", :operator=>"Edatel S.A.", :status=>"Operational"}, ["732", "020"]=>{:mobile_country_code=>"732", :mobile_network_code=>"020", :bands=>["Unknown"], :notes=>"[4]", :operator=>"Emtelsa", :status=>"Unknown"}, ["732", "099"]=>{:mobile_country_code=>"732", :mobile_network_code=>"099", :bands=>["GSM 900"], :brand=>"EMCALI", :operator=>"Empresas Municipales de Cali", :status=>"Operational"}, ["732", "101"]=>{:mobile_country_code=>"732", :mobile_network_code=>"101", :bands=>["GSM 850", "GSM 1900"], :brand=>"Claro", :operator=>"Claro (Comcel)", :status=>"Operational"}, ["732", "102"]=>{:mobile_country_code=>"732", :mobile_network_code=>"102", :bands=>["GSM 850", "GSM 1900", "CDMA 850"], :brand=>"movistar", :operator=>"Bellsouth Colombia", :status=>"Operational"}, ["732", "103"]=>{:mobile_country_code=>"732", :mobile_network_code=>"103", :bands=>["GSM 1900"], :brand=>"Tigo", :operator=>"Colombia M\u00F3vil", :status=>"Operational"}, ["732", "111"]=>{:mobile_country_code=>"732", :mobile_network_code=>"111", :bands=>["GSM 1900"], :brand=>"Tigo", :operator=>"Colombia M\u00F3vil", :status=>"Operational"}, ["732", "123"]=>{:mobile_country_code=>"732", :mobile_network_code=>"123", :bands=>["GSM 850", "GSM 1900", "CDMA 850"], :brand=>"movistar", :notes=>"also used by Virgin Mobile MVNO", :operator=>"Telef\u00F3nica M\u00F3viles Colombia", :status=>"Operational"}, ["732", "130"]=>{:mobile_country_code=>"732", :mobile_network_code=>"130", :bands=>["GSM 850", "iDEN"], :brand=>"AVANTEL", :operator=>"Avantel S.A.S", :status=>"Operational"}, ["734", "01"]=>{:mobile_country_code=>"734", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Digitel", :notes=>"Formerly INFONET", :operator=>"Corporacion Digitel C.A.", :status=>"Not operational"}, ["734", "02"]=>{:mobile_country_code=>"734", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800", "UMTS 900", "LTE 1800"], :brand=>"Digitel GSM", :notes=>"DIGITEL-DIGICEL-INFONET Merger", :operator=>"Corporacion Digitel C.A.", :status=>"Operational"}, ["734", "03"]=>{:mobile_country_code=>"734", :mobile_network_code=>"03", :bands=>["GSM 900"], :brand=>"Digitel", :notes=>"Formerly DIGICEL", :operator=>"Corporacion Digitel C.A.", :status=>"Not operational"}, ["734", "04"]=>{:mobile_country_code=>"734", :mobile_network_code=>"04", :bands=>["GSM 850", "GSM 1900", "UMTS 1900"], :brand=>"movistar", :notes=>"CDMA2000 850 shut down March 2014[159]", :operator=>"Telef\u00F3nica M\u00F3viles Venezuela", :status=>"Operational"}, ["734", "06"]=>{:mobile_country_code=>"734", :mobile_network_code=>"06", :bands=>["CDMA2000 850", "GSM 850", "UMTS 1900"], :brand=>"Movilnet", :operator=>"Telecomunicaciones Movilnet", :status=>"Operational"}, ["736", "01"]=>{:mobile_country_code=>"736", :mobile_network_code=>"01", :bands=>["GSM 1900"], :brand=>"Nuevatel", :operator=>"Nuevatel PCS De Bolivia SA", :status=>"Operational"}, ["736", "02"]=>{:mobile_country_code=>"736", :mobile_network_code=>"02", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "LTE 700"], :brand=>"Entel", :notes=>"[1][33][34]", :operator=>"Entel SA", :status=>"Operational"}, ["736", "03"]=>{:mobile_country_code=>"736", :mobile_network_code=>"03", :bands=>["GSM 850", "UMTS"], :brand=>"Tigo", :notes=>"Aka. Telecel Bolivia [1]", :operator=>"Telef\u00F3nica Celular De Bolivia S.A", :status=>"Operational"}, ["738", "01"]=>{:mobile_country_code=>"738", :mobile_network_code=>"01", :bands=>["GSM 900"], :brand=>"Digicel", :operator=>"U-Mobile (Cellular) Inc.", :status=>"Operational"}, ["738", "02"]=>{:mobile_country_code=>"738", :mobile_network_code=>"02", :bands=>["GSM 900"], :brand=>"GT&T Cellink Plus", :operator=>"Guyana Telephone & Telegraph Co.", :status=>"Operational"}, ["740", "00"]=>{:mobile_country_code=>"740", :mobile_network_code=>"00", :bands=>["GSM 850", "UMTS 900", "UMTS 1900"], :brand=>"Movistar", :notes=>"Former BellSouth", :operator=>"Otecel S.A.", :status=>"Operational"}, ["740", "01"]=>{:mobile_country_code=>"740", :mobile_network_code=>"01", :bands=>["GSM 850", "UMTS 850", "UMTS 1900"], :brand=>"Claro", :notes=>"Former Portal", :operator=>"CONECEL S.A.", :status=>"Operational"}, ["740", "02"]=>{:mobile_country_code=>"740", :mobile_network_code=>"02", :bands=>["GSM 850", "CDMA 1900"], :brand=>"CNT Mobile", :notes=>"Former Alegro / Telecsa", :operator=>"Corporaci\u00F3n Nacional de Telecomunicaciones (CNT EP)", :status=>"Operational"}, ["744", "01"]=>{:mobile_country_code=>"744", :mobile_network_code=>"01", :bands=>["GSM 1900", "UMTS 900"], :brand=>"VOX", :operator=>"Hola Paraguay S.A", :status=>"Operational"}, ["744", "02"]=>{:mobile_country_code=>"744", :mobile_network_code=>"02", :bands=>["GSM 1900", "UMTS 1900"], :brand=>"Claro/Hutchison", :operator=>"AMX Paraguay S.A.", :status=>"Operational"}, ["744", "03"]=>{:mobile_country_code=>"744", :mobile_network_code=>"03", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Compa\u00F1ia Privada de Comunicaciones S.A.", :status=>"Unknown"}, ["744", "04"]=>{:mobile_country_code=>"744", :mobile_network_code=>"04", :bands=>["GSM 850", "UMTS 850"], :brand=>"Tigo", :operator=>"Telef\u00F3nica Celular Del Paraguay S.A. (Telecel)", :status=>"Operational"}, ["744", "05"]=>{:mobile_country_code=>"744", :mobile_network_code=>"05", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "UMTS 1900", "LTE 1900"], :brand=>"Personal", :operator=>"N\u00FAcleo S.A(TIM)", :status=>"Operational"}, ["744", "06"]=>{:mobile_country_code=>"744", :mobile_network_code=>"06", :bands=>["GSM 1800", "LTE 1700"], :brand=>"Copaco", :operator=>"Copaco S.A.", :status=>"Operational"}, ["746", "02"]=>{:mobile_country_code=>"746", :mobile_network_code=>"02", :bands=>["GSM 900", "GSM 1800"], :brand=>"Telesur", :operator=>"Telecommunications Company Suriname (Telesur)", :status=>"Operational"}, ["746", "03"]=>{:mobile_country_code=>"746", :mobile_network_code=>"03", :bands=>["GSM 900", "GSM 1800"], :brand=>"Digicel", :operator=>"Digicel Group Limited", :status=>"Operational"}, ["746", "04"]=>{:mobile_country_code=>"746", :mobile_network_code=>"04", :bands=>["GSM 900"], :brand=>"Uniqa", :operator=>"Intelsur N.V. / UTS N.V.", :status=>"Operational"}, ["746", "05"]=>{:mobile_country_code=>"746", :mobile_network_code=>"05", :bands=>["CDMA"], :brand=>"Telesur", :notes=>"[17]", :operator=>"Telecommunications Company Suriname (Telesur)", :status=>"Unknown"}, ["748", "00"]=>{:mobile_country_code=>"748", :mobile_network_code=>"00", :bands=>["TDMA"], :brand=>"Antel", :notes=>"[17]", :operator=>"Administraci\u00F3n Nacional de Telecomunicaciones", :status=>"Unknown"}, ["748", "01"]=>{:mobile_country_code=>"748", :mobile_network_code=>"01", :bands=>["GSM 1800", "UMTS 850", "UMTS 2100", "LTE 1700"], :brand=>"Antel", :notes=>"Former brand Ancel", :operator=>"Administraci\u00F3n Nacional de Telecomunicaciones", :status=>"Operational"}, ["748", "03"]=>{:mobile_country_code=>"748", :mobile_network_code=>"03", :bands=>["Unknown"], :brand=>"Antel", :notes=>"[17]", :operator=>"Administraci\u00F3n Nacional de Telecomunicaciones", :status=>"Unknown"}, ["748", "07"]=>{:mobile_country_code=>"748", :mobile_network_code=>"07", :bands=>["GSM 850", "GSM 1900", "UMTS 850", "LTE 1900"], :brand=>"Movistar", :notes=>"Former Movicom", :operator=>"Telef\u00F3nica M\u00F3viles Uruguay", :status=>"Operational"}, ["748", "10"]=>{:mobile_country_code=>"748", :mobile_network_code=>"10", :bands=>["GSM 1900", "UMTS 1900", "LTE 1700"], :brand=>"Claro", :notes=>"Former CTI M\u00F3vil", :operator=>"AM Wireless Uruguay S.A.", :status=>"Operational"}, ["750", "001"]=>{:mobile_country_code=>"750", :mobile_network_code=>"001", :bands=>["GSM 900"], :brand=>"sure", :notes=>"formerly Cable & Wireless Communications Touch [17]", :operator=>"Batelco", :status=>"Operational"}, ["901", "01"]=>{:mobile_country_code=>"901", :mobile_network_code=>"01", :bands=>["Satellite"], :brand=>"ICO", :operator=>"ICO Satellite Management", :status=>"Operational"}, ["901", "02"]=>{:mobile_country_code=>"901", :mobile_network_code=>"02", :bands=>["Unknown"], :notes=>"Formerly: Sense Communications International", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "03"]=>{:mobile_country_code=>"901", :mobile_network_code=>"03", :bands=>["Satellite"], :brand=>"Iridium", :operator=>"", :status=>"Operational"}, ["901", "04"]=>{:mobile_country_code=>"901", :mobile_network_code=>"04", :bands=>["Satellite"], :notes=>"Formerly: Globalstar", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "05"]=>{:mobile_country_code=>"901", :mobile_network_code=>"05", :bands=>["Satellite"], :operator=>"Thuraya RMSS Network", :status=>"Operational"}, ["901", "06"]=>{:mobile_country_code=>"901", :mobile_network_code=>"06", :bands=>["Satellite"], :operator=>"Thuraya Satellite Telecommunications Company", :status=>"Operational"}, ["901", "07"]=>{:mobile_country_code=>"901", :mobile_network_code=>"07", :bands=>["Unknown"], :notes=>"Formerly: Ellipso", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "08"]=>{:mobile_country_code=>"901", :mobile_network_code=>"08", :bands=>["Unknown"], :notes=>"Formerly: GSM, reserved for station identification where the mobile does not have a subscription IMSI", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "09"]=>{:mobile_country_code=>"901", :mobile_network_code=>"09", :bands=>["Unknown"], :notes=>"Formerly: Tele1 Europe", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "10"]=>{:mobile_country_code=>"901", :mobile_network_code=>"10", :bands=>["Satellite"], :brand=>"ACeS", :operator=>"", :status=>"Operational"}, ["901", "11"]=>{:mobile_country_code=>"901", :mobile_network_code=>"11", :bands=>["Satellite"], :brand=>"Inmarsat", :operator=>"", :status=>"Operational"}, ["901", "12"]=>{:mobile_country_code=>"901", :mobile_network_code=>"12", :bands=>["GSM 1800"], :brand=>"Telenor", :notes=>"Maritime [19]", :operator=>"Maritime Communications Partner AS", :status=>"Operational"}, ["901", "13"]=>{:mobile_country_code=>"901", :mobile_network_code=>"13", :bands=>["GSM 1800"], :brand=>"GSM.AQ", :notes=>"Antarctica[162] +88234 Network", :operator=>"Global Networks Switzerland Inc.", :status=>"Operational"}, ["901", "14"]=>{:mobile_country_code=>"901", :mobile_network_code=>"14", :bands=>["GSM 1800"], :notes=>"Air[163]", :operator=>"AeroMobile AS", :status=>"Unknown"}, ["901", "15"]=>{:mobile_country_code=>"901", :mobile_network_code=>"15", :bands=>["GSM 1800"], :brand=>"OnAir", :notes=>"Air[164]", :operator=>"OnAir Switzerland Sarl", :status=>"Operational"}, ["901", "16"]=>{:mobile_country_code=>"901", :mobile_network_code=>"16", :bands=>["Unknown"], :notes=>"Global SIM [20]", :operator=>"Jasper Systems", :status=>"Operational"}, ["901", "17"]=>{:mobile_country_code=>"901", :mobile_network_code=>"17", :bands=>["GSM 1800"], :brand=>"Navitas", :notes=>"Maritime [21][22]", :operator=>"", :status=>"Operational"}, ["901", "18"]=>{:mobile_country_code=>"901", :mobile_network_code=>"18", :bands=>["GSM 900", "GSM 1900", "CDMA2000 1900"], :brand=>"Cellular @Sea", :notes=>"Maritime [23]", :operator=>"AT&T Mobility", :status=>"Operational"}, ["901", "19"]=>{:mobile_country_code=>"901", :mobile_network_code=>"19", :bands=>["Unknown"], :operator=>"Vodafone Malta Maritime", :status=>"Operational"}, ["901", "20"]=>{:mobile_country_code=>"901", :mobile_network_code=>"20", :bands=>["Unknown"], :operator=>"Intermatica", :status=>"Unknown"}, ["901", "21"]=>{:mobile_country_code=>"901", :mobile_network_code=>"21", :bands=>["Unknown"], :notes=>"Formerly: Seanet Maritime Communications", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "22"]=>{:mobile_country_code=>"901", :mobile_network_code=>"22", :bands=>["Unknown"], :operator=>"MediaLincc Ltd", :status=>"Unknown"}, ["901", "23"]=>{:mobile_country_code=>"901", :mobile_network_code=>"23", :bands=>["Unknown"], :notes=>"Formerly: Beeline", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "24"]=>{:mobile_country_code=>"901", :mobile_network_code=>"24", :bands=>["Unknown"], :brand=>"iNum", :notes=>"[165] +883 iNum", :operator=>"Voxbone", :status=>"Unknown"}, ["901", "25"]=>{:mobile_country_code=>"901", :mobile_network_code=>"25", :bands=>["Unknown"], :notes=>"Formerly: In & phone", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "26"]=>{:mobile_country_code=>"901", :mobile_network_code=>"26", :bands=>["Unknown"], :brand=>"TIM", :operator=>"Telecom Italia", :status=>"Operational"}, ["901", "27"]=>{:mobile_country_code=>"901", :mobile_network_code=>"27", :bands=>["Unknown"], :brand=>"OnAir", :operator=>"OnAir", :status=>"Operational"}, ["901", "28"]=>{:mobile_country_code=>"901", :mobile_network_code=>"28", :bands=>["Roaming SIM"], :brand=>"Vodafone", :operator=>"GDSP (Vodafone's Global Data Service Platform)", :status=>"Operational"}, ["901", "29"]=>{:mobile_country_code=>"901", :mobile_network_code=>"29", :bands=>["Unknown"], :brand=>"Telenor", :operator=>"", :status=>"Unknown"}, ["901", "30"]=>{:mobile_country_code=>"901", :mobile_network_code=>"30", :bands=>["Unknown"], :notes=>"Formerly: Terrestar Networks", :operator=>"Unassigned", :status=>"Returned spare"}, ["901", "31"]=>{:mobile_country_code=>"901", :mobile_network_code=>"31", :bands=>["GSM 900"], :brand=>"Orange", :operator=>"Orange S.A.", :status=>"Operational"}, ["901", "32"]=>{:mobile_country_code=>"901", :mobile_network_code=>"32", :bands=>["GSM 900"], :brand=>"Sky High", :operator=>"MegaFon", :status=>"Operational"}, ["901", "33"]=>{:mobile_country_code=>"901", :mobile_network_code=>"33", :bands=>["Unknown"], :operator=>"Smart Communications", :status=>"Unknown"}, ["901", "34"]=>{:mobile_country_code=>"901", :mobile_network_code=>"34", :bands=>["Unknown"], :operator=>"tyntec GmbH", :status=>"Unknown"}, ["901", "35"]=>{:mobile_country_code=>"901", :mobile_network_code=>"35", :bands=>["Unknown"], :operator=>"Globecomm Network Services", :status=>"Unknown"}, ["901", "36"]=>{:mobile_country_code=>"901", :mobile_network_code=>"36", :bands=>["GSM 1800"], :notes=>"Air", :operator=>"Azerfon", :status=>"Operational"}, ["901", "37"]=>{:mobile_country_code=>"901", :mobile_network_code=>"37", :bands=>["2G, 3G, 4G Roaming"], :notes=>"[4] Global SIM for Data Mobile Broadband and M2M", :operator=>"Transatel", :status=>"Operational"}, ["901", "38"]=>{:mobile_country_code=>"901", :mobile_network_code=>"38", :bands=>["Unknown"], :notes=>"[17]", :operator=>"Multiregional Transit Telecom (MTT)", :status=>"Unknown"}, ["901", "39"]=>{:mobile_country_code=>"901", :mobile_network_code=>"39", :bands=>["Unknown"], :notes=>"[66]", :operator=>"MTX Connect Ltd", :status=>"Unknown"}, ["901", "40"]=>{:mobile_country_code=>"901", :mobile_network_code=>"40", :bands=>["Unknown"], :notes=>"[16]", :operator=>"Deutsche Telekom AG", :status=>"Unknown"}, ["901", "41"]=>{:mobile_country_code=>"901", :mobile_network_code=>"41", :bands=>["Unknown"], :notes=>"[61]", :operator=>"BodyTrace Netherlands B.V.", :status=>"Unknown"}, ["901", "42"]=>{:mobile_country_code=>"901", :mobile_network_code=>"42", :bands=>["Unknown"], :notes=>"[65]", :operator=>"DCN Hub ehf", :status=>"Unknown"}, ["901", "43"]=>{:mobile_country_code=>"901", :mobile_network_code=>"43", :bands=>["Unknown"], :notes=>"[88]", :operator=>"EMnify GmbH", :status=>"Unknown"}, ["901", "88"]=>{:mobile_country_code=>"901", :mobile_network_code=>"88", :bands=>["Unknown"], :operator=>"UN Office for the Coordination of Humanitarian Affairs (OCHA)", :status=>"Unknown"}}.with_indifferent_access.freeze
4
+ end
@@ -0,0 +1,80 @@
1
+ require 'mobile_subscriber/dictionaries/mobile_and_iso_country_codes'
2
+ require 'mobile_subscriber/dictionaries/operator_data'
3
+
4
+ module MobileSubscriber
5
+
6
+ class ISDN
7
+
8
+ attr_reader :id, :mobile_country_code, :mobile_network_code
9
+ alias_method :to_s, :id
10
+
11
+ include MobileSubscriber::Detection::FromMsisdnHeader
12
+ include MobileSubscriber::Detection::FromXNokiaMsisdnHeader
13
+ include MobileSubscriber::Detection::FromXUpChMsisdnHeader
14
+
15
+ def initialize(attributes={})
16
+ @id = attributes.delete :id
17
+ @mobile_country_code = attributes.delete :mobile_country_code
18
+ @mobile_network_code = attributes.delete :mobile_network_code
19
+ end
20
+
21
+ def dialing_code
22
+ self.id[0,2]
23
+ end
24
+ alias_method :country_dialing_code, :dialing_code
25
+
26
+ def iso_3166_country_code
27
+ if self.mobile_country_code.present?
28
+ MobileSubscriber::MCC_ISO_COUNTRY_CODES[self.mobile_country_code]
29
+ end
30
+ end
31
+
32
+ def mobile_network_brand
33
+ if self.mobile_country_code.present? && self.mobile_network_code.present?
34
+ key = [self.mobile_country_code, self.mobile_network_code]
35
+ MobileSubscriber::OPERATOR_DATA[key][:brand]
36
+ end
37
+ end
38
+
39
+ def mobile_network_operator
40
+ if self.mobile_country_code.present? && self.mobile_network_code.present?
41
+ key = [self.mobile_country_code, self.mobile_network_code]
42
+ MobileSubscriber::OPERATOR_DATA[key][:operator]
43
+ end
44
+ end
45
+
46
+
47
+
48
+ def inspect
49
+ "<MobileSubscriber::ISDN #{self.id} (#{self.http_validated? ? '' : 'not '}validated by HTTP)>"
50
+ end
51
+
52
+ def http_validated?
53
+ @http_validated ||= false
54
+ end
55
+
56
+ # Creates a new MobileSubscriber::ISDN from a Rack::Request object
57
+ def self.new_from_request(request)
58
+ detected_attributes = self.methods.select do |x|
59
+ x.to_s =~ /\Aextract_from_(\w+)_http_request_header\z/i
60
+ end.reduce(nil) do |attrs, detection_method|
61
+ attrs = self.send detection_method, request unless attrs.present?
62
+ attrs
63
+ end
64
+
65
+ if detected_attributes.present?
66
+ validated_isdn = new(detected_attributes)
67
+ validated_isdn.send :http_validated!
68
+ validated_isdn
69
+ end
70
+ end
71
+
72
+ protected
73
+
74
+ def http_validated!
75
+ @http_validated = true
76
+ end
77
+
78
+ end
79
+
80
+ end
@@ -0,0 +1,3 @@
1
+ module MobileSubscriber
2
+ VERSION = "0.0.1.alpha1"
3
+ end
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'mobile_subscriber/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "mobile-subscriber"
8
+ spec.version = MobileSubscriber::VERSION
9
+ spec.authors = ["Roberto Quintanilla"]
10
+ spec.email = ["roberto.quintanilla@gmail.com"]
11
+ spec.summary = %q{Mobile MSISDN detection & validation.}
12
+ spec.description = %q{Mobile MSISDN detection & validation. Only useful whenever your'e a Mobile Operator 3rd Party and receive MSISDN headers.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "activesupport", "~> 4.0"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.7"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec", "~> 3.0"
26
+ spec.add_development_dependency "rack-test", "~> 0.6"
27
+ spec.add_development_dependency "factory_girl", "~> 4.5"
28
+ end
@@ -0,0 +1,99 @@
1
+ require 'rubygems'
2
+ require 'nokogiri'
3
+ require 'open-uri'
4
+ require 'active_support/all'
5
+
6
+ require 'byebug'
7
+
8
+ class MobileSubscriber < Thor
9
+
10
+ include Thor::Actions
11
+
12
+ def self.source_root
13
+ File.dirname(__FILE__)
14
+ end
15
+
16
+ # Scrapes the Wikipedia entry of 'Mobile country code' to generate the dictionaries.
17
+ desc "update_dictionaries", "Update the dictionaries file from Wikipedia info"
18
+ def update_dictionaries()
19
+
20
+ # Get the Wikipedia HTML and parse HTML with nokogiri:
21
+ page = Nokogiri::HTML(open "https://en.wikipedia.org/wiki/Mobile_country_code")
22
+
23
+ data = []
24
+
25
+ # All 'wikitables' in page have data we need:
26
+ wiki_content = page.xpath([
27
+ '/html',
28
+ 'body',
29
+ 'div[@id="content"]',
30
+ 'div[@id="bodyContent"]',
31
+ 'div[@id="mw-content-text"]'
32
+ ].join('/')).first
33
+
34
+ wikitable_headers = wiki_content.xpath('h2/span[@class="mw-headline" and @id="Test_networks" or @id="International_operators"]|h4/span[@class="mw-headline"]')
35
+ wikitables = wiki_content.xpath('table[@class="wikitable"]')
36
+
37
+
38
+ country_codes = wikitable_headers.map { |x| x.text.split(' - ').last.split('[').first }
39
+ # contry_codes.map! { |x| ["Test networks","International operators"].include?(x) ? nil : x }
40
+
41
+ # Llenar el array de datos:
42
+ wikitables.each_with_index do |wikitable, index|
43
+ wikitable.xpath('tr[./td]').each do |wikitable_row|
44
+ data_cells = wikitable_row.xpath('td').map { |x| x.text.strip }
45
+
46
+ base_data_row = {
47
+ country_code: country_codes[index],
48
+ mobile_country_code: data_cells[0],
49
+ brand: data_cells[2],
50
+ operator: data_cells[3],
51
+ status: data_cells[4],
52
+ bands: data_cells[5].split('/').map(&:strip),
53
+ notes: data_cells[6]
54
+ }
55
+ base_data_row.delete :brand if base_data_row[:brand].blank?
56
+ base_data_row.delete :notes if base_data_row[:notes].blank?
57
+
58
+ if data_cells[1] =~ /\A[0-9-]{2,7}\z/i
59
+
60
+ first_mnc, last_mnc = data_cells[1].split('-')
61
+ last_mnc = first_mnc if last_mnc.blank?
62
+ mnc_length = first_mnc.length
63
+
64
+ Range.new(first_mnc.to_i, last_mnc.to_i).each do |mnc|
65
+ data << base_data_row.merge(mobile_network_code: mnc.to_s.rjust(mnc_length, '0'))
66
+ end
67
+ else
68
+ data << base_data_row.merge(mobile_network_code: data_cells[1])
69
+ end
70
+ end
71
+ end
72
+
73
+ # Generate the MCC => ISO 3966 Country Code Dictionary:
74
+ @mcc_iso_country_codes = data.map do |x|
75
+ [x[:mobile_country_code], x[:country_code]]
76
+ end.inject({}) do |hsh, keyval|
77
+ hsh[keyval[0]] = keyval[1]
78
+ hsh
79
+ end
80
+ @mcc_iso_country_codes.delete ""
81
+ @mcc_iso_country_codes = Hash[@mcc_iso_country_codes.sort]
82
+ template 'templates/mobile_and_iso_country_codes.rb.erb', 'lib/mobile_subscriber/dictionaries/mobile_and_iso_country_codes.rb'
83
+
84
+ # Generate the MCC+MNC => Operator Details Dictionary:
85
+ @operator_data = data.inject({}) do |dict, row|
86
+ key = [row[:mobile_country_code], row[:mobile_network_code]]
87
+ dict[key] = {
88
+ mobile_country_code: row[:mobile_country_code],
89
+ mobile_network_code: row[:mobile_network_code]
90
+ }.merge(Hash[row.except(:country_code, :mobile_country_code, :mobile_network_code).sort])
91
+ dict
92
+ end
93
+ @operator_data.delete ["",""]
94
+ @operator_data = Hash[@operator_data.sort]
95
+ template 'templates/operator_data.rb.erb', 'lib/mobile_subscriber/dictionaries/operator_data.rb'
96
+
97
+ end
98
+
99
+ end