[Python-modules-commits] [python-stdnum] 01/07: Import python-stdnum_1.3.orig.tar.gz
Arthur de Jong
adejong at moszumanska.debian.org
Sun Mar 6 14:02:38 UTC 2016
This is an automated email from the git hooks/post-receive script.
adejong pushed a commit to branch master
in repository python-stdnum.
commit 5e62c1e44f68845897dd58e7be60d9d28f724795
Author: Arthur de Jong <adejong at debian.org>
Date: Sun Mar 6 14:36:59 2016 +0100
Import python-stdnum_1.3.orig.tar.gz
---
ChangeLog | 59 +++++
NEWS | 9 +
PKG-INFO | 2 +-
getcnloc.py | 4 +-
getiban.py | 4 +-
getnumlist.py | 4 +-
python_stdnum.egg-info/PKG-INFO | 2 +-
python_stdnum.egg-info/SOURCES.txt | 2 +-
python_stdnum.egg-info/pbr.json | 1 -
setup.py | 2 +-
stdnum/__init__.py | 4 +-
stdnum/cn/loc.dat | 2 +-
stdnum/dk/cpr.py | 20 +-
stdnum/eu/vat.py | 4 +-
stdnum/iban.dat | 6 +-
stdnum/iban.py | 6 +-
stdnum/imei.py | 10 +-
stdnum/imsi.dat | 454 ++++++++++++++++---------------------
stdnum/isbn.dat | 18 +-
stdnum/isbn.py | 21 +-
stdnum/isil.dat | 2 +-
stdnum/isil.py | 45 ++--
stdnum/iso6346.py | 2 +-
stdnum/issn.py | 12 +-
stdnum/nl/bsn.py | 12 +-
stdnum/us/ssn.py | 21 +-
stdnum/verhoeff.py | 36 +--
test_vies.py | 45 ++++
tests/test_iso6346.doctest | 2 +
29 files changed, 479 insertions(+), 332 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 9307465..a78944c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,62 @@
+2016-03-03 Arthur de Jong <arthur at arthurdejong.org>
+
+ * [6457734] getcnloc.py, getiban.py, stdnum/cn/loc.dat,
+ stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat:
+ Update database files
+
+ This also updates the getcnloc and getiban scripts to use new URLs.
+
+2015-10-30 Arthur de Jong <arthur at arthurdejong.org>
+
+ * [0061564] stdnum/dk/cpr.py, stdnum/iban.py, stdnum/imei.py,
+ stdnum/isbn.py, stdnum/isil.py, stdnum/issn.py, stdnum/nl/bsn.py,
+ stdnum/us/ssn.py, stdnum/verhoeff.py: Integrate information from
+ the wiki
+
+ This adds the information that was previously in the Trac wiki
+ into the source docstrings because the Trac instance is being
+ phased out.
+
+ This also includes small updates to the ISIL module.
+
+2015-10-28 Arthur de Jong <arthur at arthurdejong.org>
+
+ * [96c8151] stdnum/eu/vat.py: Fix SOAP client re-use
+
+ This fixes a bug when checking re-use of the global SOAP client
+ object. The object could not be evaluated in boolean context
+ so is no explicitly compared to None. For suds a MethodNotFound
+ exception would be raised for __nonzero__() (which Python uses
+ for boolean comparison).
+
+2015-10-28 Lionel Elie Mamane <lionel at mamane.lu>
+
+ * [2881b86] stdnum/eu/vat.py: Fix problem with check_vies_approx()
+
+2015-10-15 Ronald Paloschi <ronald.paloschi at gmail.com>
+
+ * [fb0efe0] stdnum/iso6346.py, tests/test_iso6346.doctest: Fix
+ for when ISO 6346 checksum is 10
+
+ Bug fix for when the checksum is 10, it was compared to 0 and
+ failed. New doctest exposing the bug that passes after the fix
+ is applied.
+
+ See: https://github.com/arthurdejong/python-stdnum/pull/30
+
+2015-10-11 Arthur de Jong <arthur at arthurdejong.org>
+
+ * [1361817] ChangeLog, MANIFEST.in, NEWS, README, docs/index.rst,
+ docs/stdnum.at.businessid.rst, docs/stdnum.br.cnpj.rst,
+ docs/stdnum.ch.uid.rst, docs/stdnum.ch.vat.rst,
+ docs/stdnum.cusip.rst, docs/stdnum.de.wkn.rst,
+ docs/stdnum.ee.ik.rst, docs/stdnum.fi.associationid.rst,
+ docs/stdnum.fi.ytunnus.rst, docs/stdnum.gb.sedol.rst,
+ docs/stdnum.imo.rst, docs/stdnum.isin.rst, docs/stdnum.mx.rfc.rst,
+ docs/stdnum.pl.pesel.rst, docs/stdnum.pl.regon.rst,
+ docs/stdnum.ru.inn.rst, setup.py, stdnum/__init__.py: Get files
+ ready for 1.2 release
+
2015-10-11 Arthur de Jong <arthur at arthurdejong.org>
* [1327045] getcnloc.py, stdnum/cn/loc.dat, stdnum/iban.dat,
diff --git a/NEWS b/NEWS
index f40fdee..50e94c4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+changes from 1.2 to 1.3
+-----------------------
+
+* fix ISO 6346 check digit calculation (thanks Ronald Paloschi)
+* fix problem with check_vies_approx() (thanks Lionel Elie Mamane)
+* fix problem with SOAP client when using suds
+* include documentation that was previously on the Trac wiki
+
+
changes from 1.1 to 1.2
-----------------------
diff --git a/PKG-INFO b/PKG-INFO
index 8069044..d06668d 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: python-stdnum
-Version: 1.2
+Version: 1.3
Summary: Python module to handle standardized numbers and codes
Home-page: http://arthurdejong.org/python-stdnum/
Author: Arthur de Jong
diff --git a/getcnloc.py b/getcnloc.py
index 136cbf2..c0aac87 100755
--- a/getcnloc.py
+++ b/getcnloc.py
@@ -3,7 +3,7 @@
# getcnloc.py - script to fetch data from the CN Open Data community
#
# Copyright (C) 2014-2015 Jiangge Zhang
-# Copyright (C) 2015 Arthur de Jong
+# Copyright (C) 2015-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -54,7 +54,7 @@ data_revisions = [
def fetch_data():
data_collection = OrderedDict()
for revision in data_revisions:
- response = requests.get('%s/raw/master/%s.txt' % (data_url, revision))
+ response = requests.get('%s/raw/release/%s.txt' % (data_url, revision))
if response.ok:
print('%s is fetched' % revision, file=sys.stderr)
else:
diff --git a/getiban.py b/getiban.py
index e026293..44d9f19 100755
--- a/getiban.py
+++ b/getiban.py
@@ -2,7 +2,7 @@
# getiban.py - script to donwload and parse data from the IBAN registry
#
-# Copyright (C) 2011-2015 Arthur de Jong
+# Copyright (C) 2011-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@ import urllib
# The place where the current version of IBAN_Registry.txt can be downloaded.
-download_url = 'http://www.swift.com/dsp/resources/documents/IBAN_Registry.txt'
+download_url = 'https://www.swift.com/node/11971'
def clean_row(row):
diff --git a/getnumlist.py b/getnumlist.py
index 97c91bc..4c74479 100755
--- a/getnumlist.py
+++ b/getnumlist.py
@@ -2,7 +2,7 @@
# getnumlist.py - script to get a list of number formats in stdnum
#
-# Copyright (C) 2012, 2013 Arthur de Jong
+# Copyright (C) 2012-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -57,7 +57,7 @@ if __name__ == '__main__':
for module in get_number_modules():
print ' %s' % module.__name__.replace('stdnum.', '')
print ''
- print 'For index.xml:'
+ print 'For formats.xml:'
print ''
for module in get_number_modules():
print ' <li>%s</li>' % util.get_module_name(module)
diff --git a/python_stdnum.egg-info/PKG-INFO b/python_stdnum.egg-info/PKG-INFO
index 8069044..d06668d 100644
--- a/python_stdnum.egg-info/PKG-INFO
+++ b/python_stdnum.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: python-stdnum
-Version: 1.2
+Version: 1.3
Summary: Python module to handle standardized numbers and codes
Home-page: http://arthurdejong.org/python-stdnum/
Author: Arthur de Jong
diff --git a/python_stdnum.egg-info/SOURCES.txt b/python_stdnum.egg-info/SOURCES.txt
index da8d355..b5a340e 100644
--- a/python_stdnum.egg-info/SOURCES.txt
+++ b/python_stdnum.egg-info/SOURCES.txt
@@ -12,6 +12,7 @@ getmybp.py
getnumlist.py
setup.cfg
setup.py
+test_vies.py
docs/conf.py
docs/index.rst
docs/stdnum.al.nipt.rst
@@ -123,7 +124,6 @@ docs/_templates/autosummary/module.rst
python_stdnum.egg-info/PKG-INFO
python_stdnum.egg-info/SOURCES.txt
python_stdnum.egg-info/dependency_links.txt
-python_stdnum.egg-info/pbr.json
python_stdnum.egg-info/requires.txt
python_stdnum.egg-info/top_level.txt
stdnum/__init__.py
diff --git a/python_stdnum.egg-info/pbr.json b/python_stdnum.egg-info/pbr.json
deleted file mode 100644
index 12b443a..0000000
--- a/python_stdnum.egg-info/pbr.json
+++ /dev/null
@@ -1 +0,0 @@
-{"is_release": true, "git_version": "1361817"}
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 2562691..d91a7a9 100755
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
# setup.py - python-stdnum installation script
#
-# Copyright (C) 2010-2015 Arthur de Jong
+# Copyright (C) 2010-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/stdnum/__init__.py b/stdnum/__init__.py
index 78c033d..8da7c35 100644
--- a/stdnum/__init__.py
+++ b/stdnum/__init__.py
@@ -1,7 +1,7 @@
# __init__.py - main module
# coding: utf-8
#
-# Copyright (C) 2010-2015 Arthur de Jong
+# Copyright (C) 2010-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -153,4 +153,4 @@ parsing, validation, formatting or conversion functions.
# the version number of the library
-__version__ = '1.2'
+__version__ = '1.3'
diff --git a/stdnum/cn/loc.dat b/stdnum/cn/loc.dat
index 1fcb87b..f7b1a79 100644
--- a/stdnum/cn/loc.dat
+++ b/stdnum/cn/loc.dat
@@ -1,6 +1,6 @@
# generated from National Bureau of Statistics of the People's
# Republic of China, downloaded from https://github.com/cn/GB2260
-# 2015-10-11 10:02:20.899770
+# 2016-03-02 22:38:33.696025
110101 county="东城区" prefecture="市辖区" province="北京市"
110102 county="西城区" prefecture="市辖区" province="北京市"
110103 county="崇文区" prefecture="市辖区" province="北京市"
diff --git a/stdnum/dk/cpr.py b/stdnum/dk/cpr.py
index 4bf4a44..bdbbbb9 100644
--- a/stdnum/dk/cpr.py
+++ b/stdnum/dk/cpr.py
@@ -19,13 +19,21 @@
"""CPR (personnummer, the Danish citizen number).
-The CPR is the national number to identify Danish citizens. The number
+The CPR is the national number to identify Danish citizens and is stored in
+the Det Centrale Personregister (Civil Registration System). The number
consists of 10 digits in the format DDMMYY-SSSS where the first part
-represents the birth date and the second a sequence number. The first
-digit of the sequence number indicates the century.
-
-The numbers used to validate using a checksum but since the sequence
-numbers ran out this was abandoned in 2007.
+represents the birth date and the second a sequence number. The first digit
+of the sequence number indicates the century.
+
+The numbers used to validate using a checksum but since the sequence numbers
+ran out this was abandoned in 2007. It is also not possible to use the
+checksum only for numbers that have a birth date before that because the
+numbers are also assigned to immigrants.
+
+More information:
+ https://en.wikipedia.org/wiki/Personal_identification_number_(Denmark)
+ https://da.wikipedia.org/wiki/CPR-nummer
+ https://cpr.dk/
>>> validate('211062-5629')
'2110625629'
diff --git a/stdnum/eu/vat.py b/stdnum/eu/vat.py
index 94525d5..2c6728e 100644
--- a/stdnum/eu/vat.py
+++ b/stdnum/eu/vat.py
@@ -117,7 +117,7 @@ def _get_client(): # pragma: no cover (no tests for this function)
# this function isn't automatically tested because the functions using
# it are not automatically tested
global _vies_client
- if not _vies_client:
+ if _vies_client is None:
try:
from urllib import getproxies
except ImportError:
@@ -154,6 +154,6 @@ def check_vies_approx(number, requester): # pragma: no cover
# network access for the tests and unnecessarily load the VIES website
number = compact(number)
requester = compact(requester)
- return _get_client.checkVatApprox(
+ return _get_client().checkVatApprox(
countryCode=number[:2], vatNumber=number[2:],
requesterCountryCode=requester[:2], requesterVatNumber=requester[2:])
diff --git a/stdnum/iban.dat b/stdnum/iban.dat
index 69710fa..e9fce12 100644
--- a/stdnum/iban.dat
+++ b/stdnum/iban.dat
@@ -1,5 +1,5 @@
# generated from IBAN_Registry.txt, downloaded from
-# http://www.swift.com/dsp/resources/documents/IBAN_Registry.txt
+# https://www.swift.com/node/11971
AL country="Albania" bban="8!n16!c"
AD country="Andorra" bban="4!n4!n12!c"
AT country="Austria" bban="5!n11!n"
@@ -54,11 +54,12 @@ PL country="Poland" bban="8!n16!n"
PT country="Portugal" bban="4!n4!n11!n2!n"
QA country="Qatar" bban="4!a21!c"
RO country="Romania" bban="4!a16!c"
-LC country="Saint Lucia" bban="4!a24n"
+LC country="Saint Lucia" bban="4!a24!n"
SM country="San Marino" bban="1!a5!n5!n12!c"
ST country="Sao Tome And Principe" bban="8!n11!n2!n"
SA country="Saudi Arabia" bban="2!n18!c"
RS country="Serbia" bban="3!n13!n2!n"
+SC country="Seychelles" bban="4a!2n!2n!16n!3a!"
SK country="Slovak Republic" bban="4!n6!n10!n"
SI country="Slovenia" bban="5!n8!n2!n"
ES country="Spain" bban="4!n4!n1!n1!n10!n"
@@ -67,6 +68,7 @@ CH country="Switzerland" bban="5!n12!c"
TL country="Timor-Leste" bban="3!n14!n2!n"
TN country="Tunisia" bban="2!n3!n13!n2!n"
TR country="Turkey" bban="5!n1!n16!c"
+UA country="Ukraine" bban="6!n19!c"
AE country="United Arab Emirates" bban="3!n16!n"
GB country="United Kingdom" bban="4!a6!n8!n"
VG country="Virgin Islands, British" bban="4!a16!n"
diff --git a/stdnum/iban.py b/stdnum/iban.py
index ee71786..ff33cdd 100644
--- a/stdnum/iban.py
+++ b/stdnum/iban.py
@@ -1,6 +1,6 @@
# iban.py - functions for handling International Bank Account Numbers (IBANs)
#
-# Copyright (C) 2011, 2012, 2013 Arthur de Jong
+# Copyright (C) 2011-2015 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -27,6 +27,10 @@ for the remainder of the number.
Some countries may also use checksum algorithms within their number but
this is currently not checked by this number.
+More information:
+ https://en.wikipedia.org/wiki/International_Bank_Account_Number
+ https://www.swift.com/products_services/bic_and_iban_format_registration_iban_format_r
+
>>> validate('GR16 0110 1050 0000 1054 7023 795')
'GR1601101050000010547023795'
>>> validate('BE31435411161155')
diff --git a/stdnum/imei.py b/stdnum/imei.py
index 35f76e1..8c0c1a0 100644
--- a/stdnum/imei.py
+++ b/stdnum/imei.py
@@ -1,7 +1,7 @@
# imei.py - functions for handling International Mobile Equipment Identity
# (IMEI) numbers
#
-# Copyright (C) 2010, 2011, 2012, 2013 Arthur de Jong
+# Copyright (C) 2010-2015 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -20,8 +20,12 @@
"""IMEI (International Mobile Equipment Identity).
-The IMEI is used to identify mobile phones. The IMEI may optionally
-include a check digit which is validated using the Luhn algorithm.
+The IMEI is used to identify mobile phones. An IMEI is 14, 15 (when the
+check digit is included) or 16 digits (IMEISV) long. The check digit is
+validated using the Luhn algorithm.
+
+More information:
+ https://en.wikipedia.org/wiki/International_Mobile_Equipment_Identity
>>> validate('35686800-004141-20')
'3568680000414120'
diff --git a/stdnum/imsi.dat b/stdnum/imsi.dat
index fa0f5c3..f665ff8 100644
--- a/stdnum/imsi.dat
+++ b/stdnum/imsi.dat
@@ -100,15 +100,15 @@
30 bands="" cc="fr" country="France" operator="Symacom" status=""
31 bands="MVNO" brand="Vectone Mobile" cc="fr" country="France" operator="Mundio Mobile" status="Operational"
88 bands="GSM 900 / GSM 1800" brand="Bouygues" cc="fr" country="France" operator="Bouygues Telecom" status="Operational"
- 89 bands="" cc="fr" country="France" operator="Omer Telecom Ltd" status="Not operational"
+ 89 bands="" cc="fr" country="France" operator="Fondation b-com" status=""
90 bands="" cc="fr" country="France" operator="Images & Réseaux" status=""
91 bands="" cc="fr" country="France" operator="Orange S.A." status=""
92 bands="TD-LTE 2300 / LTE 2600" brand="Com4Innov" cc="fr" country="France" operator="Association Plate-forme Télécom" status="Operational"
- 93 bands="" cc="fr" country="France" operator="TDF" status=""
+ 93 bands="" cc="fr" country="France" operator="TDF" status="Not operational"
94 bands="" cc="fr" country="France" operator="Halys" status=""
00-99
212
- 01 bands="GSM 1800 / UMTS 2100 / LTE 2600" brand="Office des Telephones" cc="mc" country="Monaco" operator="Monaco Telecom" status="Operational"
+ 01 bands="GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600" brand="Office des Telephones" cc="mc" country="Monaco" operator="Monaco Telecom" status="Operational"
00-99
213
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Mobiland" cc="ad" country="Andorra" operator="Servei De Tele. DAndorra" status="Operational"
@@ -150,8 +150,9 @@
51 bands="GSM-R" brand="ADIF" cc="es" country="Spain" operator="Administrador de Infraestructuras Ferroviarias" status="Operational"
00-99
216
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Telenor" cc="hu" country="Hungary" operator="Telenor Magyarország Zrt." status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Telenor Hungary" cc="hu" country="Hungary" operator="Telenor Magyarország Zrt." status="Operational"
02 bands="" cc="hu" country="Hungary" operator="MVM Net Ltd." status=""
+ 03 bands="1800" brand="DIGI" cc="hu" country="Hungary" operator="DIGI Telecommunication Ltd." status=""
30 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="T-Mobile" cc="hu" country="Hungary" operator="Magyar Telekom Plc" status="Operational"
70 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="Vodafone" cc="hu" country="Hungary" operator="Vodafone Magyarország Zrt." status="Operational"
71 bands="MVNO" brand="UPC Hungary" cc="hu" country="Hungary" operator="UPC Hungary Ltd." status="Operational"
@@ -177,27 +178,27 @@
07 bands="CDMA 450" cc="rs" country="Serbia" operator="Orion Telekom" status="Operational"
00-99
222
- 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="TIM" cc="it" country="Italy" operator="Telecom Italia S.p.A" status="Operational"
02 bands="Satellite (Globalstar)" brand="Elsacom" cc="it" country="Italy" status="Not operational"
04 bands="" brand="Intermatica" cc="it" country="Italy" status=""
05 bands="" brand="Telespazio" cc="it" country="Italy" status=""
- 06 bands="" brand="Vodafone" cc="it" country="Italy" operator="Vodafone Omnitel B.V." status=""
+ 06 bands="" brand="Vodafone" cc="it" country="Italy" operator="Vodafone Italia S.p.A." status=""
07 bands="MVNO" brand="Nòverca" cc="it" country="Italy" operator="Nòverca Italia" status="Not operational"
- 10 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="Vodafone" cc="it" country="Italy" operator="Vodafone Omnitel B.V." status="Operational"
+ 10 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Vodafone" cc="it" country="Italy" operator="Vodafone Italia S.p.A." status="Operational"
30 bands="GSM-R 900" brand="RFI" cc="it" country="Italy" operator="Rete Ferroviaria Italiana" status="Operational"
- 33 bands="MVNO" brand="Poste Mobile" cc="it" country="Italy" operator="Poste Mobile SpA" status="Operational"
+ 33 bands="MVNO" brand="Poste Mobile" cc="it" country="Italy" operator="Poste Mobile S.p.A." status="Operational"
34 bands="MVNO" brand="BT Italia" cc="it" country="Italy" operator="British Telecom Italia" status="Reserved"
- 35 bands="MVNO" brand="Lyca Italy" cc="it" country="Italy" operator="Lycamobile" status="Operational"
+ 35 bands="MVNO" brand="Lycamobile" cc="it" country="Italy" operator="Lycamobile" status="Operational"
36 bands="" brand="Digi Mobil" cc="it" country="Italy" operator="Digi Italy S.r.l." status=""
- 37 bands="" brand="3 Italia" cc="it" country="Italy" operator="Hutchison 3G" status=""
- 38 bands="" brand="LINKEM" cc="it" country="Italy" operator="Linkem SpA" status=""
+ 37 bands="" brand="3 Italia" cc="it" country="Italy" operator="H3G S.p.A." status=""
+ 38 bands="" brand="LINKEM" cc="it" country="Italy" operator="Linkem S.p.A." status=""
39 bands="" brand="SMS Italia" cc="it" country="Italy" operator="SMS Italia S.r.l." status=""
- 43 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA" status=""
- 48 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA" status=""
+ 43 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia S.p.A." status=""
+ 48 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia S.p.A." status=""
77 bands="UMTS 2100" brand="IPSE 2000" cc="it" country="Italy" status="Not operational"
- 88 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600" brand="Wind" cc="it" country="Italy" operator="Wind Telecomunicazioni SpA" status="Operational"
- 98 bands="GSM 900" brand="BLU s.p.a" cc="it" country="Italy" operator="BLU s.p.a" status="Not operational"
- 99 bands="UMTS 900 / UMTS 2100 / LTE 1800" brand="3 Italia" cc="it" country="Italy" operator="Hutchison 3G" status="Operational"
+ 88 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600" brand="Wind" cc="it" country="Italy" operator="Wind Telecomunicazioni S.p.A." status="Operational"
+ 98 bands="GSM 900" brand="BLU" cc="it" country="Italy" operator="BLU S.p.A." status="Not operational"
+ 99 bands="UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="3 Italia" cc="it" country="Italy" operator="H3G S.p.A." status="Operational"
00-99
226
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / TD-LTE 2600" brand="Vodafone" cc="ro" country="Romania" operator="Vodafone România" status="Operational"
@@ -220,15 +221,17 @@
07 bands="GSM 1800" brand="IN&Phone" cc="ch" country="Switzerland" operator="IN&Phone SA" status="Not operational"
08 bands="GSM 1800" brand="Tele4u" cc="ch" country="Switzerland" operator="TelCommunication Services AG" status="Operational"
09 bands="" cc="ch" country="Switzerland" operator="Comfone AG" status=""
- 12 cc="ch" country="Switzerland" operator="Sunrise" status="Inactive"
+ 12 brand="Sunrise" cc="ch" country="Switzerland" operator="Sunrise Communications AG" status="Inactive"
50 bands="UMTS 2100" cc="ch" country="Switzerland" operator="3G Mobile AG" status="Not operational"
51 bands="MVNO" cc="ch" country="Switzerland" operator="BebbiCell AG" status="Operational"
52 brand="Barablu" cc="ch" country="Switzerland" operator="Barablu" status="Not operational"
53 bands="MVNO" cc="ch" country="Switzerland" operator="UPC Cablecom GmbH" status="Operational"
54 bands="MVNO" cc="ch" country="Switzerland" operator="Lycamobile AG" status="Operational"
55 bands="" cc="ch" country="Switzerland" operator="WeMobile SA" status=""
- 56 bands="" cc="ch" country="Switzerland" operator="SMSRelay AG" status=""
+ 56 bands="" cc="ch" country="Switzerland" operator="SMSRelay AG" status="Not operational"
57 bands="" cc="ch" country="Switzerland" operator="Mitto AG" status=""
+ 58 bands="MVNO" cc="ch" country="Switzerland" operator="Beeone Communications SA" status="Operational"
+ 60 bands="" brand="Sunrise" cc="ch" country="Switzerland" operator="Sunrise Communications AG" status=""
99 cc="ch" country="Switzerland" operator="Swisscom" status=""
00-99
230
@@ -237,8 +240,8 @@
03 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / LTE 900 / LTE 1800 / LTE 2100" brand="Vodafone" cc="cz" country="Czech Republic" operator="Vodafone Czech Republic" status="Operational"
04 bands="CDMA2000 410 - 430" brand="U:fon" cc="cz" country="Czech Republic" operator="Air Telecom a. s." status="Operational"
05 bands="" cc="cz" country="Czech Republic" operator="TRAVEL TELEKOMMUNIKATION, s.r.o." status="Not operational"
- 06 bands="" cc="cz" country="Czech Republic" operator="OSNO TELECOMUNICATION, s.r.o." status=""
- 07 bands="MVNO" cc="cz" country="Czech Republic" operator="ASTELNET, s.r.o." status="Operational"
+ 06 bands="" cc="cz" country="Czech Republic" operator="OSNO TELECOMUNICATION, s.r.o." status="Not operational"
+ 07 bands="MVNO" cc="cz" country="Czech Republic" operator="ASTELNET, s.r.o." status="Not operational"
08 bands="" cc="cz" country="Czech Republic" operator="Compatel s.r.o." status=""
09 bands="MVNO" cc="cz" country="Czech Republic" operator="Mundio Distribution Czech Republic s.r.o." status=""
98 bands="GSM-R 900" cc="cz" country="Czech Republic" operator="Správa železniční dopravní cesty, s.o." status="Operational"
@@ -275,18 +278,18 @@
19 bands="" cc="at" country="Austria" operator="Tele2 Telecommunication GmbH" status=""
20 bands="" cc="at" country="Austria" operator="MTEL Austrija GmbH" status=""
91 bands="GSM-R" brand="GSM-R A" cc="at" country="Austria" operator="ÖBB" status="Operational"
- 92 bands="" cc="at" country="Austria" operator="ArgoNET GmbH" status=""
+ 92 bands="CDMA 450" brand="ArgoNET" cc="at" country="Austria" operator="ArgoNET GmbH" status="Operational"
00-99
234
00 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BT" cc="gb" country="United Kingdom" operator="BT Group" status="Operational"
- 01 bands="GSM 1800" brand="Vectone Mobile" cc="gb" country="United Kingdom" operator="Mundio Mobile Limited" status="Operational"
+ 01 bands="MVNO" brand="Vectone Mobile" cc="gb" country="United Kingdom" operator="Mundio Mobile Limited" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800" brand="O2 (UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Airtel-Vodafone" cc="gb" country="United Kingdom" operator="Jersey Airtel Limited" status="Operational"
04 bands="GSM 1800" brand="FMS Solutions Ltd" cc="gb" country="United Kingdom" operator="FMS Solutions Ltd" status="Reserved"
05 cc="gb" country="United Kingdom" operator="COLT Mobile Telecommunications Limited" status=""
06 cc="gb" country="United Kingdom" operator="Internet Computer Bureau Limited" status=""
- 07 bands="GSM 1800" cc="gb" country="United Kingdom" operator="Cable & Wireless Worldwide" status="Operational"
- 08 cc="gb" country="United Kingdom" operator="OnePhone (UK) Ltd" status=""
+ 07 bands="GSM 1800" cc="gb" country="United Kingdom" operator="Vodafone" status="Operational"
+ 08 cc="gb" country="United Kingdom" operator="BT OnePhone (UK) Ltd" status=""
09 cc="gb" country="United Kingdom" operator="Tismi BV" status=""
10 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800" brand="O2 (UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe" status="Operational"
11 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800" brand="O2 (UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe" status="Operational"
@@ -317,14 +320,18 @@
36 bands="GSM 900 / GSM 1800 / LTE" brand="Sure Mobile" cc="gb" country="United Kingdom" operator="Sure (Isle of Man) Limited" status="Operational"
37 bands="" cc="gb" country="United Kingdom" operator="Synectiv Ltd" status=""
38 bands="" brand="Virgin Mobile UK" cc="gb" country="United Kingdom" operator="Virgin Media" status=""
- 39 bands="" cc="gb" country="United Kingdom" operator="SSE Energy Supply Limited" status=""
+ 39 bands="" cc="gb" country="United Kingdom" operator="Gamma Telecom Holdings Ltd." status=""
50 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="JT" cc="gb" country="United Kingdom" operator="JT Group Limited" status="Operational"
51 bands="TD-LTE 3500 / TD-LTE 3700" brand="UK Broadband" cc="gb" country="United Kingdom" operator="UK Broadband Limited" status="Operational"
52 bands="" cc="gb" country="United Kingdom" operator="Shyam Telecom UK Ltd" status=""
- 53 bands="" cc="gb" country="United Kingdom" operator="Limitless Mobile Ltd" status=""
+ 53 bands="MVNO" cc="gb" country="United Kingdom" operator="Limitless Mobile Ltd" status="Operational"
54 bands="" cc="gb" country="United Kingdom" operator="The Carphone Warehouse Limited" status=""
55 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Sure Mobile" cc="gb" country="United Kingdom" operator="Sure (Guernsey) Limited" status="Operational"
+ 56 bands="" cc="gb" country="United Kingdom" operator="CESG" status=""
+ 57 bands="" cc="gb" country="United Kingdom" operator="Sky UK Limited" status=""
58 bands="GSM 900 / UMTS 2100 / LTE 800 / LTE 1800" brand="Pronto GSM" cc="gb" country="United Kingdom" operator="Manx Telecom" status="Operational"
+ 59 bands="MVNO" cc="gb" country="United Kingdom" operator="Limitless Mobile Ltd" status="Operational"
+ 70 bands="" cc="gb" country="United Kingdom" operator="AMSUK Ltd." status=""
76 bands="GSM 900 / GSM 1800" brand="BT" cc="gb" country="United Kingdom" operator="BT Group" status="Operational"
78 bands="TETRA" brand="Airwave" cc="gb" country="United Kingdom" operator="Airwave Solutions Ltd" status="Operational"
86 bands="" cc="gb" country="United Kingdom" operator="EE" status=""
@@ -336,7 +343,7 @@
03 bands="" brand="UK Broadband" cc="gb" country="United Kingdom" operator="UK Broadband Limited" status=""
77 brand="BT" cc="gb" country="United Kingdom" operator="BT Group" status=""
91 cc="gb" country="United Kingdom" operator="Vodafone United Kingdom" status=""
- 92 cc="gb" country="United Kingdom" operator="Cable & Wireless UK" status=""
+ 92 cc="gb" country="United Kingdom" operator="Vodafone United Kingdom" status=""
94 cc="gb" country="United Kingdom" operator="Hutchison 3G UK Ltd" status=""
95 cc="gb" country="United Kingdom" operator="Network Rail Infrastructure Limited" status=""
00-99
@@ -375,7 +382,7 @@
06 bands="UMTS 2100" brand="Telenor" cc="se" country="Sweden" operator="Telenor Sverige AB" status="Operational"
07 bands="UMTS 2100 / LTE 800 / LTE 900 / LTE 1800 / LTE 2600" brand="Tele2" cc="se" country="Sweden" operator="Tele2 Sverige AB" status="Operational"
08 bands="GSM 900 / GSM 1800" brand="Telenor" cc="se" country="Sweden" operator="Telenor Sverige AB" status="Not operational"
- 09 bands="MVNO" brand="djuice" cc="se" country="Sweden" operator="Telenor Mobile Sweden AS" status="Not operational"
+ 09 bands="" cc="se" country="Sweden" operator="Communication for Devices in Sweden AB" status=""
10 brand="Spring Mobil" cc="se" country="Sweden" operator="Spring Mobil AB" status="Operational"
11 bands="" cc="se" country="Sweden" operator="Lindholmen Science Park AB" status="Not operational"
12 bands="MVNO" brand="Lycamobile" cc="se" country="Sweden" operator="Lycamobile Sweden Limited" status="Operational"
@@ -393,7 +400,7 @@
24 bands="GSM 900 / LTE 800 / LTE 900 / LTE 1800 / LTE 2600" brand="Sweden 2G" cc="se" country="Sweden" operator="Net4Mobility HB" status="Operational"
25 bands="" cc="se" country="Sweden" operator="Digitel Mobile Srl" status="Not operational"
26 bands="GSM" cc="se" country="Sweden" operator="Beepsend AB" status="Operational"
- 27 bands="MVNO" cc="se" country="Sweden" operator="Fogg Mobile AB" status="Operational"
+ 27 bands="MVNO" cc="se" country="Sweden" operator="GlobeTouch AB" status="Operational"
28 bands="" cc="se" country="Sweden" operator="CoolTEL Aps" status=""
29 bands="" cc="se" country="Sweden" operator="Mercury International Carrier Services" status=""
30 bands="" cc="se" country="Sweden" operator="NextGen Mobile Ltd." status=""
@@ -435,42 +442,47 @@
00-99
244
03 bands="GSM 1800" brand="DNA" cc="fi" country="Finland" operator="DNA Oy" status="Operational"
- 04 bands="MVNO" brand="AINA" cc="fi" country="Finland" operator="DNA Oy / Aina Oyj" status="Operational"
+ 04 bands="MVNO" brand="AINA" cc="fi" country="Finland" operator="TeliaSonera Finland Oyj / Aina Oyj" status="Not operational"
05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Elisa" cc="fi" country="Finland" operator="Elisa Oyj" status="Operational"
07 bands="GSM 900 / GSM 1800" brand="Nokia" cc="fi" country="Finland" operator="Nokia Test Network" status="Not operational"
08 bands="GSM 1800 / UMTS 2100" brand="Nokia" cc="fi" country="Finland" operator="Nokia Test Network" status="Not operational"
09 bands="GSM 900" cc="fi" country="Finland" operator="Nokia Solutions and Networks Oy" status="Not operational"
- 10 bands="" cc="fi" country="Finland" operator="Viestintävirasto" status=""
- 11 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland" operator="Mundio Mobile Oy" status="Operational"
+ 10 bands="MVNO" cc="fi" country="Finland" operator="Viestintävirasto" status="Not operational"
+ 11 bands="MVNO" cc="fi" country="Finland" operator="Viestintävirasto" status="Not operational"
12 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="DNA" cc="fi" country="Finland" operator="DNA Oy" status="Operational"
13 bands="GSM 900 / GSM 1800" brand="DNA" cc="fi" country="Finland" operator="DNA Oy" status="Not operational"
14 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Ålcom" cc="fi" country="Finland" operator="Ålands Telekommunikation Ab" status="Operational"
15 bands="GSM 1800" brand="SAMK" cc="fi" country="Finland" operator="Satakunta University of Applied Sciences" status="Not operational"
16 bands="MVNO" brand="Tele2" cc="fi" country="Finland" operator="Oy Finland Tele2 AB" status="Not operational"
- 17 bands="GSM-R" brand="RHK" cc="fi" country="Finland" operator="Finnish Transport Agency" status="Operational"
+ 17 bands="GSM-R" brand="Corenet" cc="fi" country="Finland" operator="Corenet Oy / Finnish Transport Agency" status="Operational"
21 bands="MVNO" brand="Elisa- Saunalahti" cc="fi" country="Finland" operator="Elisa Oyj" status="Operational"
25 bands="CDMA" brand="Datame" cc="fi" country="Finland" operator="Datame Oy" status="Not operational"
26 bands="MVNO" brand="Compatel" cc="fi" country="Finland" operator="Compatel Ltd" status="Operational"
27 bands="" cc="fi" country="Finland" operator="VTT Technical Research Centre of Finland" status=""
29 bands="MVNO" cc="fi" country="Finland" operator="SCNL Truphone" status="Not operational"
- 30 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland" operator="Mundio Mobile Oy" status="Operational"
+ 30 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland" operator="Mundio Mobile Oy" status="Not Operational"
31 bands="MVNO" brand="Kuiri" cc="fi" country="Finland" operator="Ukko Mobile Oy" status="Operational"
32 bands="MVNO" brand="Voxbone" cc="fi" country="Finland" operator="Voxbone SA" status="Operational"
33 bands="TETRA" brand="VIRVE" cc="fi" country="Finland" operator="Virve Tuotteet ja Palvelut Oy" status="Operational"
- 34 bands="" brand="Elektrobit Wireless" cc="fi" country="Finland" operator="Elektrobit Wireless Communications Oy" status="Operational"
+ 34 bands="MVNO" brand="Bittium Wireless" cc="fi" country="Finland" operator="Bittium Wireless Oy" status="Operational"
35 bands="LTE 450" brand="Ukko Mobile" cc="fi" country="Finland" operator="Ukkoverkot Oy" status="Operational"
- 36 bands="" brand="Sonera" cc="fi" country="Finland" operator="TeliaSonera Finland Oyj" status=""
+ 36 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Sonera / DNA" cc="fi" country="Finland" operator="TeliaSonera Finland Oyj / Suomen Yhteisverkko Oy" status="Operational"
+ 37 bands="MVNO" brand="Tismi" cc="fi" country="Finland" operator="Tismi BV" status="Operational"
+ 38 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks Oy" status="Operational"
+ 39 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks Oy" status="Operational"
+ 40 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks Oy" status="Operational"
+ 41 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks Oy" status="Operational"
91 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Sonera" cc="fi" country="Finland" operator="TeliaSonera Finland Oyj" status="Operational"
00-99
246
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Omnitel" cc="lt" country="Lithuania" status="Operational"
- 02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BITĖ" cc="lt" country="Lithuania" operator="UAB Bitė Lietuva" status="Operational"
- 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Tele 2" cc="lt" country="Lithuania" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / LTE 1800" brand="Omnitel" cc="lt" country="Lithuania" status="Operational"
+ 02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="BITĖ" cc="lt" country="Lithuania" operator="UAB Bitė Lietuva" status="Operational"
+ 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Tele 2" cc="lt" country="Lithuania" status="Operational"
04 bands="" cc="lt" country="Lithuania" operator="Ministry of the Interior)" status=""
05 bands="GSM-R 900" brand="LitRail" cc="lt" country="Lithuania" operator="Lietuvos geležinkeliai (Lithuanian Railways)" status="Operational"
- 06 bands="GSM 1800" brand="Mediafon" cc="lt" country="Lithuania" operator="UAB Mediafon" status="Operational"
+ 06 bands="" brand="Mediafon" cc="lt" country="Lithuania" operator="UAB Mediafon" status="Operational"
07 bands="" cc="lt" country="Lithuania" operator="Compatel Ltd." status=""
- 08 bands="WiMAX 3500" brand="MEZON" cc="lt" country="Lithuania" operator="Lietuvos radijo ir televizijos centras" status="Operational"
+ 08 bands="WiMAX 3500 / LTE 3500" brand="MEZON" cc="lt" country="Lithuania" operator="Lietuvos radijo ir televizijos centras" status="Operational"
00-99
247
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="LMT" cc="lv" country="Latvia" operator="Latvian Mobile Telephone" status="Operational"
@@ -484,13 +496,13 @@
09 bands="MVNO" brand="Camel Mobile" cc="lv" country="Latvia" operator="Camel Mobile" status="Operational"
00-99
248
- 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="EMT" cc="ee" country="Estonia" operator="Estonian Mobile Telecom" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Telia" cc="ee" country="Estonia" operator="Estonian Mobile Telecom" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600" brand="Elisa" cc="ee" country="Estonia" operator="Elisa Eesti" status="Operational"
- 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="Tele 2" cc="ee" country="Estonia" operator="Tele 2 Eesti" status="Operational"
+ 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2100 / LTE 2600" brand="Tele 2" cc="ee" country="Estonia" operator="Tele 2 Eesti" status="Operational"
04 bands="MVNO" cc="ee" country="Estonia" operator="OY Top Connect" status="Operational"
05 bands="" cc="ee" country="Estonia" operator="AS Bravocom Mobiil" status=""
06 bands="UMTS 2100" cc="ee" country="Estonia" operator="Progroup Holding" status="Operational"
- 07 bands="" cc="ee" country="Estonia" operator="Televõrgu AS" status=""
+ 07 bands="CDMA2000 450" brand="Kou" cc="ee" country="Estonia" operator="Televõrgu AS" status="Not operational"
08 bands="MVNO" brand="VIVEX" cc="ee" country="Estonia" operator="VIVEX OU" status="Operational"
09 bands="" cc="ee" country="Estonia" operator="Bravo Telecom" status=""
10 bands="" cc="ee" country="Estonia" operator="Telcotrade OÜ" status=""
@@ -499,7 +511,7 @@
250
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600 / TD-LTE 2600" brand="MTS" cc="ru" country="Russian Federation" operator="Mobile TeleSystems" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600" brand="MegaFon" cc="ru" country="Russian Federation" operator="MegaFon OJSC - previously known as North-West GSM" status="Operational"
- 03 bands="GSM 900 / GSM 1800" brand="NCC" cc="ru" country="Russian Federation" operator="Nizhegorodskaya Cellular Communications" status="Operational"
+ 03 bands="GSM 900 / GSM 1800" brand="NCC" cc="ru" country="Russian Federation" operator="Nizhegorodskaya Cellular Communications (purchased Tele2)" status="Operational"
04 bands="GSM 900" brand="Sibchallenge" cc="ru" country="Russian Federation" operator="Sibchallenge" status="Not operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100 / CDMA2000 450" brand="ETK" cc="ru" country="Russian Federation" operator="Yeniseytelecom" status="Operational"
06 bands="CDMA2000 450" brand="Skylink" cc="ru" country="Russian Federation" operator="CJSC Saratov System of Cellular Communications" status="Operational"
@@ -520,6 +532,7 @@
23 bands="GSM 900 / GSM 1800" brand="Mobicom - Novosibirsk" cc="ru" country="Russian Federation" operator="Mobicom - Novosibirsk" status="Not operational"
28 bands="GSM 900" brand="Beeline" cc="ru" country="Russian Federation" operator="Beeline" status="Not operational"
32 bands="GSM 900 / GSM 1800" brand="Win Mobile" cc="ru" country="Russian Federation" operator="K-Telecom" status="Operational"
+ 34 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Krymtelekom" cc="ru" country="Russian Federation" operator="Krymtelekom" status="Operational"
35 bands="GSM 1800 / LTE 1800" brand="MOTIV" cc="ru" country="Russian Federation" operator="EKATERINBURG-2000" status="Operational"
38 bands="GSM 900 / GSM 1800" brand="Tambov GSM" cc="ru" country="Russian Federation" operator="Central Telecommunication Company" status="Operational"
39 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / TD-LTE 2300 / LTE 2600" brand="Rostelecom" cc="ru" country="Russian Federation" operator="ROSTELECOM" status="Operational"
@@ -533,12 +546,12 @@
99 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600" brand="Beeline" cc="ru" country="Russian Federation" operator="OJSC Vimpel-Communications" status="Operational"
00-99
255
- 01 bands="GSM 900 / GSM 1800 / CDMA 450 / UMTS 2100" brand="MTS" cc="ua" country="Ukraine" operator="MTS Ukraine" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / CDMA 450 / UMTS 2100" brand="Vodafone" cc="ua" country="Ukraine" operator="MTS Ukraine" status="Operational"
02 bands="GSM 900 / GSM 1800" brand="Beeline" cc="ua" country="Ukraine" operator="Kyivstar GSM JSC" status="Not operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Kyivstar" cc="ua" country="Ukraine" operator="Kyivstar GSM JSC" status="Operational"
04 bands="CDMA 800" brand="IT" cc="ua" country="Ukraine" operator="Intertelecom" status="Operational"
05 bands="GSM 1800" brand="Golden Telecom" cc="ua" country="Ukraine" operator="Kyivstar GSM JSC" status="Not operational"
- 06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="life:)" cc="ua" country="Ukraine" operator="Astelit" status="Operational"
+ 06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="lifecell" cc="ua" country="Ukraine" operator="Astelit" status="Operational"
07 bands="UMTS 2100" brand="3Mob" cc="ua" country="Ukraine" operator="3Mob (Ukrtelecom UMTS )" status="Operational"
21 bands="CDMA 800" brand="PEOPLEnet" cc="ua" country="Ukraine" operator="Telesystems of Ukraine" status="Operational"
23 bands="CDMA 800" brand="CDMA Ukraine" cc="ua" country="Ukraine" operator="Intertelecom" status="Not operational"
@@ -558,7 +571,7 @@
02 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800 / LTE 2600" brand="Moldcell" cc="md" country="Moldova" status="Operational"
03 bands="CDMA 450" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="Eventis" cc="md" country="Moldova" operator="Eventis Telecom" status="Not operational"
- 05 bands="UMTS 900 / UMTS 2100" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
+ 05 bands="UMTS 900 / UMTS 2100 / LTE 1800" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
99 bands="UMTS 2100" brand="Unité" cc="md" country="Moldova" operator="Moldtelecom" status="Operational"
00-99
260
@@ -624,7 +637,7 @@
16 bands="MVNO" cc="de" country="Germany" operator="Telogic Germany GmbH" status="Not operational"
17 bands="" brand="E-Plus" cc="de" country="Germany" operator="E-Plus Mobilfunk" status=""
18 bands="MVNO" cc="de" country="Germany" operator="NetCologne" status="Operational"
- 19 bands="" cc="de" country="Germany" operator="Inquam Deutschland" status=""
+ 19 bands="CDMA 450" cc="de" country="Germany" operator="Inquam Deutschland" status=""
20 bands="GSM" brand="OnePhone" cc="de" country="Germany" operator="E-Plus Mobilfunk" status="Operational"
33 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="simquadrat" cc="de" country="Germany" operator="sipgate GmbH" status="Operational"
41 bands="" cc="de" country="Germany" operator="First Telecom GmbH" status=""
@@ -691,7 +704,7 @@
22 bands="" cc="is" country="Iceland" operator="Landhelgisgæslan (Icelandic Coast Guard)" status=""
00-99
276
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="AMC" cc="al" country="Albania" operator="Albanian Mobile Communications" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800 / LTE 2600" brand="Telekom.al" cc="al" country="Albania" operator="Telekom Albania" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 /LTE 1800 / LTE 2600" brand="Vodafone" cc="al" country="Albania" operator="Vodafone Albania" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Eagle Mobile" cc="al" country="Albania" operator="Eagle Mobile" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="Plus Communication" cc="al" country="Albania" operator="Plus Communication" status="Operational"
@@ -730,7 +743,7 @@
284
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="M-Tel" cc="bg" country="Bulgaria" operator="Mobiltel" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Vivacom" cc="bg" country="Bulgaria" operator="BTC" status="Operational"
- 05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Telenor" cc="bg" country="Bulgaria" operator="Telenor (Bulgaria)" status="Operational"
+ 05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Telenor" cc="bg" country="Bulgaria" operator="Telenor (Bulgaria)" status="Operational"
07 bands="GSM-R" brand="НКЖИ" cc="bg" country="Bulgaria" operator="НАЦИОНАЛНА КОМПАНИЯ ЖЕЛЕЗОПЪТНА ИНФРАСТРУКТУРА" status="Operational"
09 bands="" cc="bg" country="Bulgaria" operator="COMPATEL LIMITED" status="Not operational"
11 bands="LTE 1800" cc="bg" country="Bulgaria" operator="Bulsatcom" status="Not operational"
@@ -739,8 +752,8 @@
286
01 bands="GSM 900 / UMTS 2100" brand="Turkcell" cc="tr" country="Turkey" operator="Turkcell Iletisim Hizmetleri A.S." status="Operational"
02 bands="GSM 900 / UMTS 2100" brand="Vodafone" cc="tr" country="Turkey" operator="Vodafone Turkey" status="Operational"
- 03 bands="GSM 1800 / UMTS 2100" brand="Avea" cc="tr" country="Turkey" status="Operational"
- 04 bands="GSM 1800" cc="tr" country="Turkey" operator="Aycell" status="Not operational"
+ 03 bands="GSM 1800 / UMTS 2100" brand="Türk Telekom" cc="tr" country="Turkey" operator="Türk Telekom" status="Operational"
+ 04 bands="GSM 1800" brand="Aycell" cc="tr" country="Turkey" operator="Aycell" status="Not operational"
00-99
288
01 bands="GSM 900 / UMTS 900 / UMTS 2100" brand="Faroese Telecom" cc="fo" country="Faroe Islands (Denmark)" operator="Faroese Telecom" status="Operational"
@@ -855,7 +868,7 @@
013 bands="" brand="Verizon" cc="us" country="United States of America" operator="Verizon Wireless" status=""
014 bands="" cc="us" country="United States of America" status=""
015 bands="iDEN" brand="Southern LINC" cc="us" country="United States of America" operator="Southern Communications" status=""
- 016 bands="CDMA2000 1900 / CDMA2000 1700" brand="Cricket Wireless" cc="us" country="United States of America" operator="Cricket Communications" status="Operational"
+ 016 bands="CDMA2000 1900 / CDMA2000 1700" brand="Cricket Wireless" cc="us" country="United States of America" operator="Cricket Communications" status="Not operational"
017 bands="iDEN" brand="ProxTel" cc="us" country="United States of America" operator="North Sight Communications Inc." status=""
020 bands="GSM 850 / GSM 1900 / UMTS" brand="Union Wireless" cc="us" country="United States of America" operator="Union Telephone Company" status="Operational"
030 bands="GSM 850" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
@@ -872,12 +885,12 @@
070 bands="GSM 850" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
080 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
090 bands="GSM 1900" brand="Cricket Wireless" cc="us" country="United States of America" operator="Cricket Communications" status="Operational"
- 100 bands="GSM 850 / UMTS 850 / UMTS AWS" brand="Plateau Wireless" cc="us" country="United States of America" operator="New Mexico RSA 4 East LP" status="Operational"
+ 100 bands="GSM 850 / UMTS 850 / UMTS 1700" brand="Plateau Wireless" cc="us" country="United States of America" operator="New Mexico RSA 4 East LP" status="Operational"
110 bands="CDMA / GSM 850 / LTE 700" brand="IT&E Wireless" cc="us" country="United States of America" operator="PTI Pacifica Inc." status="Operational"
120 bands="CDMA2000 1900 / LTE 850 / LTE 1900" brand="Sprint" cc="us" country="United States of America" operator="Sprint Corporation" status="Operational"
130 bands="CDMA2000 1900" brand="Carolina West Wireless" cc="us" country="United States of America" operator="Carolina West Wireless" status="Operational"
140 bands="GSM 850 / GSM 1900 / UMTS 850 / LTE 1700" brand="GTA Wireless" cc="us" country="United States of America" operator="Teleguam Holdings, LLC" status="Operational"
- 150 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="Cricket Wireless" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
+ 150 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
160 bands="GSM 1900" brand="T-Mobile" cc="us" country="United States of America" operator="T-Mobile US" status="Operational"
170 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
180 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="West Central" cc="us" country="United States of America" operator="West Central Wireless" status="Operational"
@@ -891,71 +904,78 @@
260 bands="GSM 1900 / UMTS 1900 / UMTS 1700 / LTE 700 / LTE 1900 / LTE 1700" brand="T-Mobile USA" cc="us" country="United States of America" operator="T-Mobile USA" status="Operational"
270 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
280 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Not Operational"
- 290 bands="GSM 1900" brand="nep" cc="us" country="United States of America" operator="NEP Cellcorp Inc." status="Operational"
+ 290 bands="GSM 1900" brand="nep" cc="us" country="United States of America" operator="NEP Cellcorp Inc." status="Not operational"
300 bands="GSM 1900" brand="Big Sky Mobile" cc="us" country="United States of America" operator="iSmart Mobile, LLC" status="Operational"
310 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
- 311 bands="GSM 1900" cc="us" country="United States of America" operator="Farmers Wireless" status="Operational"
- 320 bands="GSM 850 / GSM 1900" brand="Cellular One" cc="us" country="United States of America" operator="Smith Bagley, Inc." status="Operational"
+ 311 bands="GSM 1900" cc="us" country="United States of America" operator="Farmers Wireless" status="Not operational"
+ 320 bands="GSM 850 / GSM 1900 / UMTS" brand="Cellular One" cc="us" country="United States of America" operator="Smith Bagley, Inc." status="Operational"
330 bands="CDMA" brand="Alltel" cc="us" country="United States of America" operator="Allied Wireless Communications Corporation (AWCC)" status="Not operational"
340 bands="GSM 1900" brand="Westlink Communications" cc="us" country="United States of America" operator="High Plains Midwest LLC" status="Not operational"
350 bands="CDMA" brand="Verizon" cc="us" country="United States of America" operator="Verizon Wireless" status="Not operational"
360 bands="CDMA" brand="Pioneer Cellular" cc="us" country="United States of America" operator="Cellular Network Partnership" status="Operational"
370 bands="GSM 1900 / UMTS 850 / LTE 700" brand="Docomo" cc="us" country="United States of America" operator="NTT Docomo Pacific" status="Operational"
380 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Not operational"
- 390 bands="GSM 850" brand="Cellular One of East Texas" cc="us" country="United States of America" operator="TX-11 Acquisition, LLC" status="Operational"
- 400 bands="GSM 1900" brand="i CAN_GSM" cc="us" country="United States of America" operator="Wave Runner LLC (Guam)" status="Operational"
+ 390 bands="GSM 850 / LTE 700 / CDMA" brand="Cellular One of East Texas" cc="us" country="United States of America" operator="TX-11 Acquisition, LLC" status="Operational"
+ 400 bands="GSM 1900 / UMTS 1900 / LTE 700" brand="iConnect" cc="us" country="United States of America" operator="Wave Runner LLC" status="Operational"
410 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
420 bands="GSM 1900 / UMTS 1700" brand="Cincinnati Bell" cc="us" country="United States of America" operator="Cincinnati Bell Wireless" status="Not operational"
- 430 bands="GSM 1900" cc="us" country="United States of America" operator="Alaska Digitel" status="Operational"
- 440 bands="GSM 1900" brand="Cellular One" cc="us" country="United States of America" status=""
- 450 bands="GSM 850 / GSM 1900" brand="Viaero" cc="us" country="United States of America" operator="Viaero Wireless" status="Operational"
- 460 bands="GSM 1900" brand="Simmetry" cc="us" country="United States of America" operator="TMP Corporation" status="Not operational"
+ 430 bands="GSM 1900 / UMTS 1900" brand="GCI" cc="us" country="United States of America" operator="GCI Communications Corp." status="Operational"
+ 440 bands="MVNO" cc="us" country="United States of America" operator="Numerex" status="Operational"
+ 450 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="Viaero" cc="us" country="United States of America" operator="Viaero Wireless" status="Operational"
+ 460 bands="GSM 1900" brand="NewCore" cc="us" country="United States of America" operator="NewCore Wireless LLC" status="Operational"
470 bands="CDMA2000 1900" brand="nTelos" cc="us" country="United States of America" operator="nTelos Communications, Inc." status="Operational"
- 480 bands="" cc="us" country="United States of America" operator="Choice Phone" status="Operational"
- 490 bands="GSM 850 / GSM 1900" brand="T-Mobile" cc="us" country="United States of America" status="Operational"
- 500 bands="CDMA2000 800 / CDMA2000 1900" brand="Alltel" cc="us" country="United States of America" status="Operational"
- 510 bands="" brand="Airtel" cc="us" country="United States of America" operator="Airtel Wireless" status="Operational"
- 520 bands="" brand="VeriSign" cc="us" country="United States of America" status=""
- 530 bands="" cc="us" country="United States of America" operator="West Virginia Wireless" status="Operational"
- 540 bands="GSM 1900" brand="Oklahoma Western" cc="us" country="United States of America" operator="Oklahoma Western Telephone Company" status="Operational"
+ 480 bands="iDEN" brand="Instant Connect" cc="us" country="United States of America" operator="Wave Runner LLC" status="Operational"
+ 490 bands="GSM 850 / GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Operational"
+ 500 bands="CDMA2000 850 / CDMA2000 1900" brand="Alltel" cc="us" country="United States of America" operator="Public Service Cellular Inc." status="Operational"
+ 510 bands="" brand="Cellcom" cc="us" country="United States of America" operator="Nsighttel Wireless LLC" status=""
+ 520 bands="" brand="TNS" cc="us" country="United States of America" operator="Transaction Network Services" status=""
+ 530 bands="" brand="iWireless" cc="us" country="United States of America" operator="Iowa Wireless Services LLC" status=""
+ 540 bands="GSM 850 / GSM 1900" brand="Phoenix" cc="us" country="United States of America" operator="Oklahoma Western Telephone Company" status="Operational"
+ 550 bands="" cc="us" country="United States of America" operator="Syniverse Technologies" status=""
560 bands="GSM 850" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
570 bands="GSM 850 / LTE 700" brand="Cellular One" cc="us" country="United States of America" operator="TX-10, LLC and Central Louisiana Cellular, LLC (MTPCS)" status="Operational"
- 580 bands="" brand="T-Mobile" cc="us" country="United States of America" status="Not operational"
+ 580 bands="CDMA2000" cc="us" country="United States of America" operator="Inland Cellular Telephone Company" status="Operational"
59 bands="CDMA" brand="Cellular One" cc="bm" country="Bermuda" status="Operational"
- 590 bands="GSM 850 / GSM 1900" brand="Alltel" cc="us" country="United States of America" operator="Alltel Communications Inc" status="Operational"
- 600 bands="CDMA 850 / CDMA 1900 / LTE 700" brand="Cellcom" cc="us" country="United States of America" operator="New-Cell Inc." status="Operational"
- 610 bands="GSM 1900" brand="Epic Touch" cc="us" country="United States of America" operator="Elkhart Telephone Co." status="Operational"
- 620 bands="GSM 1900" brand="Coleman County Telecom" cc="us" country="United States of America" operator="Coleman County Telecommunications" status="Operational"
+ 590 bands="GSM 850 / GSM 1900" cc="us" country="United States of America" operator="Verizon Wireless" status=""
+ 600 bands="CDMA2000 850 / CDMA2000 1900 / LTE 700" brand="Cellcom" cc="us" country="United States of America" operator="New-Cell Inc." status="Operational"
+ 610 bands="GSM 1900" brand="Epic PCS" cc="us" country="United States of America" operator="Elkhart Telephone Co." status="Not operational"
+ 620 bands="" brand="Cellcom" cc="us" country="United States of America" operator="Nsighttel Wireless LLC" status=""
630 bands="LTE 700" brand="miSpot" cc="us" country="United States of America" operator="Agri-Valley Communications" status="Not operational"
- 640 bands="GSM 1900" brand="AirFire" cc="us" country="United States of America" operator="Airadigm Communications" status="Not Operational"
- 650 bands="GSM 850" brand="Jasper" cc="us" country="United States of America" operator="Jasper Wireless, Inc." status="Operational"
+ 640 bands="MVNO" cc="us" country="United States of America" operator="Numerex" status="Operational"
+ 650 bands="MVNO" brand="Jasper" cc="us" country="United States of America" operator="Jasper Technologies" status="Operational"
660 bands="GSM 1900" brand="T-Mobile" cc="us" country="United States of America" status="Not operational"
- 670 bands="" brand="Northstar" cc="us" country="United States of America" status="Operational"
+ 670 bands="" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status=""
680 bands="GSM 850 / GSM 1900" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
690 bands="GSM 1900" brand="Limitless Mobile" cc="us" country="United States of America" operator="Limitless Mobile, LLC" status="Operational"
+ 700 bands="GSM" brand="Bigfoot Cellular" cc="us" country="United States of America" operator="Cross Valiant Cellular Partnership" status=""
+ 710 bands="GSM 850" brand="ASTAC" cc="us" country="United States of America" operator="Arctic Slope Telephone Association Cooperative" status="Operational"
+ 720 bands="" cc="us" country="United States of America" operator="Syniverse Technologies" status=""
730 bands="" brand="U.S. Cellular" cc="us" country="United States of America" operator="U.S. Cellular" status=""
- 740 bands="" brand="Convey" cc="us" country="United States of America" operator="Convey Communications Inc." status="Operational"
+ 740 bands="" cc="us" country="United States of America" operator="Green Eagle Communications, Inc." status=""
750 bands="CDMA2000 850 / CDMA2000 1900" brand="Appalachian Wireless" cc="us" country="United States of America" operator="East Kentucky Network, LLC" status="Operational"
760 bands="" cc="us" country="United States of America" operator="Lynch 3G Communications Corporation" status="Not operational"
- 770 bands="GSM 1900" brand="i wireless" cc="us" country="United States of America" operator="Iowa Wireless Services" status="Operational"
- 780 bands="GSM 1900" cc="us" country="United States of America" operator="Airlink PCS" status="Not operational"
- 790 bands="GSM 1900" brand="PinPoint" cc="us" country="United States of America" operator="PinPoint Communications" status="Operational"
+ 770 bands="GSM 1900 / UMTS 1700 / LTE 1700 / LTE 1900" brand="iWireless" cc="us" country="United States of America" operator="Iowa Wireless Services" status="Operational"
+ 780 bands="iDEN" brand="Dispatch Direct" cc="us" country="United States of America" operator="D. D. Inc." status="Operational"
+ 790 bands="GSM 1900 / UMTS / LTE" brand="BLAZE" cc="us" country="United States of America" operator="PinPoint Communications Inc." status="Operational"
800 bands="GSM 1900" cc="us" country="United States of America" operator="T-Mobile" status="Not operational"
- 830 bands="GSM 850" brand="Caprock" cc="us" country="United States of America" operator="Caprock Cellular" status="Operational"
- 840 bands="GSM 1900" brand="telna Mobile" cc="us" country="United States of America" operator="Telecom North America Mobile, Inc." status="Operational"
- 850 bands="CDMA2000 850 / CDMA2000 1900 / GSM 850 / GSM 1900" brand="Aeris" cc="us" country="United States of America" operator="Aeris Communications, Inc." status="Operational"
+ 810 bands="1900" cc="us" country="United States of America" operator="LCFR LLC" status=""
+ 820 bands="" cc="us" country="United States of America" operator="Verizon Wireless" status=""
+ 830 bands="" cc="us" country="United States of America" operator="Clearwire Corporation" status=""
+ 840 bands="MVNO" brand="telna Mobile" cc="us" country="United States of America" operator="Telecom North America Mobile, Inc." status="Operational"
+ 850 bands="MVNO" brand="Aeris" cc="us" country="United States of America" operator="Aeris Communications, Inc." status="Operational"
860 bands="CDMA" brand="Five Star Wireless" cc="us" country="United States of America" operator="TX RSA 15B2, LP" status="Operational"
- 870 bands="GSM 850" brand="PACE" cc="us" country="United States of America" operator="Kaplan Telephone Company" status="Operational"
- 880 bands="GSM 850" brand="DTC Wireless" cc="us" country="United States of America" operator="Advantage Cellular Systems" status="Operational"
- 890 bands="GSM 850 / GSM 1900" brand="Unicel" cc="us" country="United States of America" operator="Rural Cellular Corporation" status="Operational"
+ 870 bands="MVNO" brand="PACE" cc="us" country="United States of America" operator="Kaplan Telephone Company" status="Operational"
+ 880 bands="GSM 850" brand="DTC Wireless" cc="us" country="United States of America" operator="Advantage Cellular Systems, Inc." status="Operational"
+ 890 bands="GSM 850 / GSM 1900" cc="us" country="United States of America" operator="Verizon Wireless" status=""
900 bands="CDMA2000 850 / CDMA2000 1900" brand="Mid-Rivers Wireless" cc="us" country="United States of America" operator="Cable & Communications Corporation" status="Operational"
- 910 bands="GSM 850" brand="First Cellular" cc="us" country="United States of America" operator="First Cellular of Southern Illinois" status="Operational"
+ 910 bands="GSM 850" cc="us" country="United States of America" operator="Verizon Wireless" status=""
+ 920 bands="CDMA" cc="us" country="United States of America" operator="James Valley Wireless, LLC" status="Operational"
930 bands="CDMA" cc="us" country="United States of America" operator="Copper Valley Wireless" status="Operational"
- 940 bands="" cc="us" country="United States of America" operator="Iris Wireless LLC" status="Operational"
- 950 bands="GSM 850" brand="XIT Wireless" cc="us" country="United States of America" operator="Texas RSA 1 dba XIT Cellular" status="Operational"
- 960 bands="CDMA / LTE 700" cc="us" country="United States of America" operator="Strata Networks" status="Operational"
- 970 bands="Satellite" brand="Telemedicine Wireless" cc="us" country="United States of America" operator="Telemedicine Wireless (USA) Telecommunications,Inc" status="Operational"
- 980 bands="CDMA / LTE 700" brand="Peoples Telephone Cooperative, Inc." cc="us" country="United States of America" operator="Texas RSA 7B3" status="Operational"
+ 940 bands="MVNO" cc="us" country="United States of America" operator="Iris Wireless LLC" status=""
+ 950 bands="GSM 850" brand="AT&T" cc="us" country="United States of America" operator="AT&T Mobility" status="Operational"
+ 960 bands="CDMA / LTE 700" brand="STRATA" cc="us" country="United States of America" operator="UBET Wireless" status="Operational"
+ 970 bands="Satellite" cc="us" country="United States of America" operator="Globalstar" status="Operational"
+ 980 bands="CDMA / LTE 700" brand="Peoples Telephone" cc="us" country="United States of America" operator="Texas RSA 7B3" status="Not operational"
990 bands="LTE 700" brand="Evolve Broadband" cc="us" country="United States of America" operator="Worldcall Interconnect Inc." status="Operational"
000-999
311
@@ -972,7 +992,7 @@
090 bands="GSM 1900" brand="Long Lines Wireless" cc="us" country="United States of America" operator="Long Lines Wireless LLC" status="Operational"
100 bands="GSM 1900" cc="us" country="United States of America" operator="High Plains Wireless" status="Operational"
110 bands="GSM 1900" cc="us" country="United States of America" operator="High Plains Wireless" status="Operational"
- 120 bands="" cc="us" country="United States of America" operator="Choice Phone" status="Operational"
+ 120 bands="" brand="iConnect" cc="us" country="United States of America" operator="Wave Runner LLC" status="Operational"
130 bands="GSM 850" cc="us" country="United States of America" operator="Cell One Amarillo" status="Operational"
140 bands="CDMA" brand="Sprocket Wireless" cc="us" country="United States of America" operator="Cross Telephone / MBO Wireless" status="Operational"
150 bands="GSM 850" cc="us" country="United States of America" operator="Wilkes Cellular" status="Operational"
@@ -983,7 +1003,7 @@
210 bands="GSM 1900 / UMTS 2100" cc="us" country="United States of America" operator="Emery Telcom Wireless" status="Operational"
220 bands="CDMA" brand="U.S. Cellular" cc="us" country="United States of America" operator="U.S. Cellular" status="Operational"
230 bands="CDMA 850 / CDMA 1900 / LTE 1900 / LTE 1700" brand="C Spire Wireless" cc="us" country="United States of America" operator="Cellular South Inc." status="Operational"
- 250 bands="iDEN / GSM 1900 / LTE 700" brand="iConnect" cc="gu" country="Guam (United States of America)" operator="Wave Runner LLC / Choice Phone LLC" status="Operational"
+ 250 bands="" brand="iConnect" cc="us" country="United States of America" operator="Wave Runner LLC" status="Operational"
330 bands="" brand="Bug Tussel Wireless" cc="us" country="United States of America" operator="Bug Tussel Wireless" status="Operational"
360 bands="UMTS 1700" cc="us" country="United States of America" operator="Stelera Wireless" status="Not operational"
370 bands="LTE 1700" brand="GCI Wireless" cc="us" country="United States of America" operator="General Communication Inc." status="Operational"
@@ -994,7 +1014,7 @@
481 cc="us" country="United States of America"
490 bands="LTE 850 / LTE 1900 / TD-LTE 2500" brand="Sprint Corporation" cc="us" country="United States of America" operator="Sprint" status="Operational"
500 bands="UMTS / LTE 700 / LTE 1700" cc="us" country="United States of America" operator="Mosaic Telecom" status="Operational"
- 530 bands="" cc="us" country="United States of America" operator="Newcore Wireless" status="Operational"
+ 530 bands="GSM 1900" brand="NewCore" cc="us" country="United States of America" operator="NewCore Wireless LLC" status="Operational"
570 bands="UMTS 1700 / LTE 1700" cc="us" country="United States of America" operator="BendBroadband" status="Not operational"
580 bands="LTE 700 / LTE 850" brand="U.S. Cellular" cc="us" country="United States of America" operator="U.S. Cellular" status="Operational"
630 bands="" brand="C Spire Wireless" cc="us" country="United States of America" operator="Cellular South Inc." status=""
@@ -1002,6 +1022,7 @@
650 bands="CDMA / LTE 700 / WiMAX 3700" brand="United Wireless" cc="us" country="United States of America" operator="United Wireless" status="Operational"
660 bands="CDMA2000 1900 / CDMA 2000 1700 / LTE 1700" brand="metroPCS" cc="us" country="United States of America" operator="metroPCS" status="Operational"
750 bands="LTE" cc="us" country="United States of America" operator="NetAmerica Alliance" status="Operational"
+ 790 bands="" cc="us" country="United States of America" operator="Coleman County Telephone Cooperative, Inc." status=""
810 bands="CDMA / LTE 700" brand="Bluegrass Wireless" cc="us" country="United States of America" operator="Bluegrass Wireless" status="Operational"
830 bands="LTE 700" cc="us" country="United States of America" operator="Thumb Cellular LP" status="Operational"
870 bands="MVNO" brand="Boost" cc="us" country="United States of America" operator="Boost Mobile" status="Operational"
@@ -1023,6 +1044,7 @@
130 bands="LTE 700" brand="Appalachian Wireless" cc="us" country="United States of America" operator="East Kentucky Network, LLC" status="Operational"
180 bands="" cc="us" country="United States of America" operator="Limiteless Mobile LLC" status=""
220 bands="LTE 700" cc="us" country="United States of America" operator="Chariton Valley Telephone" status="Operational"
+ 260 bands="LTE 1900" brand="NewCore" cc="us" country="United States of America" operator="Central LTE Holdings" status="Operational"
270 bands="LTE 700" brand="Pioneer Cellular" cc="us" country="United States of America" operator="Cellular Network Partnership" status="Operational"
280 bands="LTE 700" brand="Pioneer Cellular" cc="us" country="United States of America" operator="Cellular Network Partnership" status="Operational"
330 bands="LTE 700" brand="Nemont" cc="us" country="United States of America" operator="Sagebrush Cellular" status="Operational"
@@ -1072,8 +1094,8 @@
020 bands="" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable & Wireless)" status="Not operational"
050 bands="GSM 900 / GSM 1800 / GSM 1900" brand="Digicel" cc="tc" country="Turks and Caicos Islands" operator="Digicel (Turks & Caicos) Limited" status="Operational"
070 bands="GSM / UMTS / CDMA" brand="Claro" cc="jm" country="Jamaica" operator="Oceanic Digital Jamaica Limited" status="Not operational"
- 110 bands="" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable & Wireless)" status="Operational"
- 180 bands="GSM 850 / GSM 1900 / UMTS 850" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable & Wireless)" status="Operational"
+ 110 bands="" brand="FLOW" cc="jm" country="Jamaica" operator="Cable & Wireless Communications" status="Operational"
+ 180 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="FLOW" cc="jm" country="Jamaica" operator="Cable & Wireless Communications" status="Operational"
000-999
340
01 bands="GSM 900 / UMTS 2100" brand="Orange" country="French Antilles (France) - BL/GF/GP/MF/MQ" operator="Orange Caraïbe Mobiles" status="Operational"
@@ -1320,7 +1342,7 @@
043 bands="CDMA 2000 / GSM 1800 / UMTS 2100" brand="TATA DOCOMO" cc="in" country="India" operator="Rajasthan" status="Operational"
044 bands="CDMA 2000 / GSM 1800" brand="TATA DOCOMO" cc="in" country="India" operator="Tamil Nadu including Chennai" status="Operational"
045 bands="CDMA 2000 / GSM 1800" brand="TATA DOCOMO" cc="in" country="India" operator="Uttar Pradesh (E)" status="Operational"
- 046 bands="CDMA 2000 / GSM 1800 / UMTS 2100" brand="TATA DOCOMO" cc="in" country="India" operator="Uttar Pradesh (W) & Uttarkhand" status="Operational"
+ 046 bands="CDMA 2000 / GSM 1800 / UMTS 2100" brand="TATA DOCOMO" cc="in" country="India" operator="Uttar Pradesh (W) & Uttarakhand" status="Operational"
047 bands="CDMA 2000 / GSM 1800" brand="TATA DOCOMO" cc="in" country="India" operator="West Bengal" status="Operational"
05 bands="GSM 1800" brand="Reliance" cc="in" country="India" operator="Delhi & NCR" status="Operational"
06 bands="GSM 1800" brand="Reliance" cc="in" country="India" operator="Gujarat" status="Operational"
@@ -1389,7 +1411,7 @@
851 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="Punjab" status="Operational"
852 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="Tamil Nadu" status="Operational"
853 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="West Bengal" status="Operational"
- 854 bands="" brand="Jio" cc="in" country="India" operator="Andra Pradesh" status="Reserved"
+ 854 bands="" brand="Jio" cc="in" country="India" operator="Andhra Pradesh" status="Reserved"
855 bands="" brand="Jio" cc="in" country="India" operator="Assam" status="Reserved"
856 bands="" brand="Jio" cc="in" country="India" operator="Bihar" status="Reserved"
857 bands="" brand="Jio" cc="in" country="India" operator="Gujarat" status="Reserved"
@@ -1451,13 +1473,14 @@
08 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Hutch" cc="lk" country="Sri Lanka" operator="Hutchison Telecommunications Lanka (Pvt) Ltd" status="Operational"
00-99
414
- 01 bands="GSM 900 / UMTS 2100" brand="MPT" cc="mm" country="Myanmar" operator="Myanmar Post and Telecommunication" status="Operational"
+ 01 bands="GSM 900 / UMTS 2100" brand="MPT" cc="mm" country="Myanmar" operator="Myanmar Posts and Telecommunications" status="Operational"
+ 03 bands="CDMA 800" brand="CDMA800" cc="mm" country="Myanmar" operator="Myanmar Economic Corporation" status="Operational"
05 bands="UMTS 900 / UMTS 2100" brand="Ooredoo" cc="mm" country="Myanmar" operator="Ooredoo Myanmar" status="Operational"
06 bands="GSM 900 / UMTS 2100" brand="Telenor Myanmar" cc="mm" country="Myanmar" operator="Telenor Myanmar (Comcel Myanmar)" status="Operational"
00-99
415
01 bands="GSM 900 / UMTS 2100 / LTE 1800" brand="Alfa" cc="lb" country="Lebanon" operator="MIC 1" status="Operational"
- 03 bands="GSM 900 / UMTS 2100 / LTE 1800" brand="mtc touch" cc="lb" country="Lebanon" operator="MIC 2" status="Operational"
+ 03 bands="GSM 900 / UMTS 2100 / LTE 1800" brand="touch" cc="lb" country="Lebanon" operator="MIC 2" status="Operational"
05 bands="GSM 900" brand="Ogero Mobile" cc="lb" country="Lebanon" operator="Ogero Telecom" status="Operational"
00-99
416
@@ -1472,6 +1495,7 @@
09 bands="" cc="sy" country="Syria" operator="Syrian Telecom" status=""
00-99
418
+ 00 bands="GSM 900" brand="Asia Cell" cc="iq" country="Iraq" operator="Asia Cell Telecommunications Company" status="Operational"
05 bands="GSM 900" brand="Asia Cell" cc="iq" country="Iraq" operator="Asia Cell Telecommunications Company" status="Operational"
08 bands="GSM 900" brand="SanaTel" cc="iq" country="Iraq" status="Operational"
20 bands="GSM 900 / GSM 1800" brand="Zain" cc="iq" country="Iraq" operator="Zain Iraq" status="Operational"
@@ -1509,13 +1533,13 @@
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="du" cc="ae" country="United Arab Emirates" operator="Emirates Integrated Telecommunications Company" status="Operational"
00-99
425
- 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Orange" cc="il" country="Israel" operator="Partner Communications Company Ltd." status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Partner" cc="il" country="Israel" operator="Partner Communications Company Ltd." status="Operational"
02 bands="GSM 1800 / UMTS 850 / UMTS 2100 / LTE 1800" brand="Cellcom" cc="il" country="Israel" operator="Cellcom Israel Ltd." status="Operational"
03 bands="CDMA 800 / UMTS 850 / UMTS 2100 / LTE 1800" brand="Pelephone" cc="il" country="Israel" operator="Pelephone Communications Ltd." status="Operational"
... 814 lines suppressed ...
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-stdnum.git
More information about the Python-modules-commits
mailing list