summaryrefslogtreecommitdiff
path: root/libgammu
diff options
context:
space:
mode:
Diffstat (limited to 'libgammu')
-rw-r--r--libgammu/misc/coding/coding.c3
-rw-r--r--libgammu/phone/at/atgen.c3
-rw-r--r--libgammu/protocol/at/at.c3
-rw-r--r--libgammu/service/gsmmisc.c12
-rw-r--r--libgammu/service/gsmnet.c1088
5 files changed, 675 insertions, 434 deletions
diff --git a/libgammu/misc/coding/coding.c b/libgammu/misc/coding/coding.c
index d78effd..aa033a0 100644
--- a/libgammu/misc/coding/coding.c
+++ b/libgammu/misc/coding/coding.c
@@ -1174,6 +1174,9 @@ int GSM_PackSemiOctetNumber(const unsigned char *Number, unsigned char *Output,
if (buffer[0] == '+') {
format = NUMBER_INTERNATIONAL_NUMBERING_PLAN_ISDN;
skip = 1;
+ } else if (buffer[0] == '0' && buffer[1] == '0' && buffer[2] == '0') {
+ /* Most likely local provider number */
+ format = NUMBER_UNKNOWN_NUMBERING_PLAN_ISDN;
} else if (buffer[0] == '0' && buffer[1] == '0') {
format = NUMBER_INTERNATIONAL_NUMBERING_PLAN_ISDN;
skip = 2;
diff --git a/libgammu/phone/at/atgen.c b/libgammu/phone/at/atgen.c
index becd18e..f783e65 100644
--- a/libgammu/phone/at/atgen.c
+++ b/libgammu/phone/at/atgen.c
@@ -2225,6 +2225,8 @@ GSM_Error ATGEN_Initialise(GSM_StateMachine *s)
}
if (error != ERR_NONE) {
smprintf(s, "Phone does not support enabled echo, it can not work with Gammu!\n");
+ smprintf(s, "It might be caused by other program using the modem.\n");
+ smprintf(s, "See <https://wammu.eu/docs/manual/faq/general.html#echo> for help.\n");
return error;
}
@@ -6227,6 +6229,7 @@ GSM_Reply_Function ATGENReplyFunctions[] = {
{ATGEN_GenericReplyIgnore, "^SIMST:" ,0x00,0x00,ID_IncomingFrame },
{ATGEN_GenericReplyIgnore, "^STIN:" ,0x00,0x00,ID_IncomingFrame },
{ATGEN_GenericReplyIgnore, "+ZUSIMR:" ,0x00,0x00,ID_IncomingFrame },
+{ATGEN_GenericReplyIgnore, "+SPNWNAME:" ,0x00,0x00,ID_IncomingFrame },
{ATGEN_GenericReplyIgnore, "+ZEND" ,0x00,0x00,ID_IncomingFrame },
{ATGEN_GenericReplyIgnore, "+CDSI:" ,0x00,0x00,ID_IncomingFrame },
{ATGEN_GenericReplyIgnore, "+CLCC:" ,0x00,0x00,ID_IncomingFrame },
diff --git a/libgammu/protocol/at/at.c b/libgammu/protocol/at/at.c
index a0713a7..44b6176 100644
--- a/libgammu/protocol/at/at.c
+++ b/libgammu/protocol/at/at.c
@@ -138,6 +138,9 @@ GSM_Error AT_StateMachine(GSM_StateMachine *s, unsigned char rx_char)
{"^SIMST:" ,1, ID_All}, /* ^SIMST:1 */
{"^STIN:" ,1, ID_All}, /* ^STIN: 7, 0, 0 */
+ /* D-Link */
+ {"+SPNWNAME:" ,1, ID_All}, /* +SPNWNAME: "432", "11", "Mci", "Mci" */
+
/* ONDA */
{"+ZUSIMR:" ,1, ID_All}, /* +ZUSIMR:2 */
diff --git a/libgammu/service/gsmmisc.c b/libgammu/service/gsmmisc.c
index 248c8ad..a255493 100644
--- a/libgammu/service/gsmmisc.c
+++ b/libgammu/service/gsmmisc.c
@@ -341,10 +341,16 @@ gboolean ReadVCALDate(char *Buffer, const char *Start, GSM_DateTime *Date, gbool
fullstart[0] = 0;
strcat(fullstart, Start);
strcat(fullstart, ";VALUE=DATE");
- if (!ReadVCALText(Buffer, fullstart, datestring, FALSE, NULL)) {
- return FALSE;
+ if (ReadVCALText(Buffer, fullstart, datestring, FALSE, NULL)) {
+ *is_date_only = TRUE;
+ } else {
+ fullstart[0] = 0;
+ strcat(fullstart, Start);
+ strcat(fullstart, ";VALUE=DATE-TIME");
+ if (! ReadVCALText(Buffer, fullstart, datestring, FALSE, NULL)) {
+ return FALSE;
+ }
}
- *is_date_only = TRUE;
}
if (ReadVCALDateTime(DecodeUnicodeString(datestring), Date)) {
diff --git a/libgammu/service/gsmnet.c b/libgammu/service/gsmnet.c
index 4f403ce..9d7b663 100644
--- a/libgammu/service/gsmnet.c
+++ b/libgammu/service/gsmnet.c
@@ -71,6 +71,7 @@ const GSM_CodeName GSM_Countries[] = {
{"308", "Saint Pierre and Miquelon"},
{"310", "Bermuda"},
{"310", "Guam"},
+ {"310", "Northern Mariana Islands"},
{"310", "United States of America"},
{"311", "Guam"},
{"311", "United States of America"},
@@ -161,6 +162,7 @@ const GSM_CodeName GSM_Countries[] = {
{"540", "Solomon Islands"},
{"541", "Vanuatu"},
{"542", "Fiji"},
+ {"543", "Wallis and Futuna"},
{"544", "American Samoa"},
{"545", "Kiribati"},
{"546", "New Caledonia"},
@@ -216,7 +218,7 @@ const GSM_CodeName GSM_Countries[] = {
{"643", "Mozambique"},
{"645", "Zambia"},
{"646", "Madagascar"},
- {"647", "Reunion"},
+ {"647", "French Guiana"},
{"648", "Zimbabwe"},
{"649", "Namibia"},
{"650", "Malawi"},
@@ -226,6 +228,7 @@ const GSM_CodeName GSM_Countries[] = {
{"654", "Comoros"},
{"655", "South Africa"},
{"657", "Eritrea"},
+ {"658", "Saint Helena, Ascension and Tristan da Cunha"},
{"659", "South Sudan"},
{"702", "Belize"},
{"704", "Guatemala"},
@@ -249,6 +252,7 @@ const GSM_CodeName GSM_Countries[] = {
{"748", "Uruguay"},
{"750", "Falkland Islands"},
{"901", "International operators"},
+ {"995", "British Indian Ocean Territory"},
{"999", "Dummy"},
@@ -261,18 +265,24 @@ const GSM_CodeName GSM_Networks[] = {
{"202 01", "Cosmote"},
{"202 02", "Cosmote"},
{"202 03", "OTE"},
- {"202 04", "EDISY"},
+ {"202 04", "OTE"},
{"202 05", "Vodafone"},
{"202 06", "Cosmoline"},
{"202 07", "AMD Telecom"},
{"202 09", "Wind"},
{"202 10", "Wind"},
- {"204 01", "RadioAccess Network Services BV"},
+ {"202 11", "interConnect"},
+ {"202 12", "Yuboto"},
+ {"202 13", "Compatel Limited"},
+ {"202 14", "Cyta Hellas"},
+ {"202 15", "BWS"},
+ {"202 16", "Inter Telecom"},
+ {"204 01", "RadioAccess Network Services"},
{"204 02", "Tele2"},
{"204 03", "Voiceworks"},
{"204 04", "Vodafone"},
{"204 05", "Elephant Talk Communications Premium Rate Services"},
- {"204 06", "Vectone Mobile / Delight Mobile"},
+ {"204 06", "Vectone Mobile"},
{"204 07", "Teleena (MVNE)"},
{"204 08", "KPN"},
{"204 09", "Lycamobile"},
@@ -284,7 +294,7 @@ const GSM_CodeName GSM_Networks[] = {
{"204 15", "Ziggo"},
{"204 16", "T-Mobile (BEN)"},
{"204 17", "Intercity Zakelijk"},
- {"204 18", "UPC Nederland B.V."},
+ {"204 18", "upc"},
{"204 19", "Mixe Communication Solutions B.V."},
{"204 20", "T-Mobile"},
{"204 21", "ProRail B.V."},
@@ -302,19 +312,20 @@ const GSM_CodeName GSM_Networks[] = {
{"204 64", "Zetacom B.V."},
{"204 65", "AGMS Netherlands B.V."},
{"204 66", "Utility Connect B.V."},
- {"204 67", "RadioAccess B.V."},
+ {"204 67", "Koning en Hartman B.V."},
{"204 68", "Roamware (Netherlands) B.V."},
{"204 69", "KPN Mobile The Netherlands B.V."},
+ {"206 00", "Proximus"},
{"206 01", "Proximus"},
{"206 02", "N.M.B.S."},
{"206 05", "Telenet"},
{"206 06", "Lycamobile"},
{"206 07", "Vectone Mobile"},
{"206 09", "Voxbone"},
- {"206 10", "Mobistar"},
+ {"206 10", "Orange"},
{"206 15", "Elephant Talk Communications Schweiz GmbH"},
{"206 20", "BASE"},
- {"206 40", "JOIN Experience (Belgium)"},
+ {"206 40", "JOIN"},
{"208 01", "Orange"},
{"208 02", "Orange"},
{"208 03", "MobiquiThings"},
@@ -346,7 +357,7 @@ const GSM_CodeName GSM_Networks[] = {
{"208 30", "Symacom"},
{"208 31", "Vectone Mobile"},
{"208 88", "Bouygues"},
- {"208 89", "Omer Telecom Ltd"},
+ {"208 89", "Fondation b-com"},
{"208 90", "Images & Reseaux"},
{"208 91", "Orange S.A."},
{"208 92", "Com4Innov"},
@@ -359,9 +370,9 @@ const GSM_CodeName GSM_Networks[] = {
{"214 01", "Vodafone"},
{"214 03", "Orange"},
{"214 04", "Yoigo"},
- {"214 05", "TME"},
+ {"214 05", "Movistar"},
{"214 06", "Vodafone"},
- {"214 07", "movistar"},
+ {"214 07", "Movistar"},
{"214 08", "Euskaltel"},
{"214 09", "Orange"},
{"214 10", "Operadora de Telecomunicaciones Opera SL"},
@@ -387,12 +398,17 @@ const GSM_CodeName GSM_Networks[] = {
{"214 30", "Compatel Limited"},
{"214 31", "Red Digital De Telecomunicaciones de las Islas Baleares, S.L."},
{"214 32", "Tuenti"},
+ {"214 33", "EURONA WIRELESS TELECOM, S.A."},
+ {"214 34", "Aire Networks del Mediterraneo, S.L.U."},
+ {"214 35", "INGENIUM OUTSOURCING SERVICES, S.L."},
+ {"214 36", "OPEN CABLE TELECOMUNICACIONES, S.L."},
{"214 51", "ADIF"},
- {"216 01", "Telenor"},
+ {"216 01", "Telenor Hungary"},
{"216 02", "MVM Net Ltd."},
+ {"216 03", "DIGI"},
{"216 30", "T-Mobile"},
{"216 70", "Vodafone"},
- {"216 71", "UPC Hungary"},
+ {"216 71", "upc"},
{"216 99", "MAV GSM-R"},
{"218 03", "HT-ERONET"},
{"218 05", "m:tel"},
@@ -407,17 +423,20 @@ const GSM_CodeName GSM_Networks[] = {
{"220 04", "T-Mobile"},
{"220 05", "VIP"},
{"220 07", "Orion Telekom"},
+ {"220 09", "Vectone Mobile"},
+ {"220 11", "GLOBALTEL d.o.o."},
{"222 01", "TIM"},
{"222 02", "Elsacom"},
{"222 04", "Intermatica"},
{"222 05", "Telespazio"},
{"222 06", "Vodafone"},
{"222 07", "Noverca"},
+ {"222 08", "Fastweb"},
{"222 10", "Vodafone"},
{"222 30", "RFI"},
{"222 33", "Poste Mobile"},
{"222 34", "BT Italia"},
- {"222 35", "Lyca Italy"},
+ {"222 35", "Lycamobile"},
{"222 36", "Digi Mobil"},
{"222 37", "3 Italia"},
{"222 38", "LINKEM"},
@@ -426,7 +445,7 @@ const GSM_CodeName GSM_Networks[] = {
{"222 48", "TIM"},
{"222 77", "IPSE 2000"},
{"222 88", "Wind"},
- {"222 98", "BLU s.p.a"},
+ {"222 98", "BLU"},
{"222 99", "3 Italia"},
{"226 01", "Vodafone"},
{"226 02", "Clicknet Mobile"},
@@ -450,10 +469,13 @@ const GSM_CodeName GSM_Networks[] = {
{"228 50", "3G Mobile AG"},
{"228 51", "BebbiCell AG"},
{"228 52", "Barablu"},
- {"228 53", "UPC Cablecom GmbH"},
- {"228 54", "Lycamobile AG"},
+ {"228 53", "upc cablecom"},
+ {"228 54", "Lycamobile"},
{"228 55", "WeMobile SA"},
{"228 56", "SMSRelay AG"},
+ {"228 57", "Mitto AG"},
+ {"228 58", "beeone"},
+ {"228 60", "Sunrise"},
{"228 99", "Swisscom"},
{"230 01", "T-Mobile"},
{"230 02", "O2"},
@@ -463,6 +485,7 @@ const GSM_CodeName GSM_Networks[] = {
{"230 06", "OSNO TELECOMUNICATION, s.r.o."},
{"230 07", "ASTELNET, s.r.o."},
{"230 08", "Compatel s.r.o."},
+ {"230 09", "Vectone Mobile"},
{"230 98", "Sprava zeleznicni dopravni cesty, s.o."},
{"230 99", "Vodafone"},
{"231 01", "Orange"},
@@ -476,15 +499,15 @@ const GSM_CodeName GSM_Networks[] = {
{"232 02", "A1 Telekom Austria"},
{"232 03", "T-Mobile AT"},
{"232 04", "T-Mobile AT"},
- {"232 05", "Orange AT"},
+ {"232 05", "3"},
{"232 06", "Orange AT"},
{"232 07", "tele.ring"},
{"232 08", "Lycamobile"},
{"232 09", "Tele2Mobil"},
- {"232 10", "3AT"},
+ {"232 10", "3"},
{"232 11", "bob"},
{"232 12", "yesss!"},
- {"232 13", "UPC Mobile"},
+ {"232 13", "upc"},
{"232 14", "Hutchison Drei Austria"},
{"232 15", "Vectone Mobile"},
{"232 16", "Hutchison Drei Austria"},
@@ -493,18 +516,16 @@ const GSM_CodeName GSM_Networks[] = {
{"232 19", "Tele2 Telecommunication GmbH"},
{"232 20", "MTEL Austrija GmbH"},
{"232 91", "GSM-R A"},
- {"232 92", "ArgoNET GmbH"},
+ {"232 92", "ArgoNET"},
{"234 00", "BT"},
{"234 01", "Vectone Mobile"},
{"234 02", "O2 (UK)"},
- {"234 03", "Airtel Vodafone"},
- {"234 03", "Airtel-Vodafone"},
{"234 03", "Airtel-Vodafone"},
{"234 04", "FMS Solutions Ltd"},
{"234 05", "COLT Mobile Telecommunications Limited"},
{"234 06", "Internet Computer Bureau Limited"},
- {"234 07", "Cable & Wireless Worldwide"},
- {"234 08", "OnePhone (UK) Ltd"},
+ {"234 07", "Vodafone"},
+ {"234 08", "BT OnePhone (UK) Ltd"},
{"234 09", "Tismi BV"},
{"234 10", "O2 (UK)"},
{"234 11", "O2 (UK)"},
@@ -529,38 +550,39 @@ const GSM_CodeName GSM_Networks[] = {
{"234 28", "Marathon Telecom Limited"},
{"234 29", "aql"},
{"234 30", "T-Mobile UK"},
- {"234 31", "Virgin Mobile UK"},
- {"234 32", "Virgin Mobile UK"},
- {"234 33", "Orange (UK)"},
- {"234 34", "Orange (UK)"},
+ {"234 31", "T-Mobile UK"},
+ {"234 32", "T-Mobile UK"},
+ {"234 33", "Orange"},
+ {"234 34", "Orange"},
{"234 35", "JSC Ingenium (UK) Limited"},
{"234 36", "Sure Mobile"},
- {"234 36", "Sure Mobile"},
{"234 37", "Synectiv Ltd"},
- {"234 38", "Virgin Mobile UK"},
- {"234 39", "SSE Energy Supply Limited"},
+ {"234 38", "Virgin Mobile"},
+ {"234 39", "Gamma Telecom Holdings Ltd."},
{"234 50", "JT"},
{"234 50", "JT"},
{"234 50", "JT"},
- {"234 51", "UK Broadband"},
+ {"234 51", "Relish"},
{"234 52", "Shyam Telecom UK Ltd"},
{"234 53", "Limitless Mobile Ltd"},
{"234 54", "The Carphone Warehouse Limited"},
{"234 55", "Sure Mobile"},
{"234 55", "Sure Mobile"},
- {"234 55", "Sure Mobile"},
- {"234 58", "Pronto GSM"},
+ {"234 56", "CESG"},
+ {"234 57", "Sky UK Limited"},
{"234 58", "Pronto GSM"},
+ {"234 59", "Limitless Mobile Ltd"},
+ {"234 70", "AMSUK Ltd."},
{"234 76", "BT"},
{"234 78", "Airwave"},
{"234 86", "EE"},
- {"235 00", "Mundio Mobile Limited"},
+ {"235 00", "Vectone Mobile"},
{"235 01", "EE"},
{"235 02", "EE"},
- {"235 03", "UK Broadband"},
+ {"235 03", "Relish"},
{"235 77", "BT"},
{"235 91", "Vodafone United Kingdom"},
- {"235 92", "Cable & Wireless UK"},
+ {"235 92", "Vodafone United Kingdom"},
{"235 94", "Hutchison 3G UK Ltd"},
{"235 95", "Network Rail Infrastructure Limited"},
{"238 01", "TDC"},
@@ -576,13 +598,17 @@ const GSM_CodeName GSM_Networks[] = {
{"238 11", "SINE"},
{"238 12", "Lycamobile"},
{"238 13", "Compatel Limited"},
+ {"238 14", "Monty UK Global Limited"},
{"238 15", "Ice Danmark ApS"},
{"238 16", "Tismi B.V."},
+ {"238 17", "Naka AG"},
+ {"238 18", "Cubic Telecom"},
{"238 20", "Telia"},
{"238 23", "GSM-R DK"},
{"238 28", "CoolTEL ApS"},
{"238 30", "Interactive digital media GmbH"},
{"238 40", "Ericsson Danmark A/S"},
+ {"238 42", "Brandtel ApS"},
{"238 43", "MobiWeb Limited"},
{"238 66", "TT-Netvaerket P/S"},
{"238 77", "Telenor"},
@@ -594,25 +620,25 @@ const GSM_CodeName GSM_Networks[] = {
{"240 06", "Telenor"},
{"240 07", "Tele2"},
{"240 08", "Telenor"},
- {"240 09", "djuice"},
+ {"240 09", "Com4"},
{"240 10", "Spring Mobil"},
- {"240 11", "Lindholmen Science Park AB"},
+ {"240 11", "ComHem AB"},
{"240 12", "Lycamobile"},
{"240 13", "Alltele Foretag Sverige AB"},
- {"240 14", "TDC Sverige AB"},
+ {"240 14", "Tele2 Business AB"},
{"240 15", "Wireless Maingate Nordic AB"},
{"240 16", "42 Telecom AB"},
{"240 17", "Gotanet"},
{"240 18", "Generic Mobile Systems Sweden AB"},
- {"240 19", "Vectone Mobile / Delight Mobile"},
+ {"240 19", "Vectone Mobile"},
{"240 20", "Wireless Maingate Messaging Services AB"},
{"240 21", "MobiSir"},
{"240 22", "EuTel AB"},
- {"240 23", "Infobip Limited"},
+ {"240 23", "Infobip Limited (UK)"},
{"240 24", "Sweden 2G"},
- {"240 25", "Digitel Mobile Srl"},
+ {"240 25", "Monty UK Global Ltd"},
{"240 26", "Beepsend AB"},
- {"240 27", "Fogg Mobile AB"},
+ {"240 27", "GlobeTouch AB"},
{"240 28", "CoolTEL Aps"},
{"240 29", "Mercury International Carrier Services"},
{"240 30", "NextGen Mobile Ltd."},
@@ -631,54 +657,67 @@ const GSM_CodeName GSM_Networks[] = {
{"240 43", "MobiWeb Ltd."},
{"240 44", "Limitless Mobile AB"},
{"240 45", "Spirius AB"},
+ {"240 60", "Telefonaktiebolaget LM Ericsson"},
{"242 01", "Telenor"},
- {"242 02", "NetCom"},
- {"242 03", "Teletopia"},
+ {"242 02", "Telia"},
+ {"242 03", "Televerket AS"},
{"242 04", "Tele2"},
- {"242 05", "Network Norway"},
+ {"242 05", "Telia"},
{"242 06", "ICE"},
{"242 07", "Phonero"},
{"242 08", "TDC"},
{"242 09", "Com4"},
- {"242 10", "Nasjonal kommunikasjonsmyndighet"},
+ {"242 10", "Norwegian Communications Authority"},
{"242 11", "SystemNet"},
{"242 12", "Telenor"},
- {"242 14", "ICE Communication Norge AS"},
+ {"242 14", "ICE"},
{"242 20", "Jernbaneverket AS"},
{"242 21", "Jernbaneverket AS"},
- {"242 23", "Lyca"},
+ {"242 22", "Network Norway AS"},
+ {"242 23", "Lycamobile"},
{"242 24", "Mobile Norway AS"},
{"242 25", "Forsvarets kompetansesenter KKIS"},
+ {"242 99", "TampNet AS"},
{"244 03", "DNA"},
- {"244 04", "AINA"},
+ {"244 04", "DNA"},
{"244 05", "Elisa"},
+ {"244 06", "Elisa"},
{"244 07", "Nokia"},
{"244 08", "Nokia"},
{"244 09", "Nokia Solutions and Networks Oy"},
{"244 10", "Viestintavirasto"},
- {"244 11", "Vectone Mobile"},
+ {"244 11", "Viestintavirasto"},
{"244 12", "DNA"},
{"244 13", "DNA"},
{"244 14", "Alcom"},
{"244 15", "SAMK"},
{"244 16", "Tele2"},
- {"244 17", "RHK"},
- {"244 21", "Elisa-Saunalahti"},
+ {"244 17", "Liikennevirasto"},
+ {"244 21", "Elisa- Saunalahti"},
+ {"244 22", "EXFO Oy"},
+ {"244 23", "EXFO Oy"},
+ {"244 24", "TTY-saatio"},
{"244 25", "Datame"},
{"244 26", "Compatel"},
- {"244 27", "VTT Technical Research Centre of Finland"},
+ {"244 27", "Teknologian tutkimuskeskus VTT Oy"},
{"244 29", "SCNL Truphone"},
{"244 30", "Vectone Mobile"},
{"244 31", "Kuiri"},
{"244 32", "Voxbone"},
{"244 33", "VIRVE"},
- {"244 34", "Elektrobit Wireless"},
+ {"244 34", "Bittium Wireless"},
{"244 35", "Ukko Mobile"},
- {"244 36", "Sonera"},
+ {"244 36", "Sonera / DNA"},
+ {"244 37", "Tismi"},
+ {"244 38", "Nokia Solutions and Networks Oy"},
+ {"244 39", "Nokia Solutions and Networks Oy"},
+ {"244 40", "Nokia Solutions and Networks Oy"},
+ {"244 41", "Nokia Solutions and Networks Oy"},
{"244 91", "Sonera"},
+ {"244 92", "Sonera"},
{"246 01", "Omnitel"},
{"246 02", "BITE"},
- {"246 03", "Tele 2"},
+ {"246 03", "Tele2"},
{"246 04", "LR vidaus reikalu ministerija (Ministry of the Interior)"},
{"246 05", "LitRail"},
{"246 06", "Mediafon"},
@@ -693,15 +732,16 @@ const GSM_CodeName GSM_Networks[] = {
{"247 07", "MTS"},
{"247 08", "IZZI"},
{"247 09", "Camel Mobile"},
- {"248 01", "EMT"},
+ {"248 01", "Telia"},
{"248 02", "Elisa"},
- {"248 03", "Tele 2"},
- {"248 04", "OY Top Connect"},
+ {"248 03", "Tele2"},
+ {"248 04", "Top Connect"},
{"248 05", "AS Bravocom Mobiil"},
{"248 06", "Progroup Holding"},
- {"248 07", "Televorgu AS"},
+ {"248 07", "Kou"},
{"248 08", "VIVEX"},
{"248 09", "Bravo Telecom"},
+ {"248 10", "Telcotrade OU"},
{"248 71", "Siseministeerium (Ministry of Interior)"},
{"250 01", "MTS"},
{"250 02", "MegaFon"},
@@ -727,23 +767,26 @@ const GSM_CodeName GSM_Networks[] = {
{"250 23", "Mobicom - Novosibirsk"},
{"250 28", "Beeline"},
{"250 32", "Win Mobile"},
+ {"250 33", "Sevmobile"},
+ {"250 34", "Krymtelekom"},
{"250 35", "MOTIV"},
{"250 38", "Tambov GSM"},
{"250 39", "Rostelecom"},
{"250 44", "Stavtelesot / North Caucasian GSM"},
{"250 50", "MTS"},
{"250 54", "TTK"},
+ {"250 60", "Volna mobile"},
{"250 811", "Votek Mobile"},
{"250 91", "Sonic Duo"},
{"250 92", "Primtelefon"},
{"250 93", "Telecom XXI"},
{"250 99", "Beeline"},
- {"255 01", "MTS"},
+ {"255 01", "Vodafone"},
{"255 02", "Beeline"},
{"255 03", "Kyivstar"},
{"255 04", "IT"},
{"255 05", "Golden Telecom"},
- {"255 06", "life:)"},
+ {"255 06", "lifecell"},
{"255 07", "3Mob"},
{"255 21", "PEOPLEnet"},
{"255 23", "CDMA Ukraine"},
@@ -753,8 +796,7 @@ const GSM_CodeName GSM_Networks[] = {
{"257 03", "DIALLOG"},
{"257 04", "life:)"},
{"257 05", "Beltelecom"},
- {"257 06", "Belorussian Cloud Technologies"},
- {"257 501", "BelCel JV"},
+ {"257 06", "beCloud"},
{"259 01", "Orange"},
{"259 02", "Moldcell"},
{"259 03", "IDC"},
@@ -803,6 +845,13 @@ const GSM_CodeName GSM_Networks[] = {
{"260 39", "Voxbone"},
{"260 40", "Interactive Digital Media GmbH"},
{"260 41", "EZ PHONE MOBILE Sp. z o.o."},
+ {"260 42", "MobiWeb Telecom Limited"},
+ {"260 43", "Smart Idea International Sp. z o.o."},
+ {"260 44", "Rebtel Poland Sp. z o.o."},
+ {"260 45", "Virgin Mobile Polska Sp. z o.o."},
+ {"260 46", "Terra Telekom Sp. z o.o."},
+ {"260 47", "SMShighway Limited"},
+ {"260 48", "AGILE TELECOM S.P.A."},
{"260 98", "Play"},
{"262 01", "Telekom"},
{"262 02", "Vodafone"},
@@ -824,11 +873,17 @@ const GSM_CodeName GSM_Networks[] = {
{"262 18", "NetCologne"},
{"262 19", "Inquam Deutschland"},
{"262 20", "OnePhone"},
+ {"262 21", "Multiconnect GmbH"},
+ {"262 22", "sipgate Wireless GmbH"},
{"262 33", "simquadrat"},
{"262 41", "First Telecom GmbH"},
{"262 42", "CCC Event"},
- {"262 43", "LYCA"},
+ {"262 43", "Lycamobile"},
{"262 60", "DB Telematik"},
+ {"262 72", "Ericsson GmbH"},
+ {"262 73", "Xantaro Deutschland GmbH"},
+ {"262 74", "Qualcomm CDMA Technologies GmbH"},
+ {"262 75", "Core Network Dynamics GmbH"},
{"262 76", "Siemens AG"},
{"262 77", "E-Plus"},
{"262 78", "Telekom"},
@@ -844,7 +899,7 @@ const GSM_CodeName GSM_Networks[] = {
{"268 04", "LycaMobile"},
{"268 05", "Oniway - Inforcomunicacoes, S.A."},
{"268 06", "MEO"},
- {"268 07", "Vectone Mobile / Delight Mobile"},
+ {"268 07", "Vectone Mobile"},
{"268 11", "Compatel, Limited"},
{"268 12", "Refer Telecom - Servicos de Telecomunicacoes, S.A."},
{"268 21", "Zapp"},
@@ -856,7 +911,7 @@ const GSM_CodeName GSM_Networks[] = {
{"270 78", "Interactive digital media GmbH"},
{"270 99", "Orange"},
{"272 01", "Vodafone"},
- {"272 02", "3 (former O2 network)"},
+ {"272 02", "3"},
{"272 03", "Meteor"},
{"272 04", "Access Telecom"},
{"272 05", "3"},
@@ -864,6 +919,8 @@ const GSM_CodeName GSM_Networks[] = {
{"272 09", "Clever Communications"},
{"272 11", "Tesco Mobile"},
{"272 13", "Lycamobile"},
+ {"272 15", "Virgin Mobile"},
+ {"272 16", "Carphone Warehouse"},
{"274 01", "Siminn"},
{"274 02", "Vodafone"},
{"274 03", "Vodafone"},
@@ -875,7 +932,7 @@ const GSM_CodeName GSM_Networks[] = {
{"274 11", "Nova"},
{"274 12", "Tal"},
{"274 22", "Landhelgisgaeslan (Icelandic Coast Guard)"},
- {"276 01", "AMC"},
+ {"276 01", "Telekom.al"},
{"276 02", "Vodafone"},
{"276 03", "Eagle Mobile"},
{"276 04", "Plus Communication"},
@@ -888,6 +945,7 @@ const GSM_CodeName GSM_Networks[] = {
{"280 10", "MTN"},
{"280 20", "PrimeTel"},
{"280 22", "lemontel"},
+ {"280 23", "Vectone Mobile"},
{"282 01", "Geocell"},
{"282 02", "MagtiCom"},
{"282 03", "MagtiCom"},
@@ -900,7 +958,7 @@ const GSM_CodeName GSM_Networks[] = {
{"283 01", "Beeline"},
{"283 04", "Karabakh Telecom"},
{"283 05", "VivaCell-MTS"},
- {"283 10", "Orange"},
+ {"283 10", "Ucom"},
{"284 01", "M-Tel"},
{"284 03", "Vivacom"},
{"284 05", "Telenor"},
@@ -910,7 +968,7 @@ const GSM_CodeName GSM_Networks[] = {
{"284 13", "MAX"},
{"286 01", "Turkcell"},
{"286 02", "Vodafone"},
- {"286 03", "Avea"},
+ {"286 03", "Turk Telekom"},
{"286 04", "Aycell"},
{"288 01", "Faroese Telecom"},
{"288 02", "Vodafone"},
@@ -918,6 +976,7 @@ const GSM_CodeName GSM_Networks[] = {
{"289 67", "Aquafon"},
{"289 88", "A-Mobile"},
{"290 01", "TELE Greenland A/S"},
+ {"290 02", "Nuuk TV"},
{"292 01", "PRIMA"},
{"293 10", "SZ - Infrastruktura, d.o.o."},
{"293 20", "COMPATEL Ltd"},
@@ -926,28 +985,32 @@ const GSM_CodeName GSM_Networks[] = {
{"293 41", "IPKO"},
{"293 41", "Mobitel"},
{"293 64", "T-2"},
- {"293 70", "Tusmobil"},
- {"294 01", "T-Mobile MK"},
+ {"293 70", "Telemach"},
+ {"294 01", "Telekom.mk"},
{"294 02", "ONE"},
{"294 03", "Vip MK"},
+ {"294 04", "Lycamobile"},
{"294 10", "WTI Macedonia"},
{"294 11", "MOBIK TELEKOMUNIKACII DOOEL Skopje"},
{"295 01", "Swisscom"},
- {"295 02", "Orange"},
+ {"295 02", "7acht"},
{"295 05", "FL1"},
{"295 06", "Cubic Telecom"},
{"295 07", "First Mobile AG"},
+ {"295 09", "EMnify GmbH"},
+ {"295 10", "Soracom LI Ltd."},
{"295 77", "Alpmobil"},
{"297 01", "Telenor"},
{"297 02", "T-Mobile"},
{"297 03", "m:tel CG"},
- {"302 220", "Telus Mobility, Koodo Mobile"},
+ {"302 220", "Telus Mobility, Koodo Mobile, Public Mobile"},
{"302 221", "Telus"},
{"302 222", "Telus"},
{"302 250", "ALO"},
{"302 270", "EastLink"},
{"302 290", "Airtel Wireless"},
- {"302 320", "Mobilicity"},
+ {"302 300", "ECOTEL Inc."},
+ {"302 320", "Rogers Wireless"},
{"302 340", "Execulink"},
{"302 350", "FIRST"},
{"302 360", "MiKe"},
@@ -956,7 +1019,7 @@ const GSM_CodeName GSM_Networks[] = {
{"302 380", "Keewaytinook Mobile"},
{"302 390", "DMTS"},
{"302 480", "SSi Connexions"},
- {"302 490", "WIND Mobile"},
+ {"302 490", "Freedom Mobile"},
{"302 500", "Videotron"},
{"302 510", "Videotron"},
{"302 520", "Videotron"},
@@ -999,37 +1062,42 @@ const GSM_CodeName GSM_Networks[] = {
{"310 004", "Verizon"},
{"310 005", "Verizon"},
{"310 006", "Verizon"},
- {"310 010", "MCI"},
+ {"310 010", "Verizon"},
{"310 012", "Verizon"},
- {"310 013", "MobileTel"},
- {"310 014", "Testing"},
- {"310 016", "Cricket Communications"},
- {"310 017", "North Sight Communications Inc."},
- {"310 020", "Union Telephone Company"},
- {"310 026", "T-Mobile"},
+ {"310 013", "Verizon"},
+ {"310 014", ""},
+ {"310 015", "Southern LINC"},
+ {"310 016", "AT&T"},
+ {"310 017", "ProxTel"},
+ {"310 020", "Union Wireless"},
{"310 030", "AT&T"},
{"310 032", "IT&E Wireless"},
+ {"310 032", "IT&E Wireless"},
+ {"310 033", "Guam Telephone Authority"},
{"310 033", "Guam Telephone Authority"},
{"310 034", "Airpeak"},
- {"310 040", "Concho"},
- {"310 046", "SIMMETRY"},
- {"310 053", "Virgin Mobile US"},
+ {"310 035", "ETEX Wireless"},
+ {"310 040", "MTA"},
+ {"310 050", "GCI"},
+ {"310 053", "Virgin Mobile"},
{"310 054", "Alltel US"},
{"310 060", "Consolidated Telcom"},
{"310 066", "U.S. Cellular"},
- {"310 070", "Highland Cellular"},
- {"310 080", "Corr"},
- {"310 090", "Cricket Communications"},
+ {"310 070", "AT&T"},
+ {"310 080", "AT&T"},
+ {"310 090", "AT&T"},
{"310 100", "Plateau Wireless"},
- {"310 110", "PTI Pacifica"},
+ {"310 110", "IT&E Wireless"},
+ {"310 110", "IT&E Wireless"},
{"310 120", "Sprint"},
- {"310 130", "Carolina Wireless"},
- {"310 140", "mPulse"},
+ {"310 130", "Carolina West Wireless"},
+ {"310 140", "GTA Wireless"},
+ {"310 140", "GTA Wireless"},
{"310 150", "AT&T"},
{"310 160", "T-Mobile"},
{"310 170", "AT&T"},
{"310 180", "West Central"},
- {"310 190", "Dutch Harbor"},
+ {"310 190", "GCI"},
{"310 200", "T-Mobile"},
{"310 210", "T-Mobile"},
{"310 220", "T-Mobile"},
@@ -1039,169 +1107,367 @@ const GSM_CodeName GSM_Networks[] = {
{"310 260", "T-Mobile USA"},
{"310 270", "T-Mobile"},
{"310 280", "AT&T"},
- {"310 290", "T-Mobile"},
+ {"310 290", "nep"},
{"310 300", "Big Sky Mobile"},
{"310 310", "T-Mobile"},
{"310 311", "Farmers Wireless"},
{"310 320", "Cellular One"},
- {"310 330", "T-Mobile"},
- {"310 340", "Westlink"},
- {"310 350", "Carolina Phone"},
+ {"310 330", "Alltel"},
+ {"310 340", "Westlink Communications"},
+ {"310 350", "Verizon"},
+ {"310 360", "Pioneer Cellular"},
+ {"310 370", "Docomo"},
+ {"310 370", "Docomo"},
{"310 370", "Docomo"},
{"310 380", "AT&T"},
{"310 390", "Cellular One of East Texas"},
- {"310 400", "i CAN_GSM"},
+ {"310 400", "iConnect"},
+ {"310 400", "iConnect"},
{"310 410", "AT&T"},
{"310 420", "Cincinnati Bell"},
- {"310 430", "Alaska Digitel"},
- {"310 440", "Cellular One"},
+ {"310 430", "GCI"},
+ {"310 440", "Numerex"},
{"310 450", "Viaero"},
- {"310 460", "Simmetry"},
- {"310 470", "Docomo"},
- {"310 470", "nTelos"},
- {"310 480", "Choice Phone"},
+ {"310 460", "NewCore"},
+ {"310 470", "Shentel"},
+ {"310 480", "Instant Connect"},
+ {"310 480", "iConnect"},
{"310 490", "T-Mobile"},
{"310 500", "Alltel"},
- {"310 510", "Airtel"},
- {"310 520", "VeriSign"},
- {"310 530", "West Virginia Wireless"},
- {"310 540", "Oklahoma Western"},
+ {"310 510", "Cellcom"},
+ {"310 520", "TNS"},
+ {"310 530", "iWireless"},
+ {"310 540", "Phoenix"},
+ {"310 550", "Syniverse Technologies"},
{"310 560", "AT&T"},
{"310 570", "Cellular One"},
- {"310 580", "T-Mobile"},
+ {"310 580", "Inland Cellular Telephone Company"},
{"310 59", "Cellular One"},
- {"310 590", "Alltel"},
- {"310 600", "New Cell Inc. dba Cellcom"},
- {"310 610", "Epic Touch"},
- {"310 620", "Coleman County Telecom"},
- {"310 630", "AmeriLink PCS"},
- {"310 640", "AirFire"},
+ {"310 590", "Verizon Wireless"},
+ {"310 600", "Cellcom"},
+ {"310 610", "Epic PCS"},
+ {"310 620", "Cellcom"},
+ {"310 630", "miSpot"},
+ {"310 640", "Numerex"},
{"310 650", "Jasper"},
{"310 660", "T-Mobile"},
- {"310 670", "Northstar"},
+ {"310 670", "AT&T"},
{"310 680", "AT&T"},
{"310 690", "Limitless Mobile"},
- {"310 730", "SeaMobile"},
- {"310 740", "Convey"},
+ {"310 700", "Bigfoot Cellular"},
+ {"310 710", "ASTAC"},
+ {"310 720", "Syniverse Technologies"},
+ {"310 730", "U.S. Cellular"},
+ {"310 740", "Viaero"},
{"310 750", "Appalachian Wireless"},
- {"310 760", "Panhandle"},
- {"310 770", "i wireless"},
- {"310 780", "Airlink PCS"},
- {"310 790", "PinPoint"},
+ {"310 760", "Lynch 3G Communications Corporation"},
+ {"310 770", "iWireless"},
+ {"310 780", "Dispatch Direct"},
+ {"310 790", "BLAZE"},
{"310 800", "T-Mobile"},
- {"310 830", "Caprock"},
+ {"310 810", "LCFR LLC"},
+ {"310 820", "Verizon Wireless"},
+ {"310 830", "Sprint"},
{"310 840", "telna Mobile"},
{"310 850", "Aeris"},
+ {"310 860", "Five Star Wireless"},
{"310 870", "PACE"},
{"310 880", "DTC Wireless"},
- {"310 890", "Unicel"},
+ {"310 890", "Verizon Wireless"},
{"310 900", "Mid-Rivers Wireless"},
- {"310 910", "First Cellular"},
+ {"310 910", "Verizon Wireless"},
+ {"310 920", "James Valley Wireless, LLC"},
+ {"310 930", "Copper Valley Wireless"},
{"310 940", "Iris Wireless LLC"},
- {"310 950", "XIT Wireless"},
- {"310 960", "Plateau Wireless"},
+ {"310 950", "AT&T"},
+ {"310 960", "STRATA"},
{"310 970", "Globalstar"},
- {"310 970", "Telemedicine Wireless"},
- {"310 980", "Akiba Telecommunications, Inc."},
- {"310 990", "AT&T"},
- {"311 000", "Mid-Tex Cellular"},
+ {"310 980", "Peoples Telephone"},
+ {"310 990", "Evolve Broadband"},
+ {"311 000", "West Central Wireless"},
{"311 010", "Chariton Valley"},
{"311 012", "Verizon"},
- {"311 020", "Missouri RSA 5 Partnership"},
+ {"311 020", "Chariton Valley"},
{"311 030", "Indigo Wireless"},
- {"311 040", "Commnet Wireless"},
- {"311 050", "Wikes Cellular"},
- {"311 060", "Farmers Cellular"},
- {"311 070", "Easterbrooke"},
+ {"311 040", "Choice Wireless"},
+ {"311 050", "Thumb Cellular LP"},
+ {"311 060", "Space Data Corporation"},
+ {"311 070", "AT&T"},
{"311 080", "Pine Cellular"},
- {"311 090", "Long Lines Wireless"},
- {"311 100", "High Plains Wireless"},
- {"311 110", "High Plains Wireless"},
- {"311 120", "Choice Phone"},
- {"311 130", "Cell One Amarillo"},
- {"311 140", "Sprocket"},
+ {"311 090", "AT&T"},
+ {"311 100", "Nex-Tech Wireless"},
+ {"311 110", "Verizon"},
+ {"311 120", "iConnect"},
+ {"311 120", "iConnect"},
+ {"311 130", "Lightsquared L.P."},
+ {"311 140", "Sprocket Wireless"},
{"311 150", "Wilkes Cellular"},
- {"311 160", "Endless Mountains Wireless"},
- {"311 170", "PetroCom"},
- {"311 180", "Cingular Wireless"},
- {"311 190", "Cellular Properties"},
+ {"311 160", "Lightsquared L.P."},
+ {"311 170", "Broadpoint Inc."},
+ {"311 180", "AT&T"},
+ {"311 190", "AT&T"},
+ {"311 200", "ARINC"},
{"311 210", "Emery Telcom Wireless"},
{"311 220", "U.S. Cellular"},
{"311 230", "C Spire Wireless"},
- {"311 250", "i CAN_GSM"},
+ {"311 240", "Cordova Wireless"},
+ {"311 250", "iConnect"},
+ {"311 250", "iConnect"},
+ {"311 260", "Sprint"},
+ {"311 270", "Verizon"},
+ {"311 271", "Verizon"},
+ {"311 272", "Verizon"},
+ {"311 273", "Verizon"},
+ {"311 274", "Verizon"},
+ {"311 275", "Verizon"},
+ {"311 276", "Verizon"},
+ {"311 277", "Verizon"},
+ {"311 278", "Verizon"},
+ {"311 279", "Verizon"},
+ {"311 280", "Verizon"},
+ {"311 281", "Verizon"},
+ {"311 282", "Verizon"},
+ {"311 283", "Verizon"},
+ {"311 284", "Verizon"},
+ {"311 285", "Verizon"},
+ {"311 286", "Verizon"},
+ {"311 287", "Verizon"},
+ {"311 288", "Verizon"},
+ {"311 289", "Verizon"},
+ {"311 290", "BLAZE"},
+ {"311 300", "Nexus Communications, Inc."},
+ {"311 310", "NMobile"},
+ {"311 320", "Choice Wireless"},
{"311 330", "Bug Tussel Wireless"},
+ {"311 340", "Illinois Valley Cellular "},
+ {"311 350", "Nemont"},
{"311 360", "Stelera Wireless"},
{"311 370", "GCI Wireless"},
+ {"311 380", "New Dimension Wireless Ltd."},
+ {"311 390", "Verizon"},
+ {"311 400", ""},
+ {"311 410", "Chat Mobility"},
+ {"311 420", "NorthwestCell"},
+ {"311 430", "Chat Mobility"},
+ {"311 440", "Bluegrass Cellular LLC"},
+ {"311 450", "PTCI"},
+ {"311 460", "Fisher Wireless Services Inc."},
+ {"311 470", "Innovative Wireless"},
{"311 480", "Verizon"},
+ {"311 481", "Verizon"},
+ {"311 482", "Verizon"},
+ {"311 483", "Verizon"},
+ {"311 484", "Verizon"},
+ {"311 485", "Verizon"},
+ {"311 486", "Verizon"},
+ {"311 487", "Verizon"},
+ {"311 488", "Verizon"},
+ {"311 489", "Verizon"},
{"311 490", "Sprint Corporation"},
{"311 500", "Mosaic Telecom"},
- {"311 530", "PTCI"},
+ {"311 510", "Lightsquared L.P."},
+ {"311 520", "Lightsquared L.P."},
+ {"311 530", "NewCore"},
+ {"311 540", "Proximiti Mobility Inc."},
+ {"311 550", "Choice Wireless"},
+ {"311 560", "OTZ Cellular"},
{"311 570", "BendBroadband"},
{"311 580", "U.S. Cellular"},
+ {"311 590", "Verizon"},
+ {"311 600", "Cox Wireless"},
+ {"311 610", "SRT Communications"},
+ {"311 620", "TerreStar Networks, Inc."},
+ {"311 630", "C Spire Wireless"},
{"311 640", "Rock Wireless"},
{"311 650", "United Wireless"},
{"311 660", "metroPCS"},
- {"311 750", "NetAmerica Alliance"},
- {"311 810", "Bluegrass Wireless"},
- {"311 870", "Boost"},
+ {"311 670", "Pine Belt Wireless"},
+ {"311 680", "GreenFly LLC"},
+ {"311 690", "TeleBEEPER of New Mexico"},
+ {"311 700", "Aspenta International, Inc."},
+ {"311 710", "Northeast Wireless Networks LLC"},
+ {"311 720", "MainePCS LLC"},
+ {"311 730", "Proximiti Mobility Inc."},
+ {"311 740", "Telalaska Cellular"},
+ {"311 750", "ClearTalk"},
+ {"311 760", "Edigen Inc."},
+ {"311 770", "Altiostar Networks, Inc."},
+ {"311 780", "Pioneer Cellular"},
+ {"311 790", "Coleman County Telephone Cooperative, Inc."},
+ {"311 800", "Bluegrass Cellular LLC"},
+ {"311 810", "Bluegrass Cellular LLC"},
+ {"311 820", "Sonus Networks"},
+ {"311 830", "Thumb Cellular LP"},
+ {"311 840", "Cellcom"},
+ {"311 850", "Cellcom"},
+ {"311 860", "STRATA"},
+ {"311 870", "Boost Mobile"},
+ {"311 880", "Sprint"},
+ {"311 890", "Globecomm Network Services Corporation "},
+ {"311 900", "GigSky"},
+ {"311 910", "MobileNation"},
+ {"311 920", "Chariton Valley"},
{"311 930", "Syringa Wireless"},
+ {"311 940", "Sprint"},
{"311 950", "ETC"},
{"311 960", "Lycamobile"},
{"311 970", "Big River Broadband"},
+ {"311 980", "LigTel Communications"},
{"311 990", "VTel Wireless"},
+ {"312 010", "Chariton Valley"},
+ {"312 020", "Infrastructure Networks, LLC"},
+ {"312 030", "Sprocket Wireless"},
+ {"312 040", "Custer Telephone Co-op (CTCI)"},
{"312 050", "Fuego Wireless"},
+ {"312 060", "CoverageCo"},
{"312 070", "Adams Networks Inc"},
{"312 080", "SyncSouth"},
- {"312 220", "Chariton Valley Telephone"},
+ {"312 090", "AT&T"},
+ {"312 100", "ClearSky Technologies, Inc."},
+ {"312 110", "Texas Energy Network LLC"},
+ {"312 120", "Appalachian Wireless"},
+ {"312 130", "Appalachian Wireless"},
+ {"312 140", "Revol Wireless"},
+ {"312 150", "NorthwestCell"},
+ {"312 160", "Chat Mobility"},
+ {"312 170", "Chat Mobility"},
+ {"312 180", "Limiteless Mobile LLC"},
+ {"312 190", "Sprint"},
+ {"312 200", "Voyager Mobility LLC"},
+ {"312 210", "Aspenta International, Inc."},
+ {"312 220", "Chariton Valley"},
+ {"312 230", "SRT Communications"},
+ {"312 240", "Sprint"},
+ {"312 250", "Sprint"},
+ {"312 260", "NewCore"},
+ {"312 270", "Pioneer Cellular"},
+ {"312 280", "Pioneer Cellular"},
+ {"312 290", "STRATA"},
+ {"312 300", "telna Mobile"},
+ {"312 310", "Clear Stream Communications, LLC"},
+ {"312 320", "S and R Communications LLC"},
{"312 330", "Nemont"},
- {"312 350", "Triangle Communications"},
+ {"312 340", "MTA"},
+ {"312 350", "Triangle Communication Sytem Inc."},
+ {"312 360", "Wes-Tex Telecommunications, Ltd."},
{"312 370", "Choice Wireless"},
+ {"312 380", "Copper Valley Wireless"},
+ {"312 390", "FTC Wireless"},
+ {"312 400", "Mid-Rivers Wireless"},
+ {"312 410", "Eltopia Communications, LLC"},
{"312 420", "Nex-Tech Wireless"},
- {"312 530", "Sprint Spectrum"},
+ {"312 430", "Silver Star Communications"},
+ {"312 440", "Consolidated Telcom"},
+ {"312 450", "Cable & Communications Corporation"},
+ {"312 460", "Ketchikan Public Utilities (KPU)"},
+ {"312 470", "Carolina West Wireless"},
+ {"312 480", "Nemont"},
+ {"312 490", "TrustComm, Inc."},
+ {"312 500", "AB Spectrum LLC"},
+ {"312 510", "WUE Inc."},
+ {"312 520", "ANIN"},
+ {"312 530", "Sprint"},
+ {"312 540", "Broadband In Hand LLC"},
+ {"312 550", "Great Plains Communications, Inc."},
+ {"312 560", "NHLT Inc."},
+ {"312 570", "Blue Wireless"},
+ {"312 580", "Morgan, Lewis & Bockius LLP"},
{"312 590", "NMU"},
+ {"312 600", "Nemont"},
{"312 610", "nTelos"},
+ {"312 620", "GlobeTouch Inc."},
+ {"312 630", "NetGenuity, Inc."},
+ {"312 640", "Nemont"},
+ {"312 650", "365 Wireless LLC"},
+ {"312 660", "nTelos"},
+ {"312 670", "AT&T"},
+ {"312 680", "AT&T"},
+ {"312 690", "Tecore Government Services, LLC"},
+ {"312 700", "Wireless Partners, LLC"},
+ {"312 710", "Great North Woods Wireless LLC"},
+ {"312 720", "Southern LINC"},
+ {"312 730", "Triangle Communication Sytem Inc."},
+ {"312 740", "Locus Telecommunications"},
+ {"312 750", "Artemis Networks LLC"},
+ {"312 760", "ASTAC"},
+ {"312 770", "Verizon"},
+ {"312 780", "Redzone Wireless"},
+ {"312 790", "Gila Electronics"},
+ {"312 800", "Cirrus Core Networks"},
+ {"312 810", "BBCP"},
+ {"312 820", "Santel Communications Cooperative, Inc."},
+ {"312 830", "Kings County Office of Education"},
+ {"312 840", "South Georgia Regional Information Technology Authority"},
+ {"312 850", "Onvoy Spectrum, LLC"},
+ {"312 860", "ClearTalk"},
+ {"312 870", "GigSky Mobile, LLC"},
+ {"312 880", "Albemarle County Public Schools"},
+ {"312 890", "Circle Gx"},
+ {"312 900", "ClearTalk"},
+ {"312 910", "Appalachian Wireless"},
+ {"312 920", "Northeast Wireless Networks LLC"},
+ {"312 930", "Hewlett-Packard Communication Services, LLC"},
+ {"312 940", "Webformix"},
+ {"312 950", "Custer Telephone Co-op (CTCI)"},
+ {"312 960", "M&A Technology, Inc."},
+ {"312 970", "IOSAZ Intellectual Property LLC"},
+ {"312 980", "Mark Twain Communications Company"},
+ {"312 990", "Premier Broadband"},
+ {"313 000", "Tennessee Wireless "},
+ {"313 010", "Sprocket Wireless"},
+ {"313 020", "CTC Wireless"},
+ {"313 030", "Snake River PCS"},
+ {"313 040", "NNTC Wireless"},
+ {"313 050", "Breakaway Wireless"},
+ {"313 060", "Country Wireless"},
+ {"313 070", "Midwest Network Solutions Hub LLC"},
+ {"313 080", "Speedwavz LLP"},
+ {"313 090", "Vivint Wireless, Inc."},
{"313 100", "FirstNet"},
+ {"313 200", "Mercury Network Corporation"},
+ {"313 210", "AT&T"},
{"316 010", "Nextel"},
{"316 011", "Southern LINC"},
- {"330 00", "Open Mobile"},
+ {"330 000", "Open Mobile"},
{"330 110", "Claro Puerto Rico"},
- {"330 120", "tmobile"},
+ {"330 120", "Open Mobile"},
{"334 001", "Comunicaciones Digitales Del Norte, S.A. de C.V."},
- {"334 010", "Nextel"},
+ {"334 010", "AT&T"},
{"334 020", "Telcel"},
{"334 030", "movistar"},
- {"334 040", "Iusacell / Unefon"},
- {"334 050", "Iusacell"},
+ {"334 040", "Unefon"},
+ {"334 050", "AT&T"},
{"334 060", "Servicios de Acceso Inalambrico, S.A. de C.V."},
{"334 066", "Telefonos de Mexico, S.A.B. de C.V."},
{"334 070", "Unefon"},
{"334 080", "Unefon"},
- {"334 090", "Nextel"},
- {"338 020", "LIME"},
+ {"334 090", "AT&T"},
+ {"338 020", "FLOW"},
+ {"338 040", "Caricel"},
{"338 050", "Digicel"},
{"338 050", "Digicel"},
{"338 050", "Digicel Bermuda"},
{"338 070", "Claro"},
- {"338 110", "LIME"},
- {"338 180", "LIME"},
+ {"338 110", "FLOW"},
+ {"338 180", "FLOW"},
{"340 01", "Orange"},
- {"340 02", "Only"},
+ {"340 02", "SFR Caraibe"},
{"340 03", "Chippie"},
{"340 08", "Dauphin"},
{"340 10", "Guadeloupe Telephone Mobile"},
{"340 11", "Guyane Telephone Mobile"},
{"340 12", "Martinique Telephone Mobile"},
{"340 20", "Digicel"},
- {"342 600", "LIME"},
+ {"342 600", "FLOW"},
{"342 750", "Digicel"},
{"342 820", "Sunbeach Communications"},
{"344 030", "APUA"},
{"344 050", "Digicel"},
- {"344 920", "LIME"},
+ {"344 920", "FLOW"},
{"344 930", "AT&T Wireless"},
{"346 050", "Digicel"},
- {"346 140", "LIME"},
- {"348 170", "LIME"},
+ {"346 140", "FLOW"},
+ {"348 170", "FLOW"},
{"348 370", "BVI Cable TV Ltd"},
{"348 570", "CCT Boatphone"},
{"348 770", "Digicel"},
@@ -1209,16 +1475,16 @@ const GSM_CodeName GSM_Networks[] = {
{"350 01", "Digicel Bermuda"},
{"350 02", "Mobility"},
{"352 030", "Digicel"},
- {"352 110", "Cable & Wireless"},
- {"354 860", "Cable & Wireless"},
+ {"352 110", "FLOW"},
+ {"354 860", "FLOW"},
{"356 050", "Digicel"},
{"356 070", "Chippie"},
- {"356 110", "LIME"},
+ {"356 110", "FLOW"},
{"358 050", "Digicel{{Citation needed|date=August 2010}}"},
- {"358 110", "Cable & Wireless"},
- {"360 070", "Digicel"},
+ {"358 110", "FLOW"},
+ {"360 050", "Digicel"},
{"360 100", "Cingular Wireless"},
- {"360 110", "Lime"},
+ {"360 110", "FLOW"},
{"362 31", "Eutel N.V."},
{"362 33", "WICC N.V."},
{"362 51", "Telcell"},
@@ -1236,11 +1502,12 @@ const GSM_CodeName GSM_Networks[] = {
{"362 95", "MIO"},
{"363 01", "SETAR"},
{"363 02", "Digicel"},
- {"364 390", "BTC"},
+ {"364 39", "BTC"},
+ {"364 49", "NewCo 2015"},
{"365 010", "Weblinks Limited"},
- {"365 840", "LIME"},
+ {"365 840", "FLOW"},
{"366 020", "Digicel"},
- {"366 110", "LIME"},
+ {"366 110", "FLOW"},
{"368 01", "CUBACEL"},
{"370 01", "Orange"},
{"370 02", "Claro"},
@@ -1253,14 +1520,15 @@ const GSM_CodeName GSM_Networks[] = {
{"374 12", "bmobile"},
{"374 130", "Digicel"},
{"374 140", "LaqTel Ltd."},
- {"376 350", "C&W"},
- {"376 352", "IslandCom"},
- {"376 360", "IslandCom"},
+ {"376 350", "FLOW"},
+ {"376 352", "FLOW"},
+ {"376 360", "FLOW"},
{"400 01", "Azercell"},
{"400 02", "Bakcell"},
{"400 03", "FONEX"},
{"400 04", "Nar Mobile"},
{"400 05", "Special State Protection Service of the Republic of Azerbaijan"},
+ {"400 06", "Naxtel"},
{"401 01", "Beeline"},
{"401 02", "Kcell"},
{"401 07", "Altel"},
@@ -1268,83 +1536,83 @@ const GSM_CodeName GSM_Networks[] = {
{"401 77", "Tele2.kz"},
{"402 11", "B-Mobile"},
{"402 77", "TashiCell"},
- {"404 01", "Vodafone IN"},
+ {"404 01", "Vodafone India"},
{"404 02", "AirTel"},
{"404 03", "AirTel"},
{"404 04", "IDEA"},
- {"404 05", "Vodafone IN"},
+ {"404 05", "Vodafone India"},
{"404 07", "IDEA"},
{"404 09", "Reliance"},
{"404 10", "AirTel"},
- {"404 11", "Vodafone IN"},
+ {"404 11", "Vodafone India"},
{"404 12", "IDEA"},
- {"404 13", "Vodafone IN"},
+ {"404 13", "Vodafone India"},
{"404 14", "IDEA"},
- {"404 15", "Vodafone IN"},
+ {"404 15", "Vodafone India"},
{"404 16", "Airtel"},
{"404 17", "AIRCEL"},
{"404 18", "Reliance"},
{"404 19", "IDEA"},
- {"404 20", "Vodafone IN"},
+ {"404 20", "Vodafone India"},
{"404 21", "Loop Mobile"},
{"404 22", "IDEA"},
{"404 24", "IDEA"},
{"404 25", "AIRCEL"},
- {"404 27", "Vodafone IN"},
+ {"404 27", "Vodafone India"},
{"404 28", "AIRCEL"},
{"404 29", "AIRCEL"},
- {"404 30", "Vodafone IN"},
+ {"404 30", "Vodafone India"},
{"404 31", "AirTel"},
- {"404 34", "CellOne"},
+ {"404 34", "cellone"},
{"404 36", "Reliance"},
{"404 37", "Aircel"},
- {"404 38", "CellOne"},
+ {"404 38", "cellone"},
{"404 40", "AirTel"},
{"404 41", "Aircel"},
{"404 42", "Aircel"},
- {"404 43", "Vodafone IN"},
+ {"404 43", "Vodafone India"},
{"404 44", "IDEA"},
{"404 45", "Airtel"},
- {"404 46", "Vodafone IN"},
+ {"404 46", "Vodafone India"},
{"404 48", "Dishnet Wireless"},
{"404 49", "Airtel"},
{"404 50", "Reliance"},
- {"404 51", "CellOne"},
+ {"404 51", "cellone"},
{"404 52", "Reliance"},
- {"404 53", "CellOne"},
- {"404 54", "CellOne"},
- {"404 55", "CellOne"},
+ {"404 53", "cellone"},
+ {"404 54", "cellone"},
+ {"404 55", "cellone"},
{"404 56", "IDEA"},
- {"404 57", "CellOne"},
- {"404 58", "CellOne"},
- {"404 59", "CellOne"},
- {"404 60", "Vodafone IN"},
- {"404 62", "CellOne"},
- {"404 64", "CellOne"},
- {"404 66", "CellOne"},
+ {"404 57", "cellone"},
+ {"404 58", "cellone"},
+ {"404 59", "cellone"},
+ {"404 60", "Vodafone India"},
+ {"404 62", "cellone"},
+ {"404 64", "cellone"},
+ {"404 66", "cellone"},
{"404 67", "Reliance"},
{"404 68", "DOLPHIN"},
{"404 69", "DOLPHIN"},
{"404 70", "AirTel"},
- {"404 71", "CellOne"},
- {"404 72", "CellOne"},
- {"404 73", "CellOne"},
- {"404 74", "CellOne"},
- {"404 75", "CellOne"},
- {"404 76", "CellOne"},
- {"404 77", "CellOne"},
- {"404 78", "Idea Cellular Ltd"},
- {"404 79", "CellOne"},
- {"404 80", "CellOne"},
- {"404 81", "CellOne"},
- {"404 82", "Idea"},
+ {"404 71", "cellone"},
+ {"404 72", "cellone"},
+ {"404 73", "cellone"},
+ {"404 74", "cellone"},
+ {"404 75", "cellone"},
+ {"404 76", "cellone"},
+ {"404 77", "cellone"},
+ {"404 78", "IDEA"},
+ {"404 79", "cellone"},
+ {"404 80", "cellone"},
+ {"404 81", "cellone"},
+ {"404 82", "IDEA"},
{"404 83", "Reliance"},
- {"404 84", "Vodafone IN"},
+ {"404 84", "Vodafone India"},
{"404 85", "Reliance"},
- {"404 86", "Vodafone IN"},
+ {"404 86", "Vodafone India"},
{"404 87", "IDEA"},
- {"404 88", "Vodafone IN"},
- {"404 89", "Idea"},
+ {"404 88", "Vodafone India"},
+ {"404 89", "IDEA"},
{"404 90", "AirTel"},
{"404 91", "AIRCEL"},
{"404 92", "AirTel"},
@@ -1403,16 +1671,16 @@ const GSM_CodeName GSM_Networks[] = {
{"405 54", "AirTel"},
{"405 55", "Airtel"},
{"405 56", "AirTel"},
- {"405 66", "Vodafone IN"},
- {"405 67", "Vodafone IN"},
+ {"405 66", "Vodafone India"},
+ {"405 67", "Vodafone India"},
{"405 70", "IDEA"},
- {"405 750", "Vodafone IN"},
- {"405 751", "Vodafone IN"},
- {"405 752", "Vodafone IN"},
- {"405 753", "Vodafone IN"},
- {"405 754", "Vodafone IN"},
- {"405 755", "Vodafone IN"},
- {"405 756", "Vodafone IN"},
+ {"405 750", "Vodafone India"},
+ {"405 751", "Vodafone India"},
+ {"405 752", "Vodafone India"},
+ {"405 753", "Vodafone India"},
+ {"405 754", "Vodafone India"},
+ {"405 755", "Vodafone India"},
+ {"405 756", "Vodafone India"},
{"405 799", "IDEA"},
{"405 800", "AIRCEL"},
{"405 801", "AIRCEL"},
@@ -1498,13 +1766,15 @@ const GSM_CodeName GSM_Networks[] = {
{"413 01", "Mobitel"},
{"413 02", "Dialog"},
{"413 03", "Etisalat"},
+ {"413 04", "Lanka Bell"},
{"413 05", "Airtel"},
{"413 08", "Hutch"},
{"414 01", "MPT"},
+ {"414 03", "CDMA800"},
{"414 05", "Ooredoo"},
- {"414 06", "Telenor Myanmar"},
+ {"414 06", "Telenor"},
{"415 01", "Alfa"},
- {"415 03", "mtc touch"},
+ {"415 03", "touch"},
{"415 05", "Ogero Mobile"},
{"416 01", "zain JO"},
{"416 02", "XPress Telecom"},
@@ -1513,6 +1783,7 @@ const GSM_CodeName GSM_Networks[] = {
{"417 01", "Syriatel"},
{"417 02", "MTN"},
{"417 09", "Syrian Telecom"},
+ {"418 00", "Asia Cell"},
{"418 05", "Asia Cell"},
{"418 08", "SanaTel"},
{"418 20", "Zain"},
@@ -1534,11 +1805,11 @@ const GSM_CodeName GSM_Networks[] = {
{"421 03", "Yemen Mobile"},
{"421 04", "HiTS-UNITEL"},
{"422 02", "Omantel"},
- {"422 03", "Nawras"},
+ {"422 03", "ooredoo"},
{"422 04", "Omantel"},
{"424 02", "Etisalat"},
{"424 03", "du"},
- {"425 01", "Orange"},
+ {"425 01", "Partner"},
{"425 02", "Cellcom"},
{"425 03", "Pelephone"},
{"425 04", "Globalsim Ltd"},
@@ -1562,6 +1833,7 @@ const GSM_CodeName GSM_Networks[] = {
{"425 23", "Beezz Communication Solutions Ltd."},
{"425 24", "012 Telecom"},
{"425 25", "IMOD"},
+ {"425 28", "PHI Networks"},
{"426 01", "Batelco"},
{"426 02", "zain BH"},
{"426 03", "Civil Aviation Authority"},
@@ -1575,11 +1847,12 @@ const GSM_CodeName GSM_Networks[] = {
{"428 91", "Skytel"},
{"428 98", "G-Mobile"},
{"428 99", "Mobicom"},
- {"429 01", "Namaste / NT Mobile"},
+ {"429 01", "Namaste / NT Mobile / Sky Phone"},
{"429 02", "Ncell"},
- {"429 03", "Sky/C-Phone"},
+ {"429 03", "UTL"},
{"429 04", "SmartCell"},
{"432 11", "IR-MCI (Hamrahe Avval)"},
+ {"432 12", "Avacell"},
{"432 14", "TKC"},
{"432 19", "MTCE (Espadan)"},
{"432 20", "Rightel"},
@@ -1597,7 +1870,7 @@ const GSM_CodeName GSM_Networks[] = {
{"434 08", "UzMobile"},
{"436 01", "Tcell"},
{"436 02", "Tcell"},
- {"436 03", "Megafon Tajikistan"},
+ {"436 03", "MegaFon"},
{"436 04", "Babilon-M"},
{"436 05", "Beeline"},
{"436 12", "Tcell"},
@@ -1605,125 +1878,32 @@ const GSM_CodeName GSM_Networks[] = {
{"437 03", "Fonex"},
{"437 05", "MegaCom"},
{"437 09", "O!"},
- {"438 01", "MTS (BARASH Communication)"},
+ {"438 01", "MTS"},
{"438 02", "TM-Cell"},
+ {"438 03", "AGTS CDMA"},
{"440 00", "Y!Mobile"},
- {"440 01", "NTT docomo"},
- {"440 02", "NTT docomo"},
- {"440 03", "NTT docomo"},
- {"440 04", "SoftBank"},
- {"440 06", "SoftBank"},
- {"440 07", "KDDI"},
- {"440 08", "KDDI"},
- {"440 09", "NTT docomo"},
+ {"440 01", "UQ WiMAX"},
+ {"440 02", "Hanshin Cable Engineering Co., Ltd."},
+ {"440 05", "Wireless City Planning Inc."},
{"440 10", "NTT docomo"},
- {"440 11", "NTT docomo"},
- {"440 12", "NTT docomo"},
- {"440 13", "NTT docomo"},
- {"440 14", "NTT docomo"},
- {"440 15", "NTT docomo"},
- {"440 16", "NTT docomo"},
- {"440 17", "NTT docomo"},
- {"440 18", "NTT docomo"},
- {"440 19", "NTT docomo"},
{"440 20", "SoftBank"},
- {"440 21", "NTT docomo"},
- {"440 22", "NTT docomo"},
- {"440 23", "NTT docomo"},
- {"440 24", "NTT docomo"},
- {"440 25", "NTT docomo"},
- {"440 26", "NTT docomo"},
- {"440 27", "NTT docomo"},
- {"440 28", "NTT docomo"},
- {"440 29", "NTT docomo"},
- {"440 30", "NTT docomo"},
- {"440 31", "NTT docomo"},
- {"440 32", "NTT docomo"},
- {"440 33", "NTT docomo"},
- {"440 34", "NTT docomo"},
- {"440 35", "NTT DoCoMo"},
- {"440 36", "NTT DoCoMo"},
- {"440 37", "NTT DoCoMo"},
- {"440 38", "NTT DoCoMo"},
- {"440 39", "NTT DoCoMo"},
- {"440 40", "SoftBank"},
- {"440 41", "SoftBank"},
- {"440 42", "SoftBank"},
- {"440 43", "SoftBank"},
- {"440 44", "SoftBank"},
- {"440 45", "SoftBank"},
- {"440 46", "SoftBank"},
- {"440 47", "SoftBank"},
- {"440 48", "SoftBank"},
- {"440 49", "NTT DoCoMo"},
- {"440 50", "KDDI"},
- {"440 51", "KDDI"},
- {"440 52", "KDDI"},
- {"440 53", "KDDI"},
- {"440 54", "KDDI"},
- {"440 55", "KDDI"},
- {"440 56", "KDDI"},
- {"440 58", "NTT DoCoMo"},
- {"440 60", "NTT DoCoMo"},
- {"440 61", "NTT DoCoMo"},
- {"440 62", "NTT DoCoMo"},
- {"440 63", "NTT DoCoMo"},
- {"440 64", "NTT DoCoMo"},
- {"440 65", "NTT DoCoMo"},
- {"440 66", "NTT DoCoMo"},
- {"440 67", "NTT DoCoMo"},
- {"440 68", "NTT DoCoMo"},
- {"440 69", "NTT DoCoMo"},
+ {"440 21", "SoftBank"},
+ {"440 50", "au"},
+ {"440 51", "au"},
+ {"440 52", "au"},
+ {"440 53", "au"},
+ {"440 54", "au"},
{"440 70", "au"},
- {"440 71", "KDDI"},
- {"440 72", "KDDI"},
- {"440 73", "KDDI"},
- {"440 74", "KDDI"},
- {"440 75", "KDDI"},
- {"440 76", "KDDI"},
- {"440 77", "KDDI"},
- {"440 78", "Okinawa Cellular Telephone"},
- {"440 79", "KDDI"},
- {"440 80", "TU-KA"},
- {"440 81", "TU-KA"},
- {"440 82", "TU-KA"},
- {"440 83", "TU-KA"},
- {"440 84", "TU-KA"},
- {"440 85", "TU-KA"},
- {"440 86", "TU-KA"},
- {"440 87", "NTT DoCoMo"},
- {"440 88", "KDDI"},
- {"440 89", "KDDI"},
- {"440 90", "SoftBank"},
- {"440 92", "SoftBank"},
- {"440 93", "SoftBank"},
- {"440 94", "SoftBank"},
- {"440 95", "SoftBank"},
- {"440 96", "SoftBank"},
- {"440 97", "SoftBank"},
- {"440 98", "SoftBank"},
- {"440 99", "NTT DoCoMo"},
- {"441 40", "NTT DoCoMo"},
- {"441 41", "NTT DoCoMo"},
- {"441 42", "NTT DoCoMo"},
- {"441 43", "NTT DoCoMo"},
- {"441 44", "NTT DoCoMo"},
- {"441 45", "NTT DoCoMo"},
- {"441 50", "TU-KA"},
- {"441 51", "TU-KA"},
- {"441 61", "SoftBank"},
- {"441 62", "SoftBank"},
- {"441 63", "SoftBank"},
- {"441 64", "SoftBank"},
- {"441 65", "SoftBank"},
- {"441 70", "KDDI"},
- {"441 90", "NTT DoCoMo"},
- {"441 91", "NTT DoCoMo"},
- {"441 92", "NTT DoCoMo"},
- {"441 93", "NTT DoCoMo"},
- {"441 94", "NTT DoCoMo"},
- {"441 98", "NTT DoCoMo"},
- {"441 99", "NTT DoCoMo"},
+ {"440 71", "au"},
+ {"440 72", "au"},
+ {"440 73", "au"},
+ {"440 74", "au"},
+ {"440 75", "au"},
+ {"440 76", "au"},
+ {"440 78", "au"},
+ {"441 00", "Wireless City Planning Inc."},
+ {"441 01", "SoftBank"},
+ {"441 10", "UQ WiMAX"},
{"450 02", "KT"},
{"450 03", "Power 017"},
{"450 04", "KT"},
@@ -1739,14 +1919,14 @@ const GSM_CodeName GSM_Networks[] = {
{"452 06", "EVNTelecom"},
{"452 07", "Gmobile"},
{"452 08", "EVNTelecom"},
- {"454 00", "1O1O / One2Free / New World Mobility"},
+ {"454 00", "1O1O / One2Free / New World Mobility / SUNMobile"},
{"454 01", "CITIC Telecom 1616"},
{"454 02", "CSL Limited"},
{"454 03", "3"},
{"454 04", "3 (2G)"},
{"454 05", "3 (CDMA)"},
{"454 06", "SmarTone"},
- {"454 07", "China Unicom (Hong Kong) Limited"},
+ {"454 07", "China Unicom"},
{"454 08", "Truphone"},
{"454 09", "China Motion Telecom"},
{"454 10", "New World Mobility"},
@@ -1762,7 +1942,7 @@ const GSM_CodeName GSM_Networks[] = {
{"454 20", "PCCW-HKT"},
{"454 21", "21Vianet Mobile Ltd."},
{"454 22", "Delcom (HK) Ltd"},
- {"454 23", "Lycamobile Hong Kong Ltd"},
+ {"454 23", "Lycamobile"},
{"454 29", "PCCW Mobile (CDMA)"},
{"455 00", "SmarTone"},
{"455 01", "CTM"},
@@ -1771,17 +1951,18 @@ const GSM_CodeName GSM_Networks[] = {
{"455 04", "CTM"},
{"455 05", "3"},
{"455 06", "SmarTone"},
+ {"455 07", "China Telecom"},
{"456 01", "Cellcard"},
- {"456 02", "Smart Axiata"},
+ {"456 02", "Smart"},
{"456 03", "qb"},
{"456 04", "qb"},
- {"456 05", "Smart Axiata"},
- {"456 06", "Smart Axiata"},
+ {"456 05", "Smart"},
+ {"456 06", "Smart"},
{"456 08", "Metfone"},
- {"456 09", "Beeline"},
- {"456 11", "Excell"},
+ {"456 09", "Metfone"},
+ {"456 11", "SEATEL"},
{"456 18", "Cellcard"},
- {"457 01", "LTC"},
+ {"457 01", "LaoTel"},
{"457 02", "ETL"},
{"457 03", "Unitel"},
{"457 08", "Beeline"},
@@ -1793,6 +1974,9 @@ const GSM_CodeName GSM_Networks[] = {
{"460 05", "China Telecom"},
{"460 06", "China Unicom"},
{"460 07", "China Mobile"},
+ {"460 08", "China Mobile"},
+ {"460 09", "China Unicom"},
+ {"460 11", "China Telecom"},
{"460 20", "China Tietong"},
{"466 01", "FarEasTone"},
{"466 02", "FarEasTone"},
@@ -1814,6 +1998,7 @@ const GSM_CodeName GSM_Networks[] = {
{"466 97", "Taiwan Mobile"},
{"466 99", "TransAsia"},
{"467 05", "Koryolink"},
+ {"467 06", "Koryolink"},
{"467 193", "SunNet"},
{"470 01", "Grameenphone"},
{"470 02", "Robi"},
@@ -1821,6 +2006,7 @@ const GSM_CodeName GSM_Networks[] = {
{"470 04", "TeleTalk"},
{"470 05", "Citycell"},
{"470 07", "Airtel"},
+ {"470 09", "ollo"},
{"472 01", "Dhiraagu"},
{"472 02", "Ooredoo"},
{"502 01", "ATUR 450"},
@@ -1832,8 +2018,8 @@ const GSM_CodeName GSM_Networks[] = {
{"502 150", "Tune Talk"},
{"502 151", "Baraka Telecom Sdn Bhd (MVNE)"},
{"502 152", "Yes"},
- {"502 153", "Packet One Networks Sdn Bhd"},
- {"502 154", "Talk Focus Sdn Bhd"},
+ {"502 153", "Webe"},
+ {"502 154", "Tron"},
{"502 155", "Clixster Mobile Sdn Bhd"},
{"502 156", "Altel"},
{"502 157", "Telekomunikasi Indonesia International (M) Sdn Bhd"},
@@ -1859,7 +2045,7 @@ const GSM_CodeName GSM_Networks[] = {
{"505 14", "AAPT"},
{"505 15", "3GIS"},
{"505 16", "VicTrack"},
- {"505 17", "Vivid Wireless Pty. Ltd."},
+ {"505 17", "Optus"},
{"505 18", "Pactel"},
{"505 19", "Lycamobile"},
{"505 20", "Ausgrid Corporation"},
@@ -1874,7 +2060,16 @@ const GSM_CodeName GSM_Networks[] = {
{"505 30", "Compatel Limited"},
{"505 31", "BHP Billiton"},
{"505 32", "Thales Australia"},
- {"505 38", "Crazy John's"},
+ {"505 33", "CLX Networks Pty Ltd"},
+ {"505 34", "Santos Limited"},
+ {"505 35", "MessageBird Pty Ltd"},
+ {"505 36", "Optus"},
+ {"505 37", "Yancoal Australia Ltd"},
+ {"505 38", "Truphone"},
+ {"505 39", "Telstra"},
+ {"505 40", "CITIC Pacific Mining"},
+ {"505 41", "OTOC Australia Pty Ltd"},
+ {"505 61", "Commtel Network Solutions Pty Ltd"},
{"505 62", "NBN"},
{"505 68", "NBN"},
{"505 71", "Telstra"},
@@ -1883,11 +2078,11 @@ const GSM_CodeName GSM_Networks[] = {
{"505 90", "Optus"},
{"505 99", "One.Tel"},
{"510 00", "PSN"},
- {"510 01", "INDOSAT"},
+ {"510 01", "Indosat Ooredoo"},
{"510 03", "StarOne"},
{"510 07", "TelkomFlexi"},
{"510 08", "AXIS"},
- {"510 09", "SMARTFREN"},
+ {"510 09", "Smartfren"},
{"510 10", "Telkomsel"},
{"510 11", "XL"},
{"510 20", "TELKOMMobile"},
@@ -1897,37 +2092,37 @@ const GSM_CodeName GSM_Networks[] = {
{"510 88", "BOLT! Super 4G"},
{"510 89", "3"},
{"510 99", "Esia"},
- {"510 995", "Komselindo"},
- {"510 996", "Komselindo"},
{"514 01", "Telkomcel"},
{"514 02", "TT"},
{"514 03", "Telemor"},
{"515 01", "Islacom"},
{"515 02", "Globe"},
- {"515 03", "Smart"},
- {"515 05", "Sun"},
+ {"515 03", "SMART"},
+ {"515 05", "Sun Cellular"},
{"515 11", "PLDT via ACeS Philippines"},
{"515 18", "Cure"},
- {"515 24", "ABS-CBN"},
- {"515 88", "Nextel"},
+ {"515 24", "ABS-CBN Mobile"},
+ {"515 88", "Next Mobile Inc."},
{"520 00", "my by CAT"},
{"520 01", "AIS"},
{"520 02", "CAT CDMA"},
- {"520 03", "AIS 3G"},
- {"520 04", "truemove H 4G LTE"},
+ {"520 03", "AIS"},
+ {"520 04", "TrueMove H"},
{"520 05", "dtac TriNet"},
{"520 15", "TOT 3G"},
{"520 18", "dtac"},
+ {"520 20", "ACeS"},
{"520 23", "AIS GSM 1800"},
{"520 25", "WE PCT"},
{"520 47", "Telephone Organization of Thailand (TOT)"},
- {"520 99", "truemove"},
+ {"520 99", "TrueMove"},
{"525 01", "SingTel"},
{"525 02", "SingTel-G18"},
{"525 03", "M1"},
{"525 05", "StarHub"},
{"525 06", "StarHub"},
{"525 07", "SingTel"},
+ {"525 08", "StarHub"},
{"525 12", "Grid"},
{"528 01", "Jabatan Telekom Brunei"},
{"528 02", "B-Mobile"},
@@ -1936,14 +2131,14 @@ const GSM_CodeName GSM_Networks[] = {
{"530 01", "Vodafone"},
{"530 02", "Telecom"},
{"530 03", "Woosh"},
- {"530 04", "TelstraClear"},
- {"530 05", "Spark NZ"},
+ {"530 04", "Vodafone"},
+ {"530 05", "Spark"},
{"530 06", "Skinny"},
{"530 07", "Bluereach Limited"},
{"530 24", "2degrees"},
{"536 02", "Digicel"},
{"537 01", "bmobile"},
- {"537 02", "Telikom PNG Ltd."},
+ {"537 02", "citifon"},
{"537 03", "Digicel"},
{"539 01", "U-Call"},
{"539 43", "Shoreline Communication"},
@@ -1957,11 +2152,13 @@ const GSM_CodeName GSM_Networks[] = {
{"542 01", "Vodafone"},
{"542 02", "Digicel"},
{"542 03", "Telecom Fiji Ltd"},
+ {"543 01", "Manuia"},
{"544 11", "Bluesky"},
{"545 01", "Kiribati - TSKL"},
+ {"545 02", "OceanLink"},
{"545 09", "Kiribati - Frigate Net"},
{"546 01", "Mobilis"},
- {"547 05", "VITI"},
+ {"547 05", "Ora"},
{"547 10", "Mara Telecom"},
{"547 15", "Vodafone"},
{"547 20", "Vini"},
@@ -1974,13 +2171,13 @@ const GSM_CodeName GSM_Networks[] = {
{"552 80", "Palau Mobile"},
{"553 01", "TTC"},
{"555 01", "Telecom Niue"},
- {"602 01", "Mobinil"},
+ {"602 01", "Orange"},
{"602 02", "Vodafone"},
{"602 03", "Etisalat"},
{"603 01", "Mobilis"},
{"603 02", "Djezzy"},
{"603 03", "Ooredoo"},
- {"604 00", "Meditel"},
+ {"604 00", "Orange Morocco"},
{"604 01", "IAM"},
{"604 02", "Wana Corporate"},
{"604 05", "INWI (Telecommunications)"},
@@ -1993,9 +2190,11 @@ const GSM_CodeName GSM_Networks[] = {
{"606 03", "Libya Phone"},
{"606 06", "Hatef Libya"},
{"607 01", "Gamcel"},
- {"607 02", "Africel"},
+ {"607 02", "Africell"},
{"607 03", "Comium"},
{"607 04", "QCell"},
+ {"607 05", "GAMTEL-Ecowan"},
+ {"607 06", "NETPAGE"},
{"608 01", "Orange"},
{"608 02", "Tigo"},
{"608 03", "Expresso"},
@@ -2005,7 +2204,7 @@ const GSM_CodeName GSM_Networks[] = {
{"609 10", "Mauritel"},
{"610 01", "Malitel"},
{"610 02", "Orange"},
- {"611 01", "Orange S.A."},
+ {"611 01", "Orange"},
{"611 02", "Sotelgui"},
{"611 03", "Telecel Guinee"},
{"611 04", "MTN"},
@@ -2031,15 +2230,14 @@ const GSM_CodeName GSM_Networks[] = {
{"616 02", "Moov"},
{"616 03", "MTN"},
{"616 04", "BBCOM"},
- {"616 04", "BLK"},
{"616 05", "Glo"},
{"617 01", "Orange"},
- {"617 02", "MTML"},
- {"617 03", "MTML"},
+ {"617 02", "MOKOZE / AZU"},
+ {"617 03", "CHILI"},
{"617 10", "Emtel"},
{"618 01", "Lonestar Cell"},
{"618 02", "Libercell"},
- {"618 04", "Comium"},
+ {"618 04", "Novafone"},
{"618 07", "Cellcom"},
{"618 20", "LIBTELCO"},
{"619 01", "Airtel"},
@@ -2063,12 +2261,13 @@ const GSM_CodeName GSM_Networks[] = {
{"620 11", "Netafrique Dot Com Ltd"},
{"621 00", "Capcom"},
{"621 20", "Airtel"},
+ {"621 22", "InterC"},
{"621 24", "Spectranet"},
{"621 25", "Visafone"},
{"621 26", "Swift"},
{"621 27", "Smile"},
{"621 30", "MTN"},
- {"621 40", "M-Tel"},
+ {"621 40", "Ntel"},
{"621 50", "Glo"},
{"621 60", "Etisalat"},
{"622 01", "Airtel"},
@@ -2096,11 +2295,11 @@ const GSM_CodeName GSM_Networks[] = {
{"629 07", "Warid Telecom"},
{"629 10", "Libertis Telecom"},
{"630 01", "Vodacom"},
- {"630 02", "airtel"},
+ {"630 02", "Airtel"},
{"630 04", "Cellco"},
{"630 05", "Supercell"},
- {"630 10", "Libertis Telecom"},
- {"630 86", "Orange"},
+ {"630 10", "MTN"},
+ {"630 86", "Orange S.A."},
{"630 88", "YTT"},
{"630 89", "Tigo"},
{"630 90", "Africell"},
@@ -2116,7 +2315,7 @@ const GSM_CodeName GSM_Networks[] = {
{"634 01", "Zain SD"},
{"634 02", "MTN"},
{"634 03", "MTN"},
- {"634 05", "Canar Telecom"},
+ {"634 05", "canar"},
{"634 07", "Sudani One"},
{"634 09", "Privet Network"},
{"635 10", "MTN"},
@@ -2125,15 +2324,14 @@ const GSM_CodeName GSM_Networks[] = {
{"635 13", "Tigo"},
{"635 14", "Airtel"},
{"635 17", "Olleh"},
- {"636 01", "ETH-MTN"},
+ {"636 01", "MTN"},
{"637 01", "Telesom"},
- {"637 04", "SomaCyber"},
{"637 04", "Somafone"},
{"637 10", "Nationlink"},
{"637 30", "Golis"},
{"637 50", "Hormuud"},
{"637 57", "UNITEL"},
- {"637 60", "Nationlink Telecom"},
+ {"637 60", "Nationlink"},
{"637 67", "Horntel Group"},
{"637 70", "Onkod Telecom Ltd."},
{"637 71", "Somtel"},
@@ -2148,30 +2346,33 @@ const GSM_CodeName GSM_Networks[] = {
{"640 03", "Zantel"},
{"640 04", "Vodacom"},
{"640 05", "Airtel"},
- {"640 06", "Sasatel"},
+ {"640 06", "Sasatel (Dovetel)"},
{"640 07", "TTCL Mobile"},
- {"640 08", "Benson Online (BOL)"},
- {"640 09", "Hits "},
+ {"640 08", "Smart"},
+ {"640 09", "Halotel"},
{"640 11", "SmileCom"},
{"640 12", "MyCell Limited"},
+ {"640 13", "Cootel"},
{"641 01", "Airtel"},
+ {"641 04", "Tangerine Uganda Limited"},
{"641 06", "Vodafone"},
{"641 10", "MTN"},
- {"641 11", "UTL"},
+ {"641 11", "Uganda Telecom"},
{"641 14", "Africell"},
- {"641 18", "Suretelecom"},
+ {"641 18", "Smart"},
{"641 22", "Airtel"},
+ {"641 26", "Lycamobile"},
{"641 30", "Anupam Global Soft Uganda Limited"},
{"641 33", "Smile"},
{"641 40", "Civil Aviation Authority (CAA)"},
{"641 44", "K2"},
{"641 66", "i-Tel"},
- {"642 01", "Spacetel"},
+ {"642 01", "econet Leo"},
{"642 02", "Tempo"},
{"642 03", "Onatel"},
{"642 07", "Smart Mobile"},
- {"642 08", "HiTs Telecom"},
- {"642 82", "Leo"},
+ {"642 08", "Lumitel"},
+ {"642 82", "econet Leo"},
{"643 01", "mCel"},
{"643 03", "Movitel"},
{"643 04", "Vodacom"},
@@ -2184,7 +2385,7 @@ const GSM_CodeName GSM_Networks[] = {
{"646 04", "Telma"},
{"647 00", "Orange"},
{"647 01", "BJT Partners"},
- {"647 02", "Outremer"},
+ {"647 02", "only"},
{"647 10", "SFR Reunion"},
{"648 01", "Net*One"},
{"648 03", "Telecel"},
@@ -2192,16 +2393,20 @@ const GSM_CodeName GSM_Networks[] = {
{"649 01", "MTC"},
{"649 02", "switch"},
{"649 03", "TN Mobile"},
+ {"649 04", "Paratus Telecommunications (Pty)"},
+ {"649 05", "Demshi Investments CC"},
{"650 01", "TNM"},
+ {"650 02", "Access"},
{"650 10", "Airtel"},
{"651 01", "Vodacom"},
- {"651 02", "Econet Ezi-cel"},
+ {"651 02", "Econet Telecom"},
{"652 01", "Mascom"},
{"652 02", "Orange"},
{"652 04", "BTC Mobile"},
{"653 01", "SPTC"},
{"653 10", "Swazi MTN"},
- {"654 01", "Comoros Telecom"},
+ {"654 01", "HURI"},
+ {"654 02", "TELCO SA"},
{"655 01", "Vodacom"},
{"655 02", "Telkom"},
{"655 04", "Sasol (Pty) Ltd."},
@@ -2216,8 +2421,10 @@ const GSM_CodeName GSM_Networks[] = {
{"655 17", "Sishen Iron Ore Company (Ltd) Pty"},
{"655 19", "iBurst"},
{"655 21", "Cape Town Metropolitan Council"},
+ {"655 24", "SMSPortal (Pty) Ltd."},
{"655 25", "Wirels Connect"},
{"655 27", "A to Z Vaal Industrial Supplies Pty Ltd"},
+ {"655 28", "Hymax Talking Solutions (Pty) Ltd"},
{"655 30", "Bokamoso Consortium"},
{"655 31", "Karabo Telecoms (Pty) Ltd."},
{"655 32", "Ilizwi Telecommunications"},
@@ -2225,18 +2432,24 @@ const GSM_CodeName GSM_Networks[] = {
{"655 34", "Bokone Telecoms Pty Ltd"},
{"655 35", "Kingdom Communications Pty Ltd"},
{"655 36", "Amatole Telecommunications Pty Ltd"},
+ {"655 38", "iBurst"},
{"655 41", "South African Police Service"},
+ {"655 46", "SMS Cellular Services (Pty) Ltd"},
{"655 50", "Ericsson South Africa (Pty) Ltd"},
{"655 51", "Integrat (Pty) Ltd"},
+ {"655 73", "iBurst"},
+ {"655 74", "iBurst"},
{"657 01", "Eritel"},
+ {"658 01", "Sure"},
{"659 02", "MTN"},
{"659 03", "Gemtel"},
{"659 04", "Vivacell"},
{"659 06", "Zain"},
{"659 07", "Sudani"},
- {"702 67", "DigiCel"},
+ {"702 67", "DigiCell"},
{"702 68", "INTELCO"},
- {"702 99", "Smart"},
+ {"702 69", "SMART"},
+ {"702 99", "SMART"},
{"704 01", "Claro"},
{"704 02", "Tigo"},
{"704 03", "movistar"},
@@ -2251,21 +2464,21 @@ const GSM_CodeName GSM_Networks[] = {
{"708 040", "Digicel"},
{"710 21", "Claro"},
{"710 30", "movistar"},
- {"710 73", "SERCOM"},
+ {"710 73", "Claro"},
{"712 01", "Kolbi ICE"},
{"712 02", "Kolbi ICE"},
{"712 03", "Claro"},
{"712 04", "movistar"},
- {"712 20", "'''full'''movil"},
+ {"712 20", "fullmovil"},
{"714 01", "Cable & Wireless"},
{"714 02", "movistar"},
{"714 03", "Claro"},
{"714 04", "Digicel"},
{"716 06", "Movistar"},
- {"716 07", "NEXTEL"},
- {"716 10", "Claro (TIM)"},
- {"716 15", "Viettel Mobile"},
- {"716 17", "NEXTEL"},
+ {"716 07", "Entel"},
+ {"716 10", "Claro"},
+ {"716 15", "Bitel"},
+ {"716 17", "Entel"},
{"722 010", "Movistar"},
{"722 020", "Nextel"},
{"722 034", "Personal"},
@@ -2281,48 +2494,52 @@ const GSM_CodeName GSM_Networks[] = {
{"724 02", "TIM"},
{"724 03", "TIM"},
{"724 04", "TIM"},
- {"724 05", "Claro BR"},
+ {"724 05", "Claro"},
{"724 06", "Vivo"},
{"724 10", "Vivo"},
{"724 11", "Vivo"},
{"724 15", "Sercomtel"},
{"724 16", "Brasil Telecom GSM"},
- {"724 18", "Datora (Vodafone)"},
+ {"724 18", "datora"},
{"724 23", "Vivo"},
{"724 24", "Amazonia Celular"},
{"724 30", "Oi"},
{"724 31", "Oi"},
- {"724 32", "CTBC Celular"},
- {"724 33", "CTBC Celular"},
- {"724 34", "CTBC Celular"},
+ {"724 32", "Algar Telecom"},
+ {"724 33", "Algar Telecom"},
+ {"724 34", "Algar Telecom"},
{"724 35", "Telcom Telecomunicacoes"},
{"724 36", "Options Telecomunicacoes"},
{"724 37", "aeiou"},
- {"724 38", "Claro BR"},
+ {"724 38", "Claro"},
{"724 39", "Nextel"},
- {"724 54", "PORTO SEGURO TELECOMUNICACOES"},
+ {"724 54", "Conecta"},
{"724 99", "Local"},
{"730 01", "entel"},
{"730 02", "movistar"},
{"730 03", "Claro"},
- {"730 04", "Nextel"},
+ {"730 04", "WOM"},
{"730 05", "Multikom S.A."},
{"730 06", "Telefonica del Sur"},
{"730 07", "movistar"},
{"730 08", "VTR Movil"},
- {"730 09", "Nextel"},
+ {"730 09", "WOM"},
{"730 10", "entel"},
{"730 11", "Celupago S.A."},
- {"730 12", "Colo-Colo Movil Wanderers Movil"},
+ {"730 12", "Colo-Colo Movil<br />Wanderers Movil"},
{"730 13", "Virgin Mobile"},
{"730 14", "Netline Telefonica Movil Ltda"},
{"730 15", "Cibeles Telecom S.A."},
+ {"730 16", "Nomade Telecomunicaciones S.A."},
+ {"730 17", "COMPATEL Chile Limitada"},
+ {"730 18", "Empresas Bunker S.A."},
+ {"730 19", "movil Falabella"},
{"730 99", "Will"},
{"732 001", "movistar"},
{"732 002", "Edatel"},
{"732 003", "LLEIDA S.A.S."},
{"732 004", "COMPATEL COLOMBIA SAS"},
- {"732 020", "Une-EPM"},
+ {"732 020", "Tigo"},
{"732 099", "EMCALI"},
{"732 101", "Claro"},
{"732 102", "Bellsouth Colombia"},
@@ -2331,13 +2548,13 @@ const GSM_CodeName GSM_Networks[] = {
{"732 123", "movistar"},
{"732 130", "AVANTEL"},
{"732 142", "Une EPM Telecomunicaciones S.A. E.S.P."},
- {"732 154", "Virgin Mobile Colombia S.A.S."},
+ {"732 154", "Virgin Mobile"},
{"732 165", "Colombia Movil S.A. ESP"},
{"732 176", "DirecTV Colombia Ltda"},
- {"732 187", "Empresa de Telecomunicaciones de Bogota S.A. ESP"},
+ {"732 187", "eTb"},
{"734 01", "Digitel"},
{"734 02", "Digitel GSM"},
- {"734 03", "Digitel"},
+ {"734 03", "DirecTV"},
{"734 04", "movistar"},
{"734 06", "Movilnet"},
{"736 01", "Viva"},
@@ -2345,6 +2562,8 @@ const GSM_CodeName GSM_Networks[] = {
{"736 03", "Tigo"},
{"738 01", "Digicel"},
{"738 02", "GT&T Cellink Plus"},
+ {"738 03", "Quark Communications Inc."},
+ {"738 05", "eGovernment Unit, Ministry of the Presidency"},
{"740 00", "Movistar"},
{"740 01", "Claro"},
{"740 02", "CNT Mobile"},
@@ -2356,7 +2575,7 @@ const GSM_CodeName GSM_Networks[] = {
{"744 06", "Copaco"},
{"746 02", "Telesur"},
{"746 03", "Digicel"},
- {"746 04", "Uniqa"},
+ {"746 04", "Digicel"},
{"746 05", "Telesur"},
{"748 00", "Antel"},
{"748 01", "Antel"},
@@ -2410,8 +2629,15 @@ const GSM_CodeName GSM_Networks[] = {
{"901 44", "AT&T Inc."},
{"901 45", "Advanced Wireless Network Company Limited"},
{"901 46", "Telecom26 AG"},
+ {"901 47", "Ooredoo"},
+ {"901 48", "Com4"},
+ {"901 49", "Zain Kuwait"},
+ {"901 50", "EchoStar Mobile"},
+ {"901 51", "VisionNG"},
+ {"901 52", "Manx Telecom Trading Ltd."},
+ {"901 53", "Deutsche Telekom AG"},
{"901 88", "UN Office for the Coordination of Humanitarian Affairs (OCHA)"},
-
+ {"995 01", "FonePlus"},
{"999 99", "GammuTel"},
{"", ""},