diff --git a/SensorsAnalyticsSDK.podspec b/SensorsAnalyticsSDK.podspec index 3b8af140..6fe2554c 100644 --- a/SensorsAnalyticsSDK.podspec +++ b/SensorsAnalyticsSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SensorsAnalyticsSDK" - s.version = "4.5.17" + s.version = "4.5.18" s.summary = "The official iOS SDK of Sensors Analytics." s.homepage = "http://www.sensorsdata.cn" s.source = { :git => 'https://github.com/sensorsdata/sa-sdk-ios.git', :tag => "v#{s.version}" } diff --git a/SensorsAnalyticsSDK/ChannelMatch/SAChannelMatchManager.m b/SensorsAnalyticsSDK/ChannelMatch/SAChannelMatchManager.m index 84bce243..40e45621 100644 --- a/SensorsAnalyticsSDK/ChannelMatch/SAChannelMatchManager.m +++ b/SensorsAnalyticsSDK/ChannelMatch/SAChannelMatchManager.m @@ -263,7 +263,8 @@ - (NSDictionary *)channelPropertiesWithEvent:(NSString *)event { } - (void)archiveTrackChannelEventNames { - [[SAStoreManager sharedInstance] setObject:self.trackChannelEventNames forKey:kSAEventPropertyChannelDeviceInfo]; + NSSet *copyEventNames = [[NSSet alloc] initWithSet:self.trackChannelEventNames copyItems:YES]; + [[SAStoreManager sharedInstance] setObject:copyEventNames forKey:kSAEventPropertyChannelDeviceInfo]; } - (NSDictionary *)channelInfoWithEvent:(NSString *)event { diff --git a/SensorsAnalyticsSDK/Core/SAConstants.m b/SensorsAnalyticsSDK/Core/SAConstants.m index 87749288..4442b28e 100644 --- a/SensorsAnalyticsSDK/Core/SAConstants.m +++ b/SensorsAnalyticsSDK/Core/SAConstants.m @@ -27,10 +27,6 @@ #import "SensorsAnalyticsSDK+Private.h" #import "SACoreResources.h" -#if __has_include("SACoreResources+English.h") -#import "SACoreResources+English.h" -#endif - #pragma mark - Track Timer NSString *const kSAEventIdSuffix = @"_SATimer"; @@ -153,13 +149,8 @@ void sensorsdata_dispatch_safe_sync(dispatch_queue_t queue,DISPATCH_NOESCAPE dis static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ -#if __has_include("SACoreResources+English.h") - // 获取英文资源 - languageResources = [SACoreResources englishLanguageResources]; -#else - // 默认加载中文资源 - languageResources = [SACoreResources defaultLanguageResources]; -#endif + // 加载语言资源 + languageResources = [SACoreResources defaultLanguageResources]; }); diff --git a/SensorsAnalyticsSDK/Core/SACoreResources.m b/SensorsAnalyticsSDK/Core/SACoreResources.m index 691d645d..aba86df9 100644 --- a/SensorsAnalyticsSDK/Core/SACoreResources.m +++ b/SensorsAnalyticsSDK/Core/SACoreResources.m @@ -23,28 +23,35 @@ #endif #import "SACoreResources.h" +#if __has_include("SACoreResources+English.h") +#import "SACoreResources+English.h" +#endif @implementation SACoreResources + (NSArray *)analyticsFlows { - return @[@{@"id":@"sensorsdata_track_flow",@"name":@"Track and flush",@"tasks":@[@"dynamic_property",@"serial_queue",@"track_task",@"flush_task",],},@{@"id":@"sensorsdata_flush_flow",@"name":@"Record flush",@"tasks":@[@"serial_queue",@"flush_task",],},]; + return @[@{@"id":@"sensorsdata_track_flow",@"name":@"Track and flush",@"tasks":@[@"dynamic_property",@"serial_queue",@"track_task",@"flush_task"]},@{@"id":@"sensorsdata_flush_flow",@"name":@"Record flush",@"tasks":@[@"serial_queue",@"flush_task"]}]; } + (NSArray *)analyticsTasks { - return @[@{@"id":@"dynamic_property",@"name":@"Build dynamic properties",@"nodes":@[@"dynamic_property",],},@{@"id":@"serial_queue",@"name":@"Switch serialQueue",@"nodes":@[@"serial_queue",],},@{@"id":@"track_task",@"name":@"Track",@"nodes":@[@"remote_config",@"event_validate",@"ID-Mapping",@"correct_userId",@"properties",@"event_callback",@"event_result",@"encrypt",@"insert",],},@{@"id":@"flush_task",@"name":@"Record flush",@"nodes":@[@"can_flush",@"select_records",@"encrypt_records",@"update_records_status",@"flush_json",@"flush_http_body",@"flush",@"serial_queue_sync",@"flush_end",@"repeat_flush",],},]; + return @[@{@"id":@"dynamic_property",@"name":@"Build dynamic properties",@"nodes":@[@"dynamic_property"]},@{@"id":@"serial_queue",@"name":@"Switch serialQueue",@"nodes":@[@"serial_queue"]},@{@"id":@"track_task",@"name":@"Track",@"nodes":@[@"remote_config",@"event_validate",@"ID-Mapping",@"correct_userId",@"properties",@"event_callback",@"event_result",@"encrypt",@"insert"]},@{@"id":@"flush_task",@"name":@"Record flush",@"nodes":@[@"can_flush",@"select_records",@"encrypt_records",@"update_records_status",@"flush_json",@"flush_http_body",@"flush",@"serial_queue_sync",@"flush_end",@"repeat_flush"]}]; } + (NSArray *)analyticsNodes { - return @[@{@"id":@"dynamic_property",@"name":@"Builder dynamic superProperty",@"interceptor":@"SADynamicSuperPropertyInterceptor",},@{@"id":@"serial_queue",@"name":@"Switch serialQueue",@"interceptor":@"SASerialQueueInterceptor",},@{@"id":@"remote_config",@"name":@"RemoteConfig",@"interceptor":@"SARemoteConfigInterceptor",},@{@"id":@"event_validate",@"name":@"Data verification",@"interceptor":@"SAEventValidateInterceptor",},@{@"id":@"ID-Mapping",@"name":@"ID-Mapping",@"interceptor":@"SAIDMappingInterceptor",},@{@"id":@"correct_userId",@"name":@"CorrectUserInfo",@"interceptor":@"SACorrectUserIdInterceptor",},@{@"id":@"properties",@"name":@"Properties acquisition",@"interceptor":@"SAPropertyInterceptor",},@{@"id":@"event_callback",@"name":@"Callback",@"interceptor":@"SAEventCallbackInterceptor",},@{@"id":@"event_result",@"name":@"Event Result build finish",@"interceptor":@"SAEventResultInterceptor",},@{@"id":@"encrypt",@"name":@"Encryption",@"interceptor":@"SAEncryptInterceptor",},@{@"id":@"insert",@"name":@"InsertRecord",@"interceptor":@"SAInsertRecordInterceptor",},@{@"id":@"serial_queue",@"name":@"Switch serialQueue",@"interceptor":@"SASerialQueueInterceptor",},@{@"id":@"can_flush",@"name":@"Can flush",@"interceptor":@"SACanFlushInterceptor",},@{@"id":@"select_records",@"name":@"Query record",@"interceptor":@"SAQueryRecordInterceptor",},@{@"id":@"encrypt_records",@"name":@"Encrypt record",@"interceptor":@"SAEncryptInterceptor",},@{@"id":@"update_records_status",@"name":@"Update record in database",@"interceptor":@"SAUpdateRecordInterceptor",},@{@"id":@"flush_json",@"name":@"Build flush json",@"interceptor":@"SAFlushJSONInterceptor",},@{@"id":@"flush_http_body",@"name":@"Build flush HTTPBody",@"interceptor":@"SAFlushHTTPBodyInterceptor",},@{@"id":@"flush",@"name":@"flush",@"interceptor":@"SAFlushInterceptor",},@{@"param":@{@"sync":@(1),},@"id":@"serial_queue_sync",@"name":@"Switch serialQueue",@"interceptor":@"SASerialQueueInterceptor",},@{@"id":@"flush_end",@"name":@"Flush end",@"interceptor":@"SADeleteRecordInterceptor",},@{@"id":@"repeat_flush",@"name":@"Repeat flush",@"interceptor":@"SARepeatFlushInterceptor",},]; + return @[@{@"id":@"dynamic_property",@"name":@"Builder dynamic superProperty",@"interceptor":@"SADynamicSuperPropertyInterceptor"},@{@"id":@"serial_queue",@"name":@"Switch serialQueue",@"interceptor":@"SASerialQueueInterceptor"},@{@"id":@"remote_config",@"name":@"RemoteConfig",@"interceptor":@"SARemoteConfigInterceptor"},@{@"id":@"event_validate",@"name":@"Data verification",@"interceptor":@"SAEventValidateInterceptor"},@{@"id":@"ID-Mapping",@"name":@"ID-Mapping",@"interceptor":@"SAIDMappingInterceptor"},@{@"id":@"correct_userId",@"name":@"CorrectUserInfo",@"interceptor":@"SACorrectUserIdInterceptor"},@{@"id":@"properties",@"name":@"Properties acquisition",@"interceptor":@"SAPropertyInterceptor"},@{@"id":@"event_callback",@"name":@"Callback",@"interceptor":@"SAEventCallbackInterceptor"},@{@"id":@"event_result",@"name":@"Event Result build finish",@"interceptor":@"SAEventResultInterceptor"},@{@"id":@"encrypt",@"name":@"Encryption",@"interceptor":@"SAEncryptInterceptor"},@{@"id":@"insert",@"name":@"InsertRecord",@"interceptor":@"SAInsertRecordInterceptor"},@{@"id":@"serial_queue",@"name":@"Switch serialQueue",@"interceptor":@"SASerialQueueInterceptor"},@{@"id":@"can_flush",@"name":@"Can flush",@"interceptor":@"SACanFlushInterceptor"},@{@"id":@"select_records",@"name":@"Query record",@"interceptor":@"SAQueryRecordInterceptor"},@{@"id":@"encrypt_records",@"name":@"Encrypt record",@"interceptor":@"SAEncryptInterceptor"},@{@"id":@"update_records_status",@"name":@"Update record in database",@"interceptor":@"SAUpdateRecordInterceptor"},@{@"id":@"flush_json",@"name":@"Build flush json",@"interceptor":@"SAFlushJSONInterceptor"},@{@"id":@"flush_http_body",@"name":@"Build flush HTTPBody",@"interceptor":@"SAFlushHTTPBodyInterceptor"},@{@"id":@"flush",@"name":@"flush",@"interceptor":@"SAFlushInterceptor"},@{@"param":@{@"sync":@(1)},@"id":@"serial_queue_sync",@"name":@"Switch serialQueue",@"interceptor":@"SASerialQueueInterceptor"},@{@"id":@"flush_end",@"name":@"Flush end",@"interceptor":@"SADeleteRecordInterceptor"},@{@"id":@"repeat_flush",@"name":@"Repeat flush",@"interceptor":@"SARepeatFlushInterceptor"}]; } + (NSDictionary *)mcc { - return @{@"334040":@"AT&T/IUSACell",@"42577":@"Hot Mobile/Mirs",@"45417":@"Vodafone/SmarTone",@"44032":@"NTT Docomo",@"24802":@"Radiolinja Eesti",@"376352":@"IslandCom Communications Ltd.",@"74000":@"MOVISTAR/OteCel",@"44040":@"SoftBank Mobile Corp",@"40411":@"Sterling Cellular Ltd.",@"25092":@"Printelefone",@"50506":@"H3G Ltd.",@"44009":@"NTT Docomo",@"25568":@"Beeline",@"22001":@"Telenor/Mobtel",@"35830":@"Cingular Wireless",@"311830":@"Thumb Cellular Limited Partnership",@"25704":@"BeST",@"44017":@"NTT Docomo",@"41820":@"ZAIN/Atheer/Orascom",@"50514":@"AAPT Ltd. ",@"41305":@"Airtel",@"23402":@"O2 Ltd.",@"29341":@"Mobitel",@"44025":@"NTT Docomo",@"311270":@"Verizon Wireless",@"45418":@"CSL Ltd.",@"23410":@"O2 Ltd.",@"44033":@"NTT Docomo",@"40404":@"Idea Cellular Ltd.",@"24803":@"Tele2 Eesti AS",@"74001":@"Claro/Port",@"44041":@"SoftBank Mobile Corp",@"40412":@"Escotel Mobile Communications",@"26606":@"CTS Mobile",@"41805":@"Asia Cell",@"41677":@"Orange/Petra",@"46699":@"TransAsia",@"25093":@"Telecom XXL",@"311282":@"Verizon Wireless",@"50507":@"Vodafone",@"30801":@"Ameris",@"22002":@"Telenor/Mobtel",@"404045":@"Bharti Airtel Limited (Karnataka) (India)",@"44018":@"NTT Docomo",@"23403":@"Airtel/Vodafone",@"44026":@"NTT Docomo",@"45419":@"HKT/PCCW",@"310740":@"Telemetrix Inc.",@"23411":@"O2 Ltd.",@"44034":@"NTT Docomo",@"40405":@"Fascel",@"310460":@"TMP Corporation",@"346006":@"Digicel Ltd.",@"37650":@"Digicel",@"310180":@"Cingular Wireless",@"74002":@"Alegro/Telcsa",@"40413":@"Barakhamba Sales & Serv.",@"40277":@"TashiCell",@"24804":@"Top Connect OU",@"44042":@"SoftBank Mobile Corp",@"467193":@"Sun Net",@"50508":@"Railcorp/Vodafone",@"44050":@"KDDI Corporation",@"22003":@"MTS/Telekom Srbija",@"21601":@"Pannon/Telenor",@"50516":@"Victorian Rail Track Corp. (VicTrack)",@"44019":@"NTT Docomo",@"311271":@"Verizon Wireless",@"50524":@"Advanced Comm Tech Pty.",@"44027":@"NTT Docomo",@"41830":@"Orascom Telecom",@"23412":@"Railtrack Plc",@"44035":@"NTT Docomo",@"65301":@"SwaziTelecom",@"302320":@"mobilicity",@"45428":@"China Mobile/Peoples",@"23420":@"H3G Hutchinson",@"90111":@"InMarSAT",@"73601":@"Viva/Nuevatel",@"40414":@"Spice",@"311283":@"Verizon Wireless",@"376050":@"Digicel TCI Ltd",@"20201":@"Cosmote",@"334030":@"Movistar/Pegaso",@"44051":@"KDDI Corporation",@"40422":@"Idea Cellular Ltd.",@"50509":@"Airnet Commercial Australia Ltd..",@"366020":@"Cingular Wireless/Digicel",@"44043":@"SoftBank Mobile Corp",@"40430":@"Usha Martin Telecom",@"41308":@"H3G Hutchison ",@"44028":@"NTT Docomo",@"36251":@"TELCELL GSM",@"44036":@"NTT Docomo",@"40407":@"Idea Cellular Ltd.",@"45429":@"HKT/PCCW",@"90112":@"Maritime Communications Partner AS",@"44044":@"SoftBank Mobile Corp",@"73602":@"Entel Pcs",@"311260":@"SLO Cellular Inc / Cellular One of San Luis",@"65310":@"Swazi MTN",@"40415":@"Aircel Digilink India",@"26609":@"eazi telecom",@"20202":@"Cosmote",@"41808":@"Sanatel",@"44052":@"KDDI Corporation",@"20210":@"Tim/Wind",@"22005":@"VIP Mobile",@"44060":@"NTT Docomo",@"311272":@"Verizon Wireless",@"50526":@"Dialogue Communications Pty Ltd",@"44029":@"NTT Docomo",@"90105":@"Thuraya Satellite",@"35850":@"Digicel (St Lucia) Limited",@"23414":@"HaySystems",@"732187":@"eTb",@"44037":@"NTT Docomo",@"41840":@"Korek",@"64901":@"MTC",@"90113":@"Antarctica",@"23422":@"Routotelecom",@"44045":@"SoftBank Mobile Corp",@"73603":@"Tigo",@"40416":@"Hexcom India",@"63001":@"Vodacom",@"23430":@"Everyth. Ev.wh./T-Mobile",@"20203":@"OTE Hellenic Telecommunications Organization SA",@"311284":@"Verizon Wireless",@"40424":@"Idea Cellular Ltd.",@"310730":@"United States Cellular Corp.",@"310450":@"Northeast Colorado Cellular Inc.",@"44053":@"KDDI Corporation",@"44061":@"NTT Docomo",@"310170":@"AT&T Wireless Inc.",@"50519":@"Lycamobile Pty Ltd",@"64282":@"Spacetel / Econet / Leo ",@"55201":@"Palau National Communications Corp. (PNCC) (Palau",@"23407":@"Cable and Wireless ",@"364390":@"Bahamas Telco. Comp.",@"46000":@"中国移动",@"23415":@"Vodafone",@"44038":@"NTT Docomo",@"40409":@"Reliance Telecom Private",@"64902":@"Switch/Nam. Telec.",@"90114":@"AeroMobile",@"23423":@"Vectofone Mobile Wifi",@"44046":@"SoftBank Mobile Corp",@"708001":@"SERCOM/CLARO",@"40417":@"Aircel",@"63002":@"Airtel/ZAIN",@"23431":@"Everyth. Ev.wh./T-Mobile",@"29370":@"Telemach/TusMobil/VEGA",@"20204":@"Organismos Sidirodromon Ellados (OSE)",@"40425":@"Aircel",@"45447":@"shared by private TETRA systems",@"44054":@"KDDI Corporation",@"44062":@"NTT Docomo",@"62101":@"Visafone",@"40433":@"Aircel",@"311273":@"Verizon Wireless",@"70401":@"Claro",@"23408":@"OnePhone",@"44070":@"KDDI Corporation",@"40441":@"RPG Cellular",@"334020":@"TelCel/America Movil",@"46001":@"中国联通",@"23416":@"Opal Telecom",@"44039":@"NTT Docomo",@"63510":@"MTN/Rwandacell",@"64903":@"Leo / Orascom",@"23424":@"Stour Marine",@"44047":@"SoftBank Mobile Corp",@"40418":@"Reliance Telecom Private",@"62601":@"CSTmovel",@"311285":@"Verizon Wireless",@"23432":@"Everyth. Ev.wh./T-Mobile",@"20205":@"Vodafone",@"25099":@"BeeLine/VimpelCom",@"311810":@"Bluegrass Wireless LLC",@"44055":@"KDDI Corporation",@"44063":@"NTT Docomo",@"40434":@"BSNL",@"311250":@"Wave Runner LLC",@"54801":@"Telecom Cook Islands",@"70402":@"TIGO/COMCEL",@"23409":@"Tismi",@"44071":@"KDDI Corporation",@"40442":@"Aircel",@"46002":@"中国移动",@"23417":@"FlexTel",@"61201":@"Comstar",@"40450":@"Reliance Telecom Private",@"21630":@"T-mobile/Magyar",@"360050":@"Digicel",@"23425":@"Truphone",@"44048":@"SoftBank Mobile Corp",@"52000":@"Hutch/CAT CDMA",@"708002":@"Telefonica/CELTEL",@"40419":@"Escotel Mobile Communications",@"23433":@"Everyth. Ev.wh./Orange",@"732130":@"Avantel SAS",@"29364":@"T-2 d.o.o.",@"46010":@"中国联通",@"44056":@"KDDI Corporation",@"310990":@"E.N.M.R. Telephone Coop.",@"20214":@"CyTa Mobile",@"44064":@"NTT Docomo",@"70267":@"DigiCell",@"61701":@"Orange/Cellplus",@"311274":@"Verizon Wireless",@"29001":@"Tele Greenland",@"70403":@"Telefonica",@"44072":@"KDDI Corporation",@"732142":@"UNE EPM Telecomunicaciones SA ESP",@"310440":@"Dobson Cellular Systems",@"502195":@"XOX Com Sdn Bhd",@"23418":@"Cloud9/wire9 Tel.",@"61202":@"Atlantik Tel./Moov",@"45601":@"Mobitel/Cam GSM",@"44080":@"KDDI Corporation",@"310160":@"T-Mobile",@"53901":@"Tonga Communications",@"23426":@"Lycamobile",@"46011":@"中国电信",@"44049":@"NTT Docomo",@"52001":@"AIS/Advanced Info Service",@"374140":@"LaqTel Ltd.",@"29501":@"Swisscom FL AG",@"23434":@"Everyth. Ev.wh./Orange",@"732154":@"Virgin Mobile Colombia SAS",@"20207":@"AMD Telecom SA",@"40428":@"Aircel",@"63005":@"SuperCell",@"311286":@"Verizon Wireless",@"40451":@"BSNL",@"60301":@"ATM Mobils",@"46003":@"中国电信",@"40436":@"Reliance Telecom Private",@"61702":@"Mahanagar Telephone",@"70268":@"International Telco (INTELCO)",@"44065":@"NTT Docomo",@"23450":@"Jersey Telecom",@"44073":@"KDDI Corporation",@"40444":@"Spice",@"61710":@"Emtel Ltd",@"52501":@"Singtel",@"44081":@"KDDI Corporation",@"62120":@"Airtel/ZAIN/Econet",@"61203":@"Orange",@"41845":@"Mobitel (Iraq-Kurdistan) and Moutiny",@"23419":@"PMN/Teleware",@"45602":@"Smart Mobile",@"63513":@"TIGO",@"23427":@"Vodafone",@"334010":@"NEXTEL",@"40460":@"Aircel Digilink India",@"40452":@"Reliance Telecom Private",@"46004":@"中国卫通",@"29502":@"Orange",@"23435":@"JSC Ingenicum",@"46020":@"中国铁通",@"44058":@"NTT Docomo",@"40429":@"Aircel",@"60302":@"Orascom / DJEZZY",@"60801":@"Orange/Sonatel",@"44066":@"NTT Docomo",@"311275":@"Verizon Wireless",@"61703":@"Mahanagar Telephone",@"50571":@"Telstra Corp. Ltd.",@"28601":@"Turkcell",@"44074":@"KDDI Corporation",@"23451":@"Jersey Telecom",@"311800":@"Bluegrass Wireless LLC",@"52502":@"Singtel",@"44082":@"KDDI Corporation",@"35001":@"Telecommunications (Bermuda & West Indies) Ltd (Digicel Bermuda)",@"61204":@"Comium",@"45603":@"QB/Cambodia Adv. Comms.",@"63514":@"Airtel",@"40453":@"BSNL",@"44090":@"SoftBank Mobile Corp",@"23428":@"Marthon Telecom",@"311287":@"Verizon Wireless",@"46005":@"中国电信",@"52003":@"Advanced Wireless Networks/AWN",@"60802":@"TIGO/Sentel GSM",@"23436":@"Cable and Wireless Isle of Man",@"20209":@"Tim/Wind",@"60303":@"Oreedo/Wataniya / Nedjma ",@"27201":@"Vodafone Eircell",@"44067":@"NTT Docomo",@"40438":@"BSNL",@"50572":@"Telstra Corp. Ltd.",@"28602":@"Vodafone-Telsim",@"43801":@"MTS/Barash Communication",@"44075":@"KDDI Corporation",@"52503":@"MobileOne Ltd",@"310980":@"AT&T Wireless Inc.",@"44083":@"KDDI Corporation",@"35002":@"M3 Wireless Ltd",@"61205":@"MTN",@"50201":@"Art900",@"45604":@"Cambodia Advance Communications Co. Ltd (CADCOMMS)",@"40454":@"BSNL",@"46006":@"中国联通",@"35010":@"DigiCel / Cingular",@"62130":@"MTN",@"310710":@"Arctic Slope Telephone Association Cooperative Inc.",@"52004":@"True Move/Orange",@"36403":@"Smart Communications",@"40462":@"BSNL",@"23437":@"Synectiv Ltd.",@"40470":@"Hexacom India",@"310430":@"GCI Communication Corp.",@"60803":@"Expresso/Sudatel",@"27202":@"Three/O2/Digifone",@"310150":@"AT&T Wireless Inc.",@"44068":@"NTT Docomo",@"311276":@"Verizon Wireless",@"36291":@"SETEL GSM",@"52020":@"ACeS Thailand - ACeS Regional Services Co Ltd",@"374130":@"Digicel",@"28603":@"AVEA/Aria",@"43802":@"Altyn Asyr/TM-Cell",@"44076":@"KDDI Corporation",@"44084":@"KDDI Corporation",@"45605":@"Smart Mobile",@"61206":@"OriCell",@"40455":@"BSNL",@"52512":@"GRID Communications Pte Ltd",@"46007":@"中国移动",@"44092":@"SoftBank Mobile Corp",@"42901":@"NT Mobile / Namaste",@"28967":@"Aquafon",@"312040":@"Custer Telephone Cooperative Inc.",@"52005":@"Total Access (DTAC)",@"50210":@"Digi Telecommunications",@"29505":@"Telecom FL1 AG",@"41001":@"Mobilink",@"344030":@"APUA PCS",@"40471":@"BSNL",@"311288":@"Verizon Wireless",@"27203":@"Meteor Mobile Ltd.",@"26801":@"Vodafone",@"42402":@"Etisalat",@"44069":@"NTT Docomo",@"27211":@"Tesco Mobile/Liffey Telecom",@"28604":@"AVEA/Aria",@"44077":@"KDDI Corporation",@"52505":@"Starhub",@"41501":@"MIC1 (Alfa)",@"44085":@"KDDI Corporation",@"45606":@"Smart Mobile",@"61207":@"Aircomm SA",@"40456":@"Escotel Mobile Communications",@"36269":@"Polycom N.V./ Digicel",@"50590":@"Singtel Optus",@"44093":@"SoftBank Mobile Corp",@"40464":@"BSNL",@"28968":@"A-Mobile",@"50211":@"MTX Utara",@"42902":@"Ncell",@"46008":@"中国移动",@"29506":@"CUBIC (Liechtenstein",@"62140":@"M-Tel/Nigeria Telecom. Ltd.",@"40472":@"BSNL",@"27204":@"Access Telecom Ltd.",@"40480":@"BSNL",@"42403":@"DU",@"311277":@"Verizon Wireless",@"40101":@"Beeline/KaR-Tel LLP",@"23455":@"Guernsey Telecoms",@"502151":@"Baraka Telecom Sdn Bhd",@"44078":@"Okinawa Cellular Telephone",@"338050":@"DIGICEL/Mossel",@"502198":@"CelCom",@"52506":@"Starhub",@"25901":@"Orange/Voxtel",@"44086":@"KDDI Corporation",@"62125":@"Visafone",@"24001":@"Telia Mobile",@"40457":@"BSNL",@"46009":@"中国联通",@"311289":@"Verizon Wireless",@"44094":@"SoftBank Mobile Corp",@"50212":@"Maxis",@"41003":@"UFONE/PAKTel",@"29507":@"First Mobile AG",@"40473":@"BSNL",@"722070":@"Movistar/Telefonica",@"50220":@"Electcoms Wireless Sdn Bhd",@"52015":@"ACT Mobile",@"310690":@"Keystone Wireless LLC",@"26803":@"NOS/Optimus",@"27205":@"Three/H3G",@"40481":@"BSNL",@"350000":@"Bermuda Digital Communications Ltd (BDC)",@"52023":@"Digital Phone Co.",@"27213":@"Lycamobile",@"40102":@"K-Cell",@"310700":@"Cross Valliant Cellular Partnership",@"27077":@"Millicom Tango GSM",@"36430":@"Bahamas Telco. Comp.",@"44079":@"KDDI Corporation",@"41882":@"Korek",@"310420":@"Cincinnati Bell Wireless LLC",@"25902":@"Moldcell",@"52507":@"Singtel",@"310140":@"GTA Wireless",@"41503":@"MIC2/LibanCell/MTC",@"24002":@"H3G Access AB",@"45608":@"Metfone",@"44087":@"NTT Docomo",@"40458":@"BSNL",@"44095":@"SoftBank Mobile Corp",@"40466":@"BSNL",@"24010":@"Spring Mobil AB",@"50213":@"CelCom",@"374120":@"Bmobile/TSTT",@"41004":@"ZONG/CMPak",@"42904":@"Smart Cell",@"40474":@"BSNL",@"23101":@"Orange",@"26804":@"Lycamobile",@"40482":@"Escorts Telecom Ltd.",@"311278":@"Verizon Wireless",@"62150":@"Glo Mobile",@"36295":@"EOCG Wireless NV",@"312030":@"Cross Wireless Telephone Co.",@"23457":@"Sky UK Limited",@"502152":@"YES",@"22200":@"VOIP Line",@"21670":@"Vodafone",@"25903":@"IDC/Unite ",@"44088":@"KDDI Corporation",@"45609":@"Sotelco/Beeline",@"40459":@"BSNL",@"44096":@"SoftBank Mobile Corp",@"732111":@"TIGO/Colombia Movil",@"24011":@"Lindholmen Science Park AB",@"40467":@"Reliance Telecom Private",@"40475":@"BSNL",@"23102":@"T-Mobile",@"27207":@"eircom Ltd",@"40483":@"Reliable Internet Services",@"311490":@"Sprint Spectrum",@"732123":@"Movistar",@"23458":@"Manx Telecom",@"311500":@"Cambridge Telephone Company Inc.",@"22201":@"TIM",@"21671":@"UPC Magyarorszag Kft.",@"25904":@"Eventis Mobile",@"311220":@"United States Cellular Corp.",@"358110":@"Cable & Wireless",@"44089":@"KDDI Corporation",@"24004":@"H3G Access AB",@"41892":@"Itisaluna and Kalemat",@"44097":@"SoftBank Mobile Corp",@"45618":@"MFone/Camshin/Cellcard",@"24012":@"Lycamobile Ltd",@"40468":@"Mahanagar Telephone Nigam",@"41006":@"Telenor",@"40476":@"BSNL",@"24020":@"Wireless Maingate AB",@"23103":@"4Ka",@"52018":@"Total Access (DTAC)",@"26806":@"MEO/TMN",@"311279":@"Verizon Wireless",@"28988":@"A-Mobile",@"722340":@"Telecom Personal S.A.",@"502153":@"Webe/Packet One Networks (Malaysia) Sdn Bhd",@"62160":@"ETISALAT",@"310960":@"Uintah Basin Electronics Telecommunications Inc.",@"22202":@"Elsacom",@"25905":@"IDC/Unite ",@"310680":@"AT&T Wireless Inc.",@"22210":@"Vodafone",@"24005":@"Svenska UMTS-N",@"23475":@"Inquam Telecom Ltd",@"44098":@"SoftBank Mobile Corp",@"40469":@"Mahanagar Telephone Nigam",@"310410":@"AT&T Wireless Inc.",@"50216":@"Digi Telecommunications",@"24013":@"Ventelo Sverige AB",@"41007":@"Warid Telecom",@"310130":@"North Carolina RSA 3 Cellular Tel. Co.",@"40477":@"BSNL",@"23104":@"T-Mobile",@"23491":@"Vodafone",@"27209":@"Clever Communications Ltd",@"26807":@"NOS/Optimus",@"40485":@"Reliance Telecom Private",@"750001":@"Cable and Wireless South Atlantic Ltd (Falkland Islands",@"65001":@"TNM/Telekom Network Ltd.",@"312290":@"Uintah Basin Electronics Telecommunications Inc.",@"53943":@"Shoreline Communication",@"50588":@"Localstar Holding Pty. Ltd",@"24006":@"Telenor (Vodafone)",@"23476":@"BT Group",@"44099":@"NTT Docomo",@"24014":@"TDC Sverige AB",@"50217":@"Maxis",@"72400":@"Nextel (Telet)",@"41008":@"Instaphone",@"65501":@"Vodacom",@"40478":@"Idea Cellular Ltd.",@"24022":@"Eu Tel AB",@"23105":@"Orange",@"23492":@"Cable and Wireless ",@"73801":@"DigiCel",@"40486":@"Barakhamba Sales & Serv.",@"24030":@"NextGen Mobile Ltd (CardBoardFish)",@"732101":@"Comcel S.A. Occel S.A./Celcaribe",@"722341":@"Telecom Personal S.A.",@"40107":@"Dalacom/Altel",@"502154":@"Tron/Talk Focus Sdn Bhd",@"65010":@"Airtel/Zain/Celtel ltd.",@"24007":@"Tele2 Sverige AB",@"311480":@"Verizon Wireless",@"23477":@"BT Group",@"64101":@"Airtel/Celtel",@"24015":@"Wireless Maingate Nordic AB",@"50218":@"U Mobile",@"72401":@"Vivo S.A./Telemig ",@"21303":@"Mobiland",@"65502":@"8.ta",@"40479":@"CellOne A&N",@"24023":@"Infobip Ltd.",@"23106":@"O2",@"73802":@"Cellink Plus",@"65510":@"MTN",@"41532":@"Cellis",@"40487":@"Escorts Telecom Ltd.",@"20402":@"Tele2",@"64601":@"Airtel/MADACOM",@"20410":@"KPN Telecom B.V.",@"21803":@"Eronet Mobile",@"27099":@"Orange/VOXmobile S.A.",@"722330":@"Claro/ CTI/AMX",@"24008":@"Telenor (Vodafone)",@"23478":@"Wave Telecom Ltd",@"55280":@"Palau Mobile Corp. (PMC) (Palau",@"310950":@"Unknown",@"50219":@"CelCom",@"24016":@"42 Telecom AB",@"72402":@"TIM",@"310670":@"Northstar",@"64110":@"MTN Ltd.",@"24024":@"Telenor (Vodafone)",@"72410":@"Vivo S.A./Telemig ",@"310390":@"Yorkville Telephone Cooperative",@"41533":@"Cellis",@"63201":@"GuineTel",@"40488":@"Escorts Telecom Ltd.",@"732102":@"Movistar",@"23115":@"Orange",@"20403":@"Voiceworks Mobile BV",@"502155":@"Samata Communications Sdn Bhd",@"310400":@"Minnesota South. Wirel. Co. / Hickory",@"64602":@"Orange/Soci",@"23494":@"H3G Hutchinson",@"310120":@"Sprint Spectrum",@"22206":@"Vodafone",@"354860":@"Cable & Wireless ",@"311481":@"Verizon Wireless",@"50599":@"Railcorp/Vodafone",@"63701":@"Telesom ",@"312280":@"Cellular Network Partnership LLC",@"24017":@"Gotalandsnatet AB",@"72403":@"TIM",@"64111":@"Uganda Telecom Ltd.",@"22230":@"RFI Rete Ferroviaria Italiana SpA",@"24025":@"Digitel Mobile Srl",@"72411":@"Vivo S.A./Telemig ",@"41534":@"FTML Cellis",@"312010":@"Missouri RSA No 5 Partnership",@"65512":@"MTN",@"63202":@"SpaceTel",@"20404":@"Vodafone Libertel",@"40489":@"Escorts Telecom Ltd.",@"64603":@"Sacel",@"54001":@"BREEZE",@"20412":@"KPN/Telfort",@"22207":@"Noverca Italia Srl",@"21805":@"M-Tel",@"62301":@"Centrafr. Telecom+",@"63090":@"Africell",@"20420":@"T-mobile/former Orange",@"70601":@"CLARO/CTE",@"24018":@"Generic Mobile Systems Sweden AB",@"72404":@"TIM",@"63710":@"Nationlink",@"24026":@"Beepsend",@"72412":@"Claro/Albra/America Movil",@"41535":@"Cellis",@"62801":@"Libertis S.A.",@"732103":@"TIGO/Colombia Movil",@"63203":@"Orange",@"20405":@"Elephant Talk Communications Premium Rate Services Netherlands BV",@"65521":@"Cape Town Metropolitan",@"64604":@"Telma",@"54002":@"bemobile",@"36439":@"Bahamas Telco. Comp.",@"22208":@"Fastweb SpA",@"62302":@"Telecel Centraf. ",@"54010":@"BREEZE",@"20421":@"NS Railinfrabeheer B.V.",@"311482":@"Verizon Wireless",@"70602":@"Digicel",@"338020":@"Cable & Wireless",@"24019":@"Mundio Mobile (Sweden) Ltd",@"72405":@"Claro/Albra/America Movil",@"61401":@"Orange/Sahelc.",@"65506":@"Sentech",@"24027":@"Fogg Mobile AB",@"722320":@"Claro/ CTI/AMX",@"41536":@"MIC2/LibanCell/MTC",@"62802":@"MOOV/Telecel",@"37001":@"Orange",@"24035":@"42 Telecom AB",@"20406":@"Mundio/Vectone Mobile",@"310940":@"Poka Lambro Telco Ltd.",@"310660":@"T-Mobile",@"20414":@"6GMOBILE BV",@"310380":@"AT&T Wireless Inc.",@"61901":@"Airtel/Zain/Celtel",@"29201":@"Prima Telecom",@"62303":@"Orange/Celca",@"70603":@"Telemovil",@"63704":@"Somafone",@"72406":@"Vivo S.A./Telemig ",@"61402":@"Airtel/Zain/CelTel",@"64114":@"Orange",@"65507":@"Cell C",@"71021":@"Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)",@"24028":@"CoolTEL Aps",@"22233":@"PosteMobile SpA",@"37002":@"Claro",@"41537":@"MIC2/LibanCell/MTC",@"62803":@"Airtel/ZAIN/Celtel Gabon S.A.",@"64122":@"Airtel/Warid",@"29701":@"Telenor/Promonte GSM",@"24036":@"ID Mobile",@"20407":@"Teleena Holding BV",@"312270":@"Cellular Network Partnership LLC",@"64130":@"K2 Telecom Ltd",@"60501":@"Orange",@"20415":@"Ziggo BV",@"72430":@"Oi (TNL PCS / Oi)",@"62304":@"Nationlink",@"61902":@"Tigo/Millicom",@"311483":@"Verizon Wireless",@"20423":@"Aspider Solutions",@"70604":@"Telefonica",@"72407":@"CTBC/Triangulo ",@"61403":@"MOOV/TeleCel",@"28301":@"ArmenTel/Beeline",@"22234":@"BT Italia SpA",@"24029":@"Mercury International Carrier Services",@"72415":@"Sercontel Cel",@"37003":@"TRIcom",@"41538":@"MIC2/LibanCell/MTC",@"62804":@"Azur/Usan S.A.",@"71030":@"Movistar",@"29702":@"Monet/T-mobile",@"20408":@"KPN Telecom B.V.",@"72423":@"Vivo S.A./Telemig ",@"60502":@"TuniCell/Tunisia Telecom",@"63086":@"Orange RDC sarl",@"20416":@"T-Mobile B.V.",@"72431":@"Oi (TNL PCS / Oi)",@"61903":@"Africel",@"311460":@"Fisher Wireless Services Inc.",@"20424":@"Private Mobility Nederland BV",@"28801":@"Faroese Telecom",@"70605":@"INTELFON SA de CV",@"72408":@"TIM",@"61404":@"Orange/Sahelc.",@"22235":@"Lycamobile Srl",@"72416":@"Brazil Telcom",@"37004":@"Trilogy Dominicana S. A.",@"41539":@"MIC2/LibanCell/MTC",@"28310":@"Orange",@"22243":@"Telecom Italia Mobile SpA",@"29703":@"Mtel",@"20409":@"Lycamobile Ltd",@"72424":@"Amazonia Celular S/A",@"63730":@"Golis",@"60503":@"Oreedo/Orascom",@"27401":@"Siminn",@"43002":@"Etisalat",@"20417":@"Intercity Mobile Communications BV",@"72432":@"CTBC Celular SA (CTBC)",@"405034":@"TATA / Karnataka",@"61904":@"Comium",@"311484":@"Verizon Wireless",@"722310":@"Claro/ CTI/AMX",@"28802":@"Kall GSM",@"42101":@"Sabaphone",@"310650":@"Jasper",@"310370":@"Docomo",@"310090":@"Edge Wireless LLC",@"26001":@"Polkomtel/Plus",@"22244":@"WIND (Blu) -",@"310100":@"Plateau Telecommunications Inc.",@"64133":@"Smile Communications Uganda Ltd",@"63088":@"Yozma Timeturns sprl (YTT)",@"27402":@"Vodafone/Tal hf",@"20418":@"UPC Nederland BV",@"72433":@"CTBC Celular SA (CTBC)",@"42601":@"Batelco",@"61905":@"Africel",@"302780":@"Sask Tel Mobility",@"28803":@"Edge Mobile Sp/F",@"42102":@"MTN/Spacetel",@"64118":@"Suretelecom Uganda Ltd",@"28304":@"Karabakh Telecom",@"26002":@"T-Mobile/ERA",@"65519":@"Wireless Business Solutions (Pty) Ltd",@"41201":@"Afghan Wireless/AWCC",@"29577":@"Alpmobile/Tele2",@"26010":@"Sferia",@"63089":@"TIGO/Oasis",@"27403":@"Vodafone/Tal hf",@"72434":@"CTBC Celular SA (CTBC)",@"42602":@"ZAIN/Vodafone",@"311485":@"Verizon Wireless",@"27411":@"NOVA",@"346140":@"LIME / Cable & Wirel.",@"33401":@"NEXTEL",@"42103":@"Yemen Mob. CDMA",@"41701":@"Syriatel Holdings",@"28305":@"Vivacell",@"72419":@"Vivo S.A./Telemig ",@"311170":@"PetroCom",@"26003":@"Orange/IDEA/Centertel",@"26011":@"NORDISK Polska",@"60506":@"TuniCell/Tunisia Telecom",@"27404":@"VIKING/IMC",@"20428":@"Lancelot BV",@"33402":@"TelCel/America Movil",@"42104":@"HITS/Y Unitel",@"41702":@"MTN/Spacetel",@"24201":@"Telenor",@"54509":@"Kiribati Frigate",@"722020":@"Nextel",@"26004":@"Tele2",@"310920":@"Get Mobile Inc.",@"41203":@"WaselTelecom (WT)",@"26012":@"Cyfrowy POLSAT S.A.",@"310360":@"Cellular Network Partnership LLC",@"27405":@"Vodafone/Tal hf",@"42604":@"VIVA",@"311486":@"Verizon Wireless",@"24701":@"Latvian Mobile Phone",@"352110":@"Cable & Wireless",@"33403":@"Movistar/Pegaso",@"24202":@"Netcom",@"63719":@"HorTel",@"312530":@"Sprint Spectrum",@"302490":@"WIND",@"26005":@"Orange/IDEA/Centertel",@"22248":@"Telecom Italia Mobile SpA",@"302500":@"Videotron",@"26013":@"Sferia",@"302220":@"Telus Mobility",@"72437":@"Unicel do Brasil Telecomunicacoes Ltda",@"41220":@"Roshan/TDCA ",@"24702":@"Tele2",@"33404":@"AT&T/IUSACell",@"61925":@"Mobitel",@"23801":@"TDC Denmark",@"24203":@"Teletopia",@"62199":@"Starcomms",@"26006":@"Play/P4",@"26014":@"Sferia",@"348570":@"Caribbean Cellular",@"27407":@"IceCell",@"311440":@"Bluegrass Wireless LLC",@"72438":@"Claro/Albra/America Movil",@"311487":@"Verizon Wireless",@"24703":@"TRIATEL/Telekom Baltija",@"72454":@"PORTO SEGURO TELECOMUNICACOES",@"63760":@"Nationlink",@"24204":@"Tele2",@"23802":@"Telenor/Sonofon",@"24212":@"Telenor",@"26007":@"Play/P4",@"23810":@"TDC Denmark",@"73000":@"TESAM SA",@"24220":@"Jernbaneverket (GSM-R)",@"26015":@"Tele2",@"74401":@"Hola/VOX",@"27408":@"Siminn",@"72439":@"Nextel (Telet)",@"722010":@"Compania De Radiocomunicaciones Moviles SA",@"310910":@"Verizon Wireless",@"40177":@"Tele2/NEO/MTS",@"41230":@"Etisalat ",@"310350":@"Mohave Cellular LP",@"310070":@"AT&T Wireless Inc.",@"23803":@"Mach Connectivity ApS",@"24205":@"Network Norway AS",@"73001":@"Entel Telefonia Mov",@"26008":@"e-Telko",@"24221":@"Jernbaneverket (GSM-R)",@"26016":@"Mobyland",@"74402":@"Claro/Hutchison",@"27409":@"Amitelo",@"302760":@"Public Mobile",@"311488":@"Verizon Wireless",@"52099":@"True Move/Orange",@"65201":@"Mascom Wireless (Pty) Ltd.",@"24705":@"Bite",@"24206":@"ICE Nordisk Mobiltelefon AS",@"23804":@"NextGen Mobile Ltd (CardBoardFish)",@"73002":@"TELEFONICA",@"26009":@"Lycamobile",@"23812":@"Lycamobile Ltd",@"24214":@"ICE Nordisk Mobiltelefon AS",@"65701":@"Eritel",@"24222":@"Network Norway AS",@"26017":@"Aero2 SP",@"23820":@"Telia",@"74403":@"Compa",@"73010":@"Entel Telefonia",@"20601":@"Belgacom/Proximus",@"24706":@"SIA Rigatta",@"65202":@"Orange",@"311710":@"Northeast Wireless Networks LLC",@"311430":@"RSA 1 Limited Partnership",@"41240":@"Areeba/MTN",@"23805":@"ApS KBUS",@"24207":@"Ventelo AS",@"64301":@"mCel",@"63771":@"Somtel",@"73003":@"Claro",@"21890":@"BH Mobile",@"24223":@"Lycamobile Ltd",@"26018":@"AMD Telecom.",@"74404":@"Tigo/Telecel",@"35099":@"CellOne Ltd",@"63400":@"Canar Telecom",@"311489":@"Verizon Wireless",@"73011":@"Celupago SA",@"20602":@"SNCT/NMBS",@"24707":@"SIA Master Telecom",@"64801":@"Net One",@"20610":@"Mobistar/Orange",@"33409":@"NEXTEL",@"22277":@"IPSE 2000",@"26034":@"T-Mobile/ERA",@"310890":@"Verizon Wireless",@"64166":@"i-Tel Ltd",@"41709":@"Syriatel Holdings",@"71201":@"ICE",@"24208":@"TDC Mobil A/S",@"23806":@"H3G",@"310900":@"Cable & Communications Corp.",@"262n/a":@"Talkline",@"71073":@"Claro",@"73004":@"Nextel SA",@"310620":@"Coleman County Telco /Trans TX",@"310340":@"Westlink Communications, LLC",@"73012":@"Telestar Movil SA",@"74405":@"TIM/Nucleo/Personal",@"63401":@"ZAIN/Mobitel",@"342050":@"Digicel",@"23830":@"Telia",@"24708":@"SIA IZZI",@"65204":@"BeMOBILE",@"26035":@"PKP Polskie Linie Kolejowe S.A.",@"71202":@"ICE",@"24209":@"Com4 AS",@"23807":@"Mundio Mobile",@"64303":@"Movitel",@"312230":@"North Dakota Network Company",@"41250":@"Etisalat ",@"73005":@"Nextel SA",@"62001":@"MTN",@"73013":@"Tribe Mobile SPA",@"23823":@"Banedanmark",@"20468":@"Unify Mobile",@"63402":@"MTN",@"362951":@"UTS Wireless",@"24709":@"SIA Camel Mobile",@"33450":@"AT&T/IUSACell",@"64803":@"Telecel",@"54201":@"Vodafone",@"26036":@"Mundio Mobile Sp. z o.o.",@"62501":@"CV Movel",@"20620":@"Base/KPN",@"71203":@"Claro",@"64304":@"Vodacom",@"63902":@"Safaricom Ltd.",@"73006":@"Blue Two Chile SA",@"62002":@"Vodafone",@"63782":@"Somtel",@"311420":@"Northwest Missouri Cellular Limited Partnership",@"73014":@"Netline Telefonica Movil Ltda",@"20469":@"KPN Telecom B.V.",@"311140":@"Cross Wireless Telephone Co.",@"316010":@"Sprint Spectrum",@"61101":@"Orange/Sonatel/Spacetel",@"45500":@"Smartone Mobile",@"20605":@"Telenet BidCo NV",@"64804":@"Econet",@"54202":@"DigiCell",@"62502":@"T+ Telecom",@"71204":@"Movistar",@"22288":@"WIND (Blu) -",@"63903":@"Airtel/Zain/Celtel Ltd.",@"732020":@"UNE EPM Telecomunicaciones SA ESP",@"73007":@"TELEFONICA",@"62003":@"Milicom/Tigo",@"61601":@"Libercom",@"25999":@"IDC/Unite ",@"71220":@"Virtualis",@"73015":@"Cibeles Telecom SA",@"37201":@"Comcel",@"45501":@"C.T.M. TELEMOVEL+",@"61102":@"SotelGui",@"20606":@"Lycamobile Belgium",@"310610":@"Elkhart TelCo. / Epic Touch Co.",@"342600":@"LIME",@"26038":@"CallFreedom Sp. z o.o.",@"310330":@"T-Mobile",@"29401":@"T-Mobile/Mobimak",@"45002":@"KT Freetel Co. Ltd.",@"60201":@"Orange/Mobinil",@"73008":@"VTR Banda Ancha SA",@"62004":@"Expresso Ghana Ltd",@"61602":@"Etisalat/MOOV",@"51000":@"PT Pasifik Satelit Nusantara (PSN)",@"37202":@"Digicel",@"63405":@"Vivacell",@"312220":@"Missouri RSA No 5 Partnership",@"316011":@"Southern Communications Services Inc.",@"45502":@"China Telecom",@"61103":@"Intercel",@"60701":@"Gamcel",@"28001":@"Vodafone/CyTa",@"23199":@"Zeleznice Slovenskej republiky (ZSR)",@"36301":@"Setar GSM",@"51500":@"Fix Line",@"29402":@"ONE/Cosmofone",@"45003":@"SK Telecom",@"60202":@"Vodafone/Mirsfone ",@"63905":@"Econet Wireless",@"73009":@"Nextel SA",@"61603":@"MTN/Spacetel",@"51001":@"Indosat/Satelindo/M3",@"37203":@"National Telecom SA (NatCom)",@"36801":@"C-COM",@"63406":@"ZAIN/Mobitel",@"45503":@"Hutchison Telephone Co. Ltd",@"61104":@"MTN/Areeba",@"60702":@"Africel",@"54720":@"Vini/Tikiphone",@"311410":@"Iowa RSA No. 2 Limited Partnership",@"36302":@"Digicel",@"63422":@"MTN",@"28010":@"MTN/Areeba",@"29403":@"VIP Mobile",@"45004":@"KT Freetel Co. Ltd.",@"51501":@"Globe Telecom",@"60203":@"ETISALAT",@"22299":@"Hi3G",@"62006":@"Airtel/ZAIN",@"61604":@"Bell Benin/BBCOM",@"242017":@"Ventelo AS",@"43701":@"Beeline/Bitel",@"23828":@"CoolTEL ApS",@"51010":@"Telkomsel",@"63407":@"Sudani One",@"45504":@"C.T.M. TELEMOVEL+",@"61105":@"Celcom",@"63415":@"Sudani One",@"60703":@"Comium",@"27601":@"AMC/Cosmote",@"310870":@"Kaplan Telephone Company Inc.",@"42800":@"Skytel Co. Ltd",@"310590":@"Verizon Wireless",@"51502":@"Globe Telecom",@"330110":@"Puerto Rico Telephone Company Inc. (PRTC)",@"45005":@"SK Telecom Co. Ltd",@"34001":@"Orange Caribe",@"310600":@"New-Cell Inc.",@"63907":@"Orange",@"310320":@"Smith Bagley Inc.",@"62007":@"GloMobile",@"61605":@"GloMobile",@"310040":@"Matanuska Tel. Assn. Inc.",@"73019":@"Sociedad Falabella Movil SPA",@"51011":@"PT. Excelcom",@"26201":@"T-mobile/Telekom",@"63408":@"Vivacell",@"45505":@"Hutchison Telephone Co. Ltd",@"60704":@"Q-Cell",@"27602":@"Vodafone ",@"41280":@"Afghan Telecom Corp. (AT)",@"51503":@"Smart",@"43211":@"MCI/TCI",@"45006":@"LG Telecom",@"20498":@"T-Mobile B.V.",@"34002":@"Outremer Telecom",@"28020":@"PrimeTel PLC",@"36320":@"Digicel",@"43703":@"AkTel LLC",@"26202":@"Vodafone D2",@"41401":@"Myanmar Post & Teleco.",@"54715":@"Pacific Mobile Telecom (PMT)",@"45506":@"Smartone Mobile",@"26210":@"DB Netz AG",@"27603":@"Eagle Mobile",@"311670":@"Pine Belt Cellular, Inc.",@"34003":@"TelCell GSM",@"311390":@"Verizon Wireless",@"43220":@"Rightel",@"34011":@"TelCell GSM",@"40001":@"Azercell Telekom B.M.",@"311120":@"Choice Phone LLC",@"26203":@"E-Plus",@"51021":@"Indosat/Satelindo/M3",@"26211":@"O2",@"27604":@"PLUS Communication Sh.a",@"51505":@"SUN/Digitel",@"45008":@"KT Freetel Co. Ltd.",@"310860":@"Texas RSA 15B2 Limited Partnership",@"41902":@"Zain",@"34012":@"UTS Caraibe",@"40002":@"J.V. Bakcell GSM 2000",@"310580":@"PCS ONE",@"34020":@"Bouygues/DigiCel",@"43705":@"MEGACOM",@"26204":@"Vodafone D2",@"352050":@"Digicel",@"310310":@"T-Mobile",@"26212":@"E-Plus",@"26220":@"E-Plus",@"43214":@"TKC/KFZO",@"23001":@"T-Mobile / RadioMobil",@"312190":@"Sprint Spectrum",@"41903":@"Wataniya",@"302720":@"Rogers AT&T Wireless",@"51007":@"Flexi (PT Telkom) (CDMA)",@"40003":@"Caspian American Telecommunications LLC (CATEL)",@"24410":@"TDC Oy Finland",@"26205":@"E-Plus",@"26213":@"Mobilcom",@"356110":@"Cable & Wireless",@"732001":@"TIGO/Colombia Movil",@"23002":@"O2",@"44140":@"NTT Docomo",@"41904":@"Viva",@"24403":@"DNA/Finnet",@"40004":@"Azerfon.",@"51008":@"Axis/Natrindo",@"24411":@"Mundio Mobile (Finland) Ltd",@"26206":@"T-mobile/Telekom",@"41405":@"Oreedoo",@"26214":@"Group 3G UMTS",@"23502":@"Everyth. Ev.wh.",@"311110":@"Verizon Wireless",@"23003":@"Vodafone",@"22601":@"Vodafone",@"44141":@"NTT Docomo",@"24404":@"DNA/Finnet",@"43232":@"Taliya",@"51009":@"PT Smartfren Telecom Tbk",@"24412":@"DNA/Finnet",@"26207":@"O2",@"362630":@"Cingular Wireless",@"41406":@"Telenor",@"310850":@"Aeris Comm. Inc.",@"74601":@"Telesur",@"310570":@"MTPCS LLC",@"21201":@"Monaco Telecom",@"310290":@"NEP Cellcorp Inc.",@"40505":@"Fascel Limited",@"732002":@"Edatel S.A.",@"34008":@"Dauphin Telecom SU (Guadeloupe Telecom)",@"23004":@"Ufone",@"22602":@"Romtelecom SA",@"44142":@"NTT Docomo",@"310300":@"T-Mobile",@"310020":@"Union Telephone Co.",@"22610":@"Orange",@"24405":@"Elisa/Saunalahti",@"43709":@"O!/NUR Telecom",@"24413":@"DNA/Finnet",@"26208":@"O2",@"312180":@"Keystone Wireless LLC",@"302710":@"Globalstar Canada",@"26216":@"Telogic/ViStream",@"24421":@"Elisa/Saunalahti",@"310032":@"IT&E OverSeas",@"74602":@"Telecommunicatiebedrijf Suriname (TELESUR)",@"20800":@"Tel/Te",@"65401":@"HURI - SNPT",@"21210":@"Monaco Telecom",@"23005":@"Travel Telekommunikation s.r.o.",@"22603":@"Cosmote",@"44143":@"NTT Docomo",@"51518":@"RED Mobile/Cure",@"22611":@"Enigma Systems",@"24414":@"Alands",@"26209":@"Vodafone D2",@"51027":@"PT Sampoerna Telekomunikasi Indonesia (STI)",@"26217":@"E-Plus",@"74603":@"Digicel",@"64001":@"Tri Telecomm. Ltd.",@"41288":@"Afghan Telecom Corp. (AT)",@"311650":@"United Wireless Communications Inc.",@"20801":@"Orange",@"311370":@"GCI Communication Corp.",@"43219":@"Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)",@"22604":@"Telemobil/Zapp",@"44144":@"NTT Docomo",@"43235":@"MTN/IranCell",@"23877":@"Telenor/Sonofon",@"64501":@"Airtel/Zain/Celtel",@"65902":@"MTN South Sudan (South Sudan",@"51028":@"PT Smartfren Telecom Tbk",@"310033":@"Guam Teleph. Auth",@"74604":@"UNIQA",@"64002":@"TIGO/MIC",@"20802":@"Orange",@"26098":@"Play/P4",@"20810":@"S.F.R.",@"22605":@"RCS&RDS Digi Mobile",@"44145":@"NTT Docomo",@"310560":@"AT&T Wireless Inc.",@"26242":@"Vodafone D2",@"71401":@"Cable & W./Mas Movil",@"310280":@"T-Mobile",@"64502":@"MTN/Telecel",@"47001":@"GrameenPhone",@"352030":@"Digicel",@"44161":@"SoftBank Mobile Corp",@"65903":@"Gemtel Ltd (South Sudan",@"55301":@"Tuvalu Telecommunication Corporation (TTC)",@"310010":@"Verizon Wireless",@"64003":@"Zantel/Zanzibar Telecom",@"63601":@"ETH/MTN",@"20803":@"MobiquiThings",@"64011":@"Smile Communications Tanzania Ltd",@"23008":@"Compatel s.r.o.",@"20811":@"S.F.R.",@"63102":@"Unitel",@"22606":@"Telemobil/Zapp",@"312170":@"Iowa RSA No. 2 Limited Partnership",@"26243":@"Lycamobile",@"71402":@"Movistar",@"24409":@"Nokia Oyj",@"64503":@"Zamtel/Cell Z/MTS",@"47002":@"Robi/Aktel",@"44162":@"SoftBank Mobile Corp",@"62201":@"Airtel/ZAIN/Celtel",@"65904":@"Network of The World Ltd (NOW) (South Sudan",@"44170":@"KDDI Corporation",@"64004":@"Vodacom Ltd",@"20804":@"SISTEER",@"346050":@"Digicel Cayman Ltd",@"311920":@"Missouri RSA No 5 Partnership",@"348770":@"Digicel",@"62701":@"ORANGE/GETESA",@"20820":@"Bouygues Telecom",@"71403":@"Claro",@"47003":@"Orascom/Banglalink",@"44163":@"SoftBank Mobile Corp",@"62202":@"Tchad Mobile",@"46601":@"Far EasTone",@"310011":@"Northstar",@"54901":@"Telecom Samoa Cellular Ltd.",@"338180":@"Cable & Wireless",@"24426":@"Compatel Ltd",@"64005":@"Airtel/ZAIN/Celtel",@"53001":@"Vodafone",@"20805":@"GlobalStar",@"61301":@"TeleMob-OnaTel",@"43270":@"MTCE",@"302701":@"NB Tel Mobility",@"20813":@"S.F.R.",@"63104":@"MoviCel",@"20821":@"Bouygues Telecom",@"71404":@"Digicel",@"60400":@"Medi Telecom",@"22616":@"Lycamobile",@"45201":@"Mobifone",@"47004":@"TeleTalk",@"44164":@"SoftBank Mobile Corp",@"62203":@"Tigo/Milicom/Tchad Mobile",@"61801":@"Lonestar",@"46602":@"Far EasTone",@"342820":@"Sunbeach",@"65906":@"Zain South Sudan (South Sudan",@"46610":@"Global Mobile Corp.",@"310830":@"Caprock Cellular Ltd.",@"64006":@"Dovetel (T) Ltd",@"53002":@"Spark/NZ Telecom",@"310270":@"T-Mobile",@"45701":@"Lao Tel",@"61302":@"Airtel/ZAIN/CelTel",@"20806":@"GlobalStar",@"20814":@"Lliad/FREE Mobile",@"62703":@"HiTs-GE",@"54411":@"Blue Sky Communications",@"20822":@"Transatel SA",@"45202":@"Vinaphone",@"60401":@"IAM/Itissallat",@"302680":@"Sask Tel Mobility",@"47005":@"Citycell",@"44165":@"SoftBank Mobile Corp",@"62204":@"Salam/Sotel",@"61802":@"Libercell",@"46603":@"Far EasTone",@"310012":@"Verizon Wireless",@"312160":@"RSA 1 Limited Partnership",@"46611":@"Chunghwa Telecom LDM",@"64007":@"Tanzania Telecommunications Company Ltd (TTCL)",@"53003":@"Walker Wireless Ltd.",@"45702":@"ETL Mobile",@"61303":@"TeleCel",@"20807":@"GlobalStar",@"28201":@"Geocell Ltd.",@"366110":@"C & W",@"302702":@"MT&T Mobility",@"20815":@"Lliad/FREE Mobile",@"60901":@"Mattel",@"20823":@"Virgin Mobile/Omer",@"45203":@"S-Fone/Telecom",@"60402":@"INWI/WANA",@"20831":@"Mundio Mobile (France) Ltd",@"47006":@"Citycell",@"36010":@"Cingular",@"64008":@"Benson Informatics Ltd",@"53004":@"Telstra",@"311350":@"Sagebrush Cellular Inc.",@"45703":@"UNITEL/LAT",@"40553":@"AirTel",@"60902":@"Chinguitel SA",@"28202":@"Magti GSM Ltd.",@"311070":@"Wisconsin RSA #7 Limited Partnership",@"44190":@"NTT Docomo",@"20816":@"Lliad/FREE Mobile",@"43401":@"Buztel",@"60910":@"Mauritel",@"20824":@"MobiquiThings",@"29475":@"ONE/Cosmofone",@"45204":@"Viettel Mobile",@"47007":@"Airtel/Warid",@"46605":@"Asia Pacific Telecom Co. Ltd (APT)",@"310013":@"Verizon Wireless",@"61804":@"Comium BVI",@"64009":@"Halotel/Viettel Ltd",@"53005":@"Spark/NZ Telecom",@"42001":@"STC/Al Jawal",@"20809":@"S.F.R.",@"61820":@"LibTelco",@"37412":@"Bmobile/TSTT",@"28203":@"Iberiatel Ltd.",@"27801":@"Vodafone",@"302703":@"New Tel Mobility",@"44191":@"NTT Docomo",@"20817":@"Legos - Local Exchange Global Operation Services SA",@"342810":@"Cingular Wireless",@"310260":@"T-Mobile",@"43402":@"Uzmacom",@"20825":@"Lycamobile SARL",@"45205":@"VietnaMobile",@"42501":@"Orange/Partner Co. Ltd.",@"46606":@"Far EasTone",@"302670":@"CityWest Mobility",@"28204":@"MobiTel/Beeline",@"44192":@"NTT Docomo",@"20826":@"NRJ",@"45206":@"Viettel Mobile",@"42502":@"Cellcom ltd.",@"46607":@"Far EasTone",@"25001":@"MTS",@"42003":@"Etihad/Etisalat/Mobily",@"41601":@"ZAIN /J.M.T.S",@"28205":@"Silknet",@"44193":@"NTT Docomo",@"43404":@"Bee Line/Unitel",@"25501":@"UMC/MTS",@"311340":@"Illinois Valley Cellular RSA 2 Partnership",@"20827":@"AFONE SA",@"365840":@"Cable and Wireless",@"45207":@"Beeline",@"42503":@"Pelephone",@"25002":@"Megafon",@"61807":@"CELLCOM",@"25010":@"DTC/Don Telecom",@"42004":@"Zain",@"365010":@"Digicell / Wireless Vent. Ltd ",@"41602":@"Xpress",@"310003":@"Unknown",@"44194":@"NTT Docomo",@"43405":@"Ucell/Coscom",@"53024":@"Two Degrees Mobile Ltd",@"25502":@"Beeline",@"20828":@"Astrium",@"45208":@"Viettel Mobile",@"42891":@"Skytel Co. Ltd",@"46609":@"VMAX Telecom Co. Ltd",@"25003":@"NCC",@"24601":@"Omnitel",@"310250":@"T-Mobile",@"42512":@"Pelephone",@"310530":@"West Virginia Wireless",@"25011":@"Orensot",@"42005":@"Virgin Mobile",@"41603":@"Umniah Mobile Co.",@"45708":@"Beeline/Tigo/Millicom",@"25503":@"KyivStar",@"302660":@"MTS Mobility",@"20829":@"Orange",@"302380":@"DMTS Mobility",@"23201":@"A1 MobilKom",@"27821":@"GO Mobile",@"42505":@"Jawwal",@"25004":@"Sibchallenge",@"24602":@"Bite",@"334090":@"NEXTEL",@"25012":@"Baykal Westcom",@"24482":@"ID-Mobile",@"40211":@"B-Mobile",@"26277":@"E-Plus",@"42006":@"Lebara Mobile",@"25020":@"Tele2/ECC/Volgogr.",@"310004":@"Verizon Wireless",@"43407":@"MTS/Uzdunrobita",@"25504":@"Intertelecom Ltd (IT)",@"311880":@"Sprint Spectrum",@"23202":@"A1 MobilKom",@"42506":@"Wataniya Mobile",@"310016":@"Leap Wireless International Inc.",@"23210":@"H3G",@"25005":@"Yenisey Telecom",@"24603":@"Tele2",@"311610":@"North Dakota Network Company",@"42514":@"Alon Cellular Ltd",@"311330":@"Michigan Wireless LLC",@"25013":@"Kuban GSM",@"311050":@"Thumb Cellular Limited Partnership",@"42007":@"Zain",@"24491":@"TeliaSonera",@"54927":@"Samoatel Mobile",@"25505":@"Golden Telecom",@"23203":@"T-Mobile/Telering",@"22801":@"Swisscom",@"51588":@"Next Mobile",@"42507":@"Hot Mobile/Mirs",@"23211":@"A1 MobilKom",@"25521":@"Telesystems Of Ukraine CJSC (TSU)",@"42515":@"Home Cellular Ltd",@"51089":@"H3G CP",@"310800":@"T-Mobile",@"310520":@"VeriSign",@"74801":@"Ancel/Antel",@"310240":@"T-Mobile",@"44198":@"NTT Docomo",@"21401":@"Vodafone",@"53028":@"2degrees",@"25506":@"Astelit/LIFE",@"23204":@"T-Mobile/Telering",@"22802":@"TDC Sunrise",@"42508":@"Golan Telekom",@"23212":@"3/Orange/One Connect",@"25007":@"ZAO SMARTS",@"65101":@"Vodacom Lesotho",@"42516":@"Rami Levy Hashikma Marketing Communications Ltd",@"25015":@"ZAO SMARTS",@"302370":@"FIDO (Rogers AT&T/ Microcell)",@"21901":@"T-Mobile/Cronet",@"312130":@"East Kentucky Network LLC",@"73401":@"DigiTel C.A.",@"334080":@"Operadora Unefon SA de CV",@"44199":@"NTT Docomo",@"25507":@"TriMob LLC",@"74810":@"Claro/AM Wireless",@"42888":@"Unitel",@"23205":@"3/Orange/One Connect",@"22803":@"Salt/Orange",@"23213":@"UPC Austria",@"65102":@"Econet/Ezi-cel",@"64700":@"Orange",@"311870":@"Sprint Spectrum",@"25016":@"NTC",@"21902":@"Tele2",@"311590":@"California RSA No. 3 Limited Partnership",@"73402":@"DigiTel C.A.",@"31006":@"Consolidated Telcom",@"21910":@"VIPnet d.o.o.",@"51099":@"Esia (PT Bakrie Telecom) (CDMA)",@"64201":@"Spacetel / Econet / Leo ",@"31014":@"Testing",@"74803":@"Ancel/Antel",@"348170":@"LIME",@"21403":@"Orange",@"21411":@"Orange",@"23206":@"3/Orange/One Connect",@"35650":@"Digicel",@"23214":@"H3G",@"22812":@"TDC Sunrise",@"302651":@"Bell Mobility",@"25017":@"UralTel",@"73403":@"DigiTel C.A.",@"64202":@"Africel / Safaris",@"310780":@"Message Express Co. / Airlink PCS",@"31015":@"Unknown",@"21404":@"Yoigo",@"31023":@"Unknown",@"55001":@"FSM Telecom",@"23207":@"T-Mobile/Telering",@"22805":@"Comfone AG",@"63301":@"C&W",@"310510":@"Airtel Wireless LLC",@"310230":@"T-Mobile",@"42898":@"G-Mobile Corporation Ltd",@"23215":@"T-Mobile/Telering",@"71601":@"GlobalStar",@"21420":@"fonYou Wireless SL",@"31031":@"T-Mobile",@"42519":@"Telzar/AZI ",@"64702":@"Outremer Telecom",@"47201":@"Dhiraagu/C&W",@"73404":@"Movistar/TelCel",@"40217":@"Bhutan Telecom Ltd (BTL)",@"64710":@"SFR",@"714020":@"Movistar",@"55501":@"Niue Telecom",@"64203":@"Onatel / Telecel ",@"63801":@"Djibouti Telecom SA (Evatis)",@"302640":@"Latitude Wireless",@"21405":@"Movistar",@"302360":@"Clearnet",@"312120":@"East Kentucky Network LLC",@"31024":@"Unknown",@"23208":@"A1 MobilKom",@"63302":@"Smartcom",@"334070":@"Operadora Unefon SA de CV",@"46656":@"International Telecom Co. Ltd (FITEL)",@"42899":@"Mobicom",@"21421":@"Jazz Telecom SAU",@"71602":@"GlobalStar",@"302652":@"BC Tel Mobility",@"20891":@"Orange",@"63310":@"Airtel",@"54101":@"SMILE",@"47202":@"Ooredo/Wataniya",@"71610":@"Claro /Amer.Mov./TIM",@"62401":@"MTN",@"25019":@"OJSC Altaysvyaz",@"36070":@"Digicel",@"311860":@"Uintah Basin Electronics Telecommunications Inc.",@"25035":@"MOTIV/LLC Ekaterinburg-2000",@"21406":@"Vodafone Enabler Espana SL",@"25550":@"UMC/MTS",@"31025":@"Unknown",@"54601":@"OPT Mobilis",@"23209":@"A1 MobilKom",@"708040":@"Digicel",@"22807":@"TDC Sunrise",@"62901":@"Airtel SA",@"21422":@"Digi Spain Telecom SL",@"23217":@"Spusu/Mass Response",@"61001":@"Malitel",@"45400":@"CSL Ltd.",@"20892":@"Association Plate-forme Telecom",@"311310":@"Lamar County Cellular",@"73406":@"Movilnet C.A. ",@"62402":@"Orange",@"25028":@"BeeLine/VimpelCom",@"360110":@"C & W",@"74807":@"MOVISTAR",@"21407":@"Movistar",@"302361":@"Clearnet",@"61501":@"Togo Telecom/TogoCELL",@"31026":@"Unknown",@"44000":@"Y-Mobile",@"25044":@"StavTelesot",@"21415":@"BT Espana SAU",@"22808":@"TDC Sunrise",@"31034":@"Nevada Wireless LLC",@"62902":@"Azur SA (ETC)",@"310770":@"Iowa Wireless Services LLC",@"21423":@"Lycamobile SL",@"45401":@"Citic Telecom Ltd.",@"61002":@"Orange/IKATEL",@"302653":@"Telus Mobility",@"62910":@"MTN/Libertis",@"60600":@"Libyana",@"53701":@"Pacific Mobile",@"310490":@"Triton PCS",@"310500":@"Public Service Cellular Inc.",@"35670":@"UTS Cariglobe",@"310220":@"T-Mobile",@"71620":@"Claro /Amer.Mov./TIM",@"21408":@"Euskaltel SA",@"61502":@"Telecel/MOOV",@"344930":@"DigiCel/Cing. Wireless",@"44001":@"NTT Docomo",@"21416":@"Telecable de Asturias SA",@"22809":@"Comfone AG",@"311311":@"Farmers",@"302630":@"Bell Aliant",@"23219":@"Tele2",@"45402":@"CSL Ltd.",@"60601":@"Al-Madar",@"53702":@"GreenCom PNG Ltd",@"45410":@"CSL/New World PCS Ltd.",@"23099":@"Vodafone",@"21432":@"ION Mobile",@"62404":@"Nextel",@"334060":@"SAI PCS",@"366050":@"Wireless Ventures (Dominica) Ltd (Digicel Dominica)",@"64207":@"Smart Mobile / LACELL ",@"29310":@"Slovenske zeleznice d.o.o.",@"52801":@"Telekom Brunei Bhd (TelBru)",@"21409":@"Orange",@"61503":@"Telecel/MOOV",@"28401":@"MobilTel AD",@"44002":@"NTT Docomo",@"21417":@"R Cable y Telec. Galicia SA",@"44010":@"NTT Docomo",@"21425":@"Lycamobile SL",@"302654":@"Sask Tel Mobility",@"71606":@"Movistar",@"45403":@"H3G/Hutchinson",@"60602":@"Al-Madar",@"46668":@"ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd",@"53703":@"Digicel",@"45411":@"China-HongKong Telecom Ltd (CHKTL)",@"54105":@"DigiCel",@"708030":@"HonduTel",@"51401":@"Telin/ Telkomcel",@"311300":@"Nexus Communications Inc.",@"31060":@"Consolidated Telcom",@"64208":@"Lumitel/Viettel",@"27001":@"P+T/Post LUXGSM",@"52802":@"b-mobile",@"25039":@"UralTel",@"311020":@"Missouri RSA No 5 Partnership",@"46692":@"Chunghwa Telecom LDM",@"44003":@"NTT Docomo",@"21418":@"Cableuropa SAU (ONO)",@"43601":@"Tcell/JC Somoncom",@"20888":@"Bouygues Telecom",@"360100":@"Cingular",@"44011":@"NTT Docomo",@"21426":@"Lleida",@"45404":@"H3G/Hutchinson",@"71607":@"Nextel",@"60603":@"Libyana",@"43102":@"Etisalat",@"45412":@"China Mobile/Peoples",@"71615":@"Viettel Mobile",@"25539":@"Golden Telecom",@"51402":@"Timor Telecom",@"45420":@"HKT/PCCW",@"310760":@"Panhandle Telephone Cooperative Inc.",@"342750":@"Digicel",@"310480":@"Choice Phone LLC",@"46693":@"Mobitai",@"50501":@"Telstra Corp. Ltd.",@"52811":@"Datastream (DTSCom)",@"44004":@"SoftBank Mobile Corp",@"28403":@"BTC Mobile EOOD (vivatel)",@"21419":@"Simyo/KPN ",@"20889":@"Virgin Mobile/Omer",@"22851":@"BebbiCell AG",@"43602":@"CJSC Indigo Tajikistan",@"44012":@"NTT Docomo",@"302655":@"MTS Mobility",@"45405":@"H3G/Hutchinson",@"21427":@"Truphone",@"31046":@"SIMMETRY",@"310210":@"T-Mobile",@"44020":@"SoftBank Mobile Corp",@"344920":@"C & W",@"45413":@"China Mobile/Peoples",@"42701":@"Ooredoo/Qtel",@"31038":@"USA 3650 AT&T",@"312090":@"Allied Wireless Communications Corporation",@"376350":@"Cable & Wireless (TCI) Ltd",@"26601":@"Gibtel GSM",@"42202":@"Oman Mobile/GTO",@"50502":@"Singtel Optus",@"334050":@"AT&T/IUSACell",@"22852":@"Mundio Mobile AG",@"43603":@"MLT/TT mobile",@"62907":@"Warid",@"44013":@"NTT Docomo",@"41301":@"Mobitel Ltd.",@"45406":@"Vodafone/SmarTone",@"44021":@"NTT Docomo",@"45414":@"H3G/Hutchinson",@"71617":@"Nextel",@"42702":@"Vodafone",@"42203":@"Nawras",@"311280":@"Verizon Wireless",@"50503":@"Vodafone",@"28405":@"Telenor/Cosmo/Globul",@"44006":@"SoftBank Mobile Corp",@"22853":@"upc cablecom GmbH",@"43604":@"Babilon-M",@"50511":@"Telstra Corp. Ltd.",@"25701":@"Mobile Digital Communications",@"44014":@"NTT Docomo",@"302656":@"Tbay Mobility",@"45407":@"China Unicom Ltd",@"41302":@"MTN/Dialog",@"60606":@"Hatef",@"43612":@"Tcell/JC Somoncom",@"44022":@"NTT Docomo",@"338110":@"Cable & Wireless",@"45415":@"Vodafone/SmarTone",@"311010":@"Missouri RSA No 5 Partnership",@"44030":@"NTT Docomo",@"40401":@"Aircel Digilink India",@"46688":@"KG Telecom",@"50504":@"Department of Defense",@"28406":@"BTC Mobile EOOD (vivatel)",@"44007":@"KDDI Corporation",@"22854":@"Lycamobile AG",@"43605":@"Bee Line",@"310750":@"East Kentucky Network LLC",@"50512":@"H3G Ltd.",@"310470":@"Docomo",@"44015":@"NTT Docomo",@"25702":@"MTS",@"45408":@"Truephone",@"33011":@"Puerto Rico Telephone Company Inc. (PRTC)",@"41303":@"Etisalat/Tigo",@"310190":@"Unknown",@"44023":@"NTT Docomo",@"45416":@"HKT/PCCW",@"310200":@"T-Mobile",@"44031":@"NTT Docomo",@"24801":@"EMT GSM",@"46689":@"T-Star/VIBO",@"40410":@"Bharti Airtel Limited (Delhi)",@"311281":@"Verizon Wireless",@"46697":@"Taiwan Cellular",@"50505":@"The Ozitel Network Pty.",@"45440":@"shared by private TETRA systems",@"44008":@"KDDI Corporation",@"27877":@"Melita",@"302610":@"Bell Mobility",@"25567":@"KyivStar",@"50513":@"Railcorp/Vodafone",@"302657":@"Quebectel Mobility",@"44016":@"NTT Docomo",@"25703":@"BelCel JV",@"45409":@"China Motion",@"29340":@"SI.Mobil",@"23401":@"Mapesbury C. Ltd",@"44024":@"NTT Docomo",}; +#if __has_include("SACoreResources+English.h") + return [self englishMcc]; +#else + return @{@"334040":@"AT&T/IUSACell",@"42577":@"Hot Mobile/Mirs",@"45417":@"Vodafone/SmarTone",@"44032":@"NTT Docomo",@"24802":@"Radiolinja Eesti",@"376352":@"IslandCom Communications Ltd.",@"74000":@"MOVISTAR/OteCel",@"44040":@"SoftBank Mobile Corp",@"40411":@"Sterling Cellular Ltd.",@"25092":@"Printelefone",@"50506":@"H3G Ltd.",@"44009":@"NTT Docomo",@"25568":@"Beeline",@"22001":@"Telenor/Mobtel",@"35830":@"Cingular Wireless",@"311830":@"Thumb Cellular Limited Partnership",@"25704":@"BeST",@"44017":@"NTT Docomo",@"41820":@"ZAIN/Atheer/Orascom",@"50514":@"AAPT Ltd. ",@"41305":@"Airtel",@"23402":@"O2 Ltd.",@"29341":@"Mobitel",@"44025":@"NTT Docomo",@"311270":@"Verizon Wireless",@"45418":@"CSL Ltd.",@"23410":@"O2 Ltd.",@"44033":@"NTT Docomo",@"40404":@"Idea Cellular Ltd.",@"24803":@"Tele2 Eesti AS",@"74001":@"Claro/Port",@"44041":@"SoftBank Mobile Corp",@"40412":@"Escotel Mobile Communications",@"26606":@"CTS Mobile",@"41805":@"Asia Cell",@"41677":@"Orange/Petra",@"46699":@"TransAsia",@"25093":@"Telecom XXL",@"311282":@"Verizon Wireless",@"50507":@"Vodafone",@"30801":@"Ameris",@"22002":@"Telenor/Mobtel",@"404045":@"Bharti Airtel Limited (Karnataka) (India)",@"44018":@"NTT Docomo",@"23403":@"Airtel/Vodafone",@"44026":@"NTT Docomo",@"45419":@"HKT/PCCW",@"310740":@"Telemetrix Inc.",@"23411":@"O2 Ltd.",@"44034":@"NTT Docomo",@"40405":@"Fascel",@"310460":@"TMP Corporation",@"346006":@"Digicel Ltd.",@"37650":@"Digicel",@"310180":@"Cingular Wireless",@"74002":@"Alegro/Telcsa",@"40413":@"Barakhamba Sales & Serv.",@"40277":@"TashiCell",@"24804":@"Top Connect OU",@"44042":@"SoftBank Mobile Corp",@"467193":@"Sun Net",@"50508":@"Railcorp/Vodafone",@"44050":@"KDDI Corporation",@"22003":@"MTS/Telekom Srbija",@"21601":@"Pannon/Telenor",@"50516":@"Victorian Rail Track Corp. (VicTrack)",@"44019":@"NTT Docomo",@"311271":@"Verizon Wireless",@"50524":@"Advanced Comm Tech Pty.",@"44027":@"NTT Docomo",@"41830":@"Orascom Telecom",@"23412":@"Railtrack Plc",@"44035":@"NTT Docomo",@"65301":@"SwaziTelecom",@"302320":@"mobilicity",@"45428":@"China Mobile/Peoples",@"23420":@"H3G Hutchinson",@"90111":@"InMarSAT",@"73601":@"Viva/Nuevatel",@"40414":@"Spice",@"311283":@"Verizon Wireless",@"376050":@"Digicel TCI Ltd",@"20201":@"Cosmote",@"334030":@"Movistar/Pegaso",@"44051":@"KDDI Corporation",@"40422":@"Idea Cellular Ltd.",@"50509":@"Airnet Commercial Australia Ltd..",@"366020":@"Cingular Wireless/Digicel",@"44043":@"SoftBank Mobile Corp",@"40430":@"Usha Martin Telecom",@"41308":@"H3G Hutchison ",@"44028":@"NTT Docomo",@"36251":@"TELCELL GSM",@"44036":@"NTT Docomo",@"40407":@"Idea Cellular Ltd.",@"45429":@"HKT/PCCW",@"90112":@"Maritime Communications Partner AS",@"44044":@"SoftBank Mobile Corp",@"73602":@"Entel Pcs",@"311260":@"SLO Cellular Inc / Cellular One of San Luis",@"65310":@"Swazi MTN",@"40415":@"Aircel Digilink India",@"26609":@"eazi telecom",@"20202":@"Cosmote",@"41808":@"Sanatel",@"44052":@"KDDI Corporation",@"20210":@"Tim/Wind",@"22005":@"VIP Mobile",@"44060":@"NTT Docomo",@"311272":@"Verizon Wireless",@"50526":@"Dialogue Communications Pty Ltd",@"44029":@"NTT Docomo",@"90105":@"Thuraya Satellite",@"35850":@"Digicel (St Lucia) Limited",@"23414":@"HaySystems",@"732187":@"eTb",@"44037":@"NTT Docomo",@"41840":@"Korek",@"64901":@"MTC",@"90113":@"Antarctica",@"23422":@"Routotelecom",@"44045":@"SoftBank Mobile Corp",@"73603":@"Tigo",@"40416":@"Hexcom India",@"63001":@"Vodacom",@"23430":@"Everyth. Ev.wh./T-Mobile",@"20203":@"OTE Hellenic Telecommunications Organization SA",@"311284":@"Verizon Wireless",@"40424":@"Idea Cellular Ltd.",@"310730":@"United States Cellular Corp.",@"310450":@"Northeast Colorado Cellular Inc.",@"44053":@"KDDI Corporation",@"44061":@"NTT Docomo",@"310170":@"AT&T Wireless Inc.",@"50519":@"Lycamobile Pty Ltd",@"64282":@"Spacetel / Econet / Leo ",@"55201":@"Palau National Communications Corp. (PNCC) (Palau",@"23407":@"Cable and Wireless ",@"364390":@"Bahamas Telco. Comp.",@"46000":@"中国移动",@"23415":@"Vodafone",@"44038":@"NTT Docomo",@"40409":@"Reliance Telecom Private",@"64902":@"Switch/Nam. Telec.",@"90114":@"AeroMobile",@"23423":@"Vectofone Mobile Wifi",@"44046":@"SoftBank Mobile Corp",@"708001":@"SERCOM/CLARO",@"40417":@"Aircel",@"63002":@"Airtel/ZAIN",@"23431":@"Everyth. Ev.wh./T-Mobile",@"29370":@"Telemach/TusMobil/VEGA",@"20204":@"Organismos Sidirodromon Ellados (OSE)",@"40425":@"Aircel",@"45447":@"shared by private TETRA systems",@"44054":@"KDDI Corporation",@"44062":@"NTT Docomo",@"62101":@"Visafone",@"40433":@"Aircel",@"311273":@"Verizon Wireless",@"70401":@"Claro",@"23408":@"OnePhone",@"44070":@"KDDI Corporation",@"40441":@"RPG Cellular",@"334020":@"TelCel/America Movil",@"46001":@"中国联通",@"23416":@"Opal Telecom",@"44039":@"NTT Docomo",@"63510":@"MTN/Rwandacell",@"64903":@"Leo / Orascom",@"23424":@"Stour Marine",@"44047":@"SoftBank Mobile Corp",@"40418":@"Reliance Telecom Private",@"62601":@"CSTmovel",@"311285":@"Verizon Wireless",@"23432":@"Everyth. Ev.wh./T-Mobile",@"20205":@"Vodafone",@"25099":@"BeeLine/VimpelCom",@"311810":@"Bluegrass Wireless LLC",@"44055":@"KDDI Corporation",@"44063":@"NTT Docomo",@"40434":@"BSNL",@"311250":@"Wave Runner LLC",@"54801":@"Telecom Cook Islands",@"70402":@"TIGO/COMCEL",@"23409":@"Tismi",@"44071":@"KDDI Corporation",@"40442":@"Aircel",@"46002":@"中国移动",@"23417":@"FlexTel",@"61201":@"Comstar",@"40450":@"Reliance Telecom Private",@"21630":@"T-mobile/Magyar",@"360050":@"Digicel",@"23425":@"Truphone",@"44048":@"SoftBank Mobile Corp",@"52000":@"Hutch/CAT CDMA",@"708002":@"Telefonica/CELTEL",@"40419":@"Escotel Mobile Communications",@"23433":@"Everyth. Ev.wh./Orange",@"732130":@"Avantel SAS",@"29364":@"T-2 d.o.o.",@"46010":@"中国联通",@"44056":@"KDDI Corporation",@"310990":@"E.N.M.R. Telephone Coop.",@"20214":@"CyTa Mobile",@"44064":@"NTT Docomo",@"70267":@"DigiCell",@"61701":@"Orange/Cellplus",@"311274":@"Verizon Wireless",@"29001":@"Tele Greenland",@"70403":@"Telefonica",@"44072":@"KDDI Corporation",@"732142":@"UNE EPM Telecomunicaciones SA ESP",@"310440":@"Dobson Cellular Systems",@"502195":@"XOX Com Sdn Bhd",@"23418":@"Cloud9/wire9 Tel.",@"61202":@"Atlantik Tel./Moov",@"45601":@"Mobitel/Cam GSM",@"44080":@"KDDI Corporation",@"310160":@"T-Mobile",@"53901":@"Tonga Communications",@"23426":@"Lycamobile",@"46011":@"中国电信",@"44049":@"NTT Docomo",@"52001":@"AIS/Advanced Info Service",@"374140":@"LaqTel Ltd.",@"29501":@"Swisscom FL AG",@"23434":@"Everyth. Ev.wh./Orange",@"732154":@"Virgin Mobile Colombia SAS",@"20207":@"AMD Telecom SA",@"40428":@"Aircel",@"63005":@"SuperCell",@"311286":@"Verizon Wireless",@"40451":@"BSNL",@"60301":@"ATM Mobils",@"46003":@"中国电信",@"40436":@"Reliance Telecom Private",@"61702":@"Mahanagar Telephone",@"70268":@"International Telco (INTELCO)",@"44065":@"NTT Docomo",@"23450":@"Jersey Telecom",@"44073":@"KDDI Corporation",@"40444":@"Spice",@"61710":@"Emtel Ltd",@"52501":@"Singtel",@"44081":@"KDDI Corporation",@"62120":@"Airtel/ZAIN/Econet",@"61203":@"Orange",@"41845":@"Mobitel (Iraq-Kurdistan) and Moutiny",@"23419":@"PMN/Teleware",@"45602":@"Smart Mobile",@"63513":@"TIGO",@"23427":@"Vodafone",@"334010":@"NEXTEL",@"40460":@"Aircel Digilink India",@"40452":@"Reliance Telecom Private",@"46004":@"中国卫通",@"29502":@"Orange",@"23435":@"JSC Ingenicum",@"46020":@"中国铁通",@"44058":@"NTT Docomo",@"40429":@"Aircel",@"60302":@"Orascom / DJEZZY",@"60801":@"Orange/Sonatel",@"44066":@"NTT Docomo",@"311275":@"Verizon Wireless",@"61703":@"Mahanagar Telephone",@"50571":@"Telstra Corp. Ltd.",@"28601":@"Turkcell",@"44074":@"KDDI Corporation",@"23451":@"Jersey Telecom",@"311800":@"Bluegrass Wireless LLC",@"52502":@"Singtel",@"44082":@"KDDI Corporation",@"35001":@"Telecommunications (Bermuda & West Indies) Ltd (Digicel Bermuda)",@"61204":@"Comium",@"45603":@"QB/Cambodia Adv. Comms.",@"63514":@"Airtel",@"40453":@"BSNL",@"44090":@"SoftBank Mobile Corp",@"23428":@"Marthon Telecom",@"311287":@"Verizon Wireless",@"46005":@"中国电信",@"52003":@"Advanced Wireless Networks/AWN",@"60802":@"TIGO/Sentel GSM",@"23436":@"Cable and Wireless Isle of Man",@"20209":@"Tim/Wind",@"60303":@"Oreedo/Wataniya / Nedjma ",@"27201":@"Vodafone Eircell",@"44067":@"NTT Docomo",@"40438":@"BSNL",@"50572":@"Telstra Corp. Ltd.",@"28602":@"Vodafone-Telsim",@"43801":@"MTS/Barash Communication",@"44075":@"KDDI Corporation",@"52503":@"MobileOne Ltd",@"310980":@"AT&T Wireless Inc.",@"44083":@"KDDI Corporation",@"35002":@"M3 Wireless Ltd",@"61205":@"MTN",@"50201":@"Art900",@"45604":@"Cambodia Advance Communications Co. Ltd (CADCOMMS)",@"40454":@"BSNL",@"46006":@"中国联通",@"35010":@"DigiCel / Cingular",@"62130":@"MTN",@"310710":@"Arctic Slope Telephone Association Cooperative Inc.",@"52004":@"True Move/Orange",@"36403":@"Smart Communications",@"40462":@"BSNL",@"23437":@"Synectiv Ltd.",@"40470":@"Hexacom India",@"310430":@"GCI Communication Corp.",@"60803":@"Expresso/Sudatel",@"27202":@"Three/O2/Digifone",@"310150":@"AT&T Wireless Inc.",@"44068":@"NTT Docomo",@"311276":@"Verizon Wireless",@"36291":@"SETEL GSM",@"52020":@"ACeS Thailand - ACeS Regional Services Co Ltd",@"374130":@"Digicel",@"28603":@"AVEA/Aria",@"43802":@"Altyn Asyr/TM-Cell",@"44076":@"KDDI Corporation",@"44084":@"KDDI Corporation",@"45605":@"Smart Mobile",@"61206":@"OriCell",@"40455":@"BSNL",@"52512":@"GRID Communications Pte Ltd",@"46007":@"中国移动",@"44092":@"SoftBank Mobile Corp",@"42901":@"NT Mobile / Namaste",@"28967":@"Aquafon",@"312040":@"Custer Telephone Cooperative Inc.",@"52005":@"Total Access (DTAC)",@"50210":@"Digi Telecommunications",@"29505":@"Telecom FL1 AG",@"41001":@"Mobilink",@"344030":@"APUA PCS",@"40471":@"BSNL",@"311288":@"Verizon Wireless",@"27203":@"Meteor Mobile Ltd.",@"26801":@"Vodafone",@"42402":@"Etisalat",@"44069":@"NTT Docomo",@"27211":@"Tesco Mobile/Liffey Telecom",@"28604":@"AVEA/Aria",@"44077":@"KDDI Corporation",@"52505":@"Starhub",@"41501":@"MIC1 (Alfa)",@"44085":@"KDDI Corporation",@"45606":@"Smart Mobile",@"61207":@"Aircomm SA",@"40456":@"Escotel Mobile Communications",@"36269":@"Polycom N.V./ Digicel",@"50590":@"Singtel Optus",@"44093":@"SoftBank Mobile Corp",@"40464":@"BSNL",@"28968":@"A-Mobile",@"50211":@"MTX Utara",@"42902":@"Ncell",@"46008":@"中国移动",@"29506":@"CUBIC (Liechtenstein",@"62140":@"M-Tel/Nigeria Telecom. Ltd.",@"40472":@"BSNL",@"27204":@"Access Telecom Ltd.",@"40480":@"BSNL",@"42403":@"DU",@"311277":@"Verizon Wireless",@"40101":@"Beeline/KaR-Tel LLP",@"23455":@"Guernsey Telecoms",@"502151":@"Baraka Telecom Sdn Bhd",@"44078":@"Okinawa Cellular Telephone",@"338050":@"DIGICEL/Mossel",@"502198":@"CelCom",@"52506":@"Starhub",@"25901":@"Orange/Voxtel",@"44086":@"KDDI Corporation",@"62125":@"Visafone",@"24001":@"Telia Mobile",@"40457":@"BSNL",@"46009":@"中国联通",@"311289":@"Verizon Wireless",@"44094":@"SoftBank Mobile Corp",@"50212":@"Maxis",@"41003":@"UFONE/PAKTel",@"29507":@"First Mobile AG",@"40473":@"BSNL",@"722070":@"Movistar/Telefonica",@"50220":@"Electcoms Wireless Sdn Bhd",@"52015":@"ACT Mobile",@"310690":@"Keystone Wireless LLC",@"26803":@"NOS/Optimus",@"27205":@"Three/H3G",@"40481":@"BSNL",@"350000":@"Bermuda Digital Communications Ltd (BDC)",@"52023":@"Digital Phone Co.",@"27213":@"Lycamobile",@"40102":@"K-Cell",@"310700":@"Cross Valliant Cellular Partnership",@"27077":@"Millicom Tango GSM",@"36430":@"Bahamas Telco. Comp.",@"44079":@"KDDI Corporation",@"41882":@"Korek",@"310420":@"Cincinnati Bell Wireless LLC",@"25902":@"Moldcell",@"52507":@"Singtel",@"310140":@"GTA Wireless",@"41503":@"MIC2/LibanCell/MTC",@"24002":@"H3G Access AB",@"45608":@"Metfone",@"44087":@"NTT Docomo",@"40458":@"BSNL",@"44095":@"SoftBank Mobile Corp",@"40466":@"BSNL",@"24010":@"Spring Mobil AB",@"50213":@"CelCom",@"374120":@"Bmobile/TSTT",@"41004":@"ZONG/CMPak",@"42904":@"Smart Cell",@"40474":@"BSNL",@"23101":@"Orange",@"26804":@"Lycamobile",@"40482":@"Escorts Telecom Ltd.",@"311278":@"Verizon Wireless",@"62150":@"Glo Mobile",@"36295":@"EOCG Wireless NV",@"312030":@"Cross Wireless Telephone Co.",@"23457":@"Sky UK Limited",@"502152":@"YES",@"22200":@"VOIP Line",@"21670":@"Vodafone",@"25903":@"IDC/Unite ",@"44088":@"KDDI Corporation",@"45609":@"Sotelco/Beeline",@"40459":@"BSNL",@"44096":@"SoftBank Mobile Corp",@"732111":@"TIGO/Colombia Movil",@"24011":@"Lindholmen Science Park AB",@"40467":@"Reliance Telecom Private",@"40475":@"BSNL",@"23102":@"T-Mobile",@"27207":@"eircom Ltd",@"40483":@"Reliable Internet Services",@"311490":@"Sprint Spectrum",@"732123":@"Movistar",@"23458":@"Manx Telecom",@"311500":@"Cambridge Telephone Company Inc.",@"22201":@"TIM",@"21671":@"UPC Magyarorszag Kft.",@"25904":@"Eventis Mobile",@"311220":@"United States Cellular Corp.",@"358110":@"Cable & Wireless",@"44089":@"KDDI Corporation",@"24004":@"H3G Access AB",@"41892":@"Itisaluna and Kalemat",@"44097":@"SoftBank Mobile Corp",@"45618":@"MFone/Camshin/Cellcard",@"24012":@"Lycamobile Ltd",@"40468":@"Mahanagar Telephone Nigam",@"41006":@"Telenor",@"40476":@"BSNL",@"24020":@"Wireless Maingate AB",@"23103":@"4Ka",@"52018":@"Total Access (DTAC)",@"26806":@"MEO/TMN",@"311279":@"Verizon Wireless",@"28988":@"A-Mobile",@"722340":@"Telecom Personal S.A.",@"502153":@"Webe/Packet One Networks (Malaysia) Sdn Bhd",@"62160":@"ETISALAT",@"310960":@"Uintah Basin Electronics Telecommunications Inc.",@"22202":@"Elsacom",@"25905":@"IDC/Unite ",@"310680":@"AT&T Wireless Inc.",@"22210":@"Vodafone",@"24005":@"Svenska UMTS-N",@"23475":@"Inquam Telecom Ltd",@"44098":@"SoftBank Mobile Corp",@"40469":@"Mahanagar Telephone Nigam",@"310410":@"AT&T Wireless Inc.",@"50216":@"Digi Telecommunications",@"24013":@"Ventelo Sverige AB",@"41007":@"Warid Telecom",@"310130":@"North Carolina RSA 3 Cellular Tel. Co.",@"40477":@"BSNL",@"23104":@"T-Mobile",@"23491":@"Vodafone",@"27209":@"Clever Communications Ltd",@"26807":@"NOS/Optimus",@"40485":@"Reliance Telecom Private",@"750001":@"Cable and Wireless South Atlantic Ltd (Falkland Islands",@"65001":@"TNM/Telekom Network Ltd.",@"312290":@"Uintah Basin Electronics Telecommunications Inc.",@"53943":@"Shoreline Communication",@"50588":@"Localstar Holding Pty. Ltd",@"24006":@"Telenor (Vodafone)",@"23476":@"BT Group",@"44099":@"NTT Docomo",@"24014":@"TDC Sverige AB",@"50217":@"Maxis",@"72400":@"Nextel (Telet)",@"41008":@"Instaphone",@"65501":@"Vodacom",@"40478":@"Idea Cellular Ltd.",@"24022":@"Eu Tel AB",@"23105":@"Orange",@"23492":@"Cable and Wireless ",@"73801":@"DigiCel",@"40486":@"Barakhamba Sales & Serv.",@"24030":@"NextGen Mobile Ltd (CardBoardFish)",@"732101":@"Comcel S.A. Occel S.A./Celcaribe",@"722341":@"Telecom Personal S.A.",@"40107":@"Dalacom/Altel",@"502154":@"Tron/Talk Focus Sdn Bhd",@"65010":@"Airtel/Zain/Celtel ltd.",@"24007":@"Tele2 Sverige AB",@"311480":@"Verizon Wireless",@"23477":@"BT Group",@"64101":@"Airtel/Celtel",@"24015":@"Wireless Maingate Nordic AB",@"50218":@"U Mobile",@"72401":@"Vivo S.A./Telemig ",@"21303":@"Mobiland",@"65502":@"8.ta",@"40479":@"CellOne A&N",@"24023":@"Infobip Ltd.",@"23106":@"O2",@"73802":@"Cellink Plus",@"65510":@"MTN",@"41532":@"Cellis",@"40487":@"Escorts Telecom Ltd.",@"20402":@"Tele2",@"64601":@"Airtel/MADACOM",@"20410":@"KPN Telecom B.V.",@"21803":@"Eronet Mobile",@"27099":@"Orange/VOXmobile S.A.",@"722330":@"Claro/ CTI/AMX",@"24008":@"Telenor (Vodafone)",@"23478":@"Wave Telecom Ltd",@"55280":@"Palau Mobile Corp. (PMC) (Palau",@"310950":@"Unknown",@"50219":@"CelCom",@"24016":@"42 Telecom AB",@"72402":@"TIM",@"310670":@"Northstar",@"64110":@"MTN Ltd.",@"24024":@"Telenor (Vodafone)",@"72410":@"Vivo S.A./Telemig ",@"310390":@"Yorkville Telephone Cooperative",@"41533":@"Cellis",@"63201":@"GuineTel",@"40488":@"Escorts Telecom Ltd.",@"732102":@"Movistar",@"23115":@"Orange",@"20403":@"Voiceworks Mobile BV",@"502155":@"Samata Communications Sdn Bhd",@"310400":@"Minnesota South. Wirel. Co. / Hickory",@"64602":@"Orange/Soci",@"23494":@"H3G Hutchinson",@"310120":@"Sprint Spectrum",@"22206":@"Vodafone",@"354860":@"Cable & Wireless ",@"311481":@"Verizon Wireless",@"50599":@"Railcorp/Vodafone",@"63701":@"Telesom ",@"312280":@"Cellular Network Partnership LLC",@"24017":@"Gotalandsnatet AB",@"72403":@"TIM",@"64111":@"Uganda Telecom Ltd.",@"22230":@"RFI Rete Ferroviaria Italiana SpA",@"24025":@"Digitel Mobile Srl",@"72411":@"Vivo S.A./Telemig ",@"41534":@"FTML Cellis",@"312010":@"Missouri RSA No 5 Partnership",@"65512":@"MTN",@"63202":@"SpaceTel",@"20404":@"Vodafone Libertel",@"40489":@"Escorts Telecom Ltd.",@"64603":@"Sacel",@"54001":@"BREEZE",@"20412":@"KPN/Telfort",@"22207":@"Noverca Italia Srl",@"21805":@"M-Tel",@"62301":@"Centrafr. Telecom+",@"63090":@"Africell",@"20420":@"T-mobile/former Orange",@"70601":@"CLARO/CTE",@"24018":@"Generic Mobile Systems Sweden AB",@"72404":@"TIM",@"63710":@"Nationlink",@"24026":@"Beepsend",@"72412":@"Claro/Albra/America Movil",@"41535":@"Cellis",@"62801":@"Libertis S.A.",@"732103":@"TIGO/Colombia Movil",@"63203":@"Orange",@"20405":@"Elephant Talk Communications Premium Rate Services Netherlands BV",@"65521":@"Cape Town Metropolitan",@"64604":@"Telma",@"54002":@"bemobile",@"36439":@"Bahamas Telco. Comp.",@"22208":@"Fastweb SpA",@"62302":@"Telecel Centraf. ",@"54010":@"BREEZE",@"20421":@"NS Railinfrabeheer B.V.",@"311482":@"Verizon Wireless",@"70602":@"Digicel",@"338020":@"Cable & Wireless",@"24019":@"Mundio Mobile (Sweden) Ltd",@"72405":@"Claro/Albra/America Movil",@"61401":@"Orange/Sahelc.",@"65506":@"Sentech",@"24027":@"Fogg Mobile AB",@"722320":@"Claro/ CTI/AMX",@"41536":@"MIC2/LibanCell/MTC",@"62802":@"MOOV/Telecel",@"37001":@"Orange",@"24035":@"42 Telecom AB",@"20406":@"Mundio/Vectone Mobile",@"310940":@"Poka Lambro Telco Ltd.",@"310660":@"T-Mobile",@"20414":@"6GMOBILE BV",@"310380":@"AT&T Wireless Inc.",@"61901":@"Airtel/Zain/Celtel",@"29201":@"Prima Telecom",@"62303":@"Orange/Celca",@"70603":@"Telemovil",@"63704":@"Somafone",@"72406":@"Vivo S.A./Telemig ",@"61402":@"Airtel/Zain/CelTel",@"64114":@"Orange",@"65507":@"Cell C",@"71021":@"Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)",@"24028":@"CoolTEL Aps",@"22233":@"PosteMobile SpA",@"37002":@"Claro",@"41537":@"MIC2/LibanCell/MTC",@"62803":@"Airtel/ZAIN/Celtel Gabon S.A.",@"64122":@"Airtel/Warid",@"29701":@"Telenor/Promonte GSM",@"24036":@"ID Mobile",@"20407":@"Teleena Holding BV",@"312270":@"Cellular Network Partnership LLC",@"64130":@"K2 Telecom Ltd",@"60501":@"Orange",@"20415":@"Ziggo BV",@"72430":@"Oi (TNL PCS / Oi)",@"62304":@"Nationlink",@"61902":@"Tigo/Millicom",@"311483":@"Verizon Wireless",@"20423":@"Aspider Solutions",@"70604":@"Telefonica",@"72407":@"CTBC/Triangulo ",@"61403":@"MOOV/TeleCel",@"28301":@"ArmenTel/Beeline",@"22234":@"BT Italia SpA",@"24029":@"Mercury International Carrier Services",@"72415":@"Sercontel Cel",@"37003":@"TRIcom",@"41538":@"MIC2/LibanCell/MTC",@"62804":@"Azur/Usan S.A.",@"71030":@"Movistar",@"29702":@"Monet/T-mobile",@"20408":@"KPN Telecom B.V.",@"72423":@"Vivo S.A./Telemig ",@"60502":@"TuniCell/Tunisia Telecom",@"63086":@"Orange RDC sarl",@"20416":@"T-Mobile B.V.",@"72431":@"Oi (TNL PCS / Oi)",@"61903":@"Africel",@"311460":@"Fisher Wireless Services Inc.",@"20424":@"Private Mobility Nederland BV",@"28801":@"Faroese Telecom",@"70605":@"INTELFON SA de CV",@"72408":@"TIM",@"61404":@"Orange/Sahelc.",@"22235":@"Lycamobile Srl",@"72416":@"Brazil Telcom",@"37004":@"Trilogy Dominicana S. A.",@"41539":@"MIC2/LibanCell/MTC",@"28310":@"Orange",@"22243":@"Telecom Italia Mobile SpA",@"29703":@"Mtel",@"20409":@"Lycamobile Ltd",@"72424":@"Amazonia Celular S/A",@"63730":@"Golis",@"60503":@"Oreedo/Orascom",@"27401":@"Siminn",@"43002":@"Etisalat",@"20417":@"Intercity Mobile Communications BV",@"72432":@"CTBC Celular SA (CTBC)",@"405034":@"TATA / Karnataka",@"61904":@"Comium",@"311484":@"Verizon Wireless",@"722310":@"Claro/ CTI/AMX",@"28802":@"Kall GSM",@"42101":@"Sabaphone",@"310650":@"Jasper",@"310370":@"Docomo",@"310090":@"Edge Wireless LLC",@"26001":@"Polkomtel/Plus",@"22244":@"WIND (Blu) -",@"310100":@"Plateau Telecommunications Inc.",@"64133":@"Smile Communications Uganda Ltd",@"63088":@"Yozma Timeturns sprl (YTT)",@"27402":@"Vodafone/Tal hf",@"20418":@"UPC Nederland BV",@"72433":@"CTBC Celular SA (CTBC)",@"42601":@"Batelco",@"61905":@"Africel",@"302780":@"Sask Tel Mobility",@"28803":@"Edge Mobile Sp/F",@"42102":@"MTN/Spacetel",@"64118":@"Suretelecom Uganda Ltd",@"28304":@"Karabakh Telecom",@"26002":@"T-Mobile/ERA",@"65519":@"Wireless Business Solutions (Pty) Ltd",@"41201":@"Afghan Wireless/AWCC",@"29577":@"Alpmobile/Tele2",@"26010":@"Sferia",@"63089":@"TIGO/Oasis",@"27403":@"Vodafone/Tal hf",@"72434":@"CTBC Celular SA (CTBC)",@"42602":@"ZAIN/Vodafone",@"311485":@"Verizon Wireless",@"27411":@"NOVA",@"346140":@"LIME / Cable & Wirel.",@"33401":@"NEXTEL",@"42103":@"Yemen Mob. CDMA",@"41701":@"Syriatel Holdings",@"28305":@"Vivacell",@"72419":@"Vivo S.A./Telemig ",@"311170":@"PetroCom",@"26003":@"Orange/IDEA/Centertel",@"26011":@"NORDISK Polska",@"60506":@"TuniCell/Tunisia Telecom",@"27404":@"VIKING/IMC",@"20428":@"Lancelot BV",@"33402":@"TelCel/America Movil",@"42104":@"HITS/Y Unitel",@"41702":@"MTN/Spacetel",@"24201":@"Telenor",@"54509":@"Kiribati Frigate",@"722020":@"Nextel",@"26004":@"Tele2",@"310920":@"Get Mobile Inc.",@"41203":@"WaselTelecom (WT)",@"26012":@"Cyfrowy POLSAT S.A.",@"310360":@"Cellular Network Partnership LLC",@"27405":@"Vodafone/Tal hf",@"42604":@"VIVA",@"311486":@"Verizon Wireless",@"24701":@"Latvian Mobile Phone",@"352110":@"Cable & Wireless",@"33403":@"Movistar/Pegaso",@"24202":@"Netcom",@"63719":@"HorTel",@"312530":@"Sprint Spectrum",@"302490":@"WIND",@"26005":@"Orange/IDEA/Centertel",@"22248":@"Telecom Italia Mobile SpA",@"302500":@"Videotron",@"26013":@"Sferia",@"302220":@"Telus Mobility",@"72437":@"Unicel do Brasil Telecomunicacoes Ltda",@"41220":@"Roshan/TDCA ",@"24702":@"Tele2",@"33404":@"AT&T/IUSACell",@"61925":@"Mobitel",@"23801":@"TDC Denmark",@"24203":@"Teletopia",@"62199":@"Starcomms",@"26006":@"Play/P4",@"26014":@"Sferia",@"348570":@"Caribbean Cellular",@"27407":@"IceCell",@"311440":@"Bluegrass Wireless LLC",@"72438":@"Claro/Albra/America Movil",@"311487":@"Verizon Wireless",@"24703":@"TRIATEL/Telekom Baltija",@"72454":@"PORTO SEGURO TELECOMUNICACOES",@"63760":@"Nationlink",@"24204":@"Tele2",@"23802":@"Telenor/Sonofon",@"24212":@"Telenor",@"26007":@"Play/P4",@"23810":@"TDC Denmark",@"73000":@"TESAM SA",@"24220":@"Jernbaneverket (GSM-R)",@"26015":@"Tele2",@"74401":@"Hola/VOX",@"27408":@"Siminn",@"72439":@"Nextel (Telet)",@"722010":@"Compania De Radiocomunicaciones Moviles SA",@"310910":@"Verizon Wireless",@"40177":@"Tele2/NEO/MTS",@"41230":@"Etisalat ",@"310350":@"Mohave Cellular LP",@"310070":@"AT&T Wireless Inc.",@"23803":@"Mach Connectivity ApS",@"24205":@"Network Norway AS",@"73001":@"Entel Telefonia Mov",@"26008":@"e-Telko",@"24221":@"Jernbaneverket (GSM-R)",@"26016":@"Mobyland",@"74402":@"Claro/Hutchison",@"27409":@"Amitelo",@"302760":@"Public Mobile",@"311488":@"Verizon Wireless",@"52099":@"True Move/Orange",@"65201":@"Mascom Wireless (Pty) Ltd.",@"24705":@"Bite",@"24206":@"ICE Nordisk Mobiltelefon AS",@"23804":@"NextGen Mobile Ltd (CardBoardFish)",@"73002":@"TELEFONICA",@"26009":@"Lycamobile",@"23812":@"Lycamobile Ltd",@"24214":@"ICE Nordisk Mobiltelefon AS",@"65701":@"Eritel",@"24222":@"Network Norway AS",@"26017":@"Aero2 SP",@"23820":@"Telia",@"74403":@"Compa",@"73010":@"Entel Telefonia",@"20601":@"Belgacom/Proximus",@"24706":@"SIA Rigatta",@"65202":@"Orange",@"311710":@"Northeast Wireless Networks LLC",@"311430":@"RSA 1 Limited Partnership",@"41240":@"Areeba/MTN",@"23805":@"ApS KBUS",@"24207":@"Ventelo AS",@"64301":@"mCel",@"63771":@"Somtel",@"73003":@"Claro",@"21890":@"BH Mobile",@"24223":@"Lycamobile Ltd",@"26018":@"AMD Telecom.",@"74404":@"Tigo/Telecel",@"35099":@"CellOne Ltd",@"63400":@"Canar Telecom",@"311489":@"Verizon Wireless",@"73011":@"Celupago SA",@"20602":@"SNCT/NMBS",@"24707":@"SIA Master Telecom",@"64801":@"Net One",@"20610":@"Mobistar/Orange",@"33409":@"NEXTEL",@"22277":@"IPSE 2000",@"26034":@"T-Mobile/ERA",@"310890":@"Verizon Wireless",@"64166":@"i-Tel Ltd",@"41709":@"Syriatel Holdings",@"71201":@"ICE",@"24208":@"TDC Mobil A/S",@"23806":@"H3G",@"310900":@"Cable & Communications Corp.",@"262n/a":@"Talkline",@"71073":@"Claro",@"73004":@"Nextel SA",@"310620":@"Coleman County Telco /Trans TX",@"310340":@"Westlink Communications, LLC",@"73012":@"Telestar Movil SA",@"74405":@"TIM/Nucleo/Personal",@"63401":@"ZAIN/Mobitel",@"342050":@"Digicel",@"23830":@"Telia",@"24708":@"SIA IZZI",@"65204":@"BeMOBILE",@"26035":@"PKP Polskie Linie Kolejowe S.A.",@"71202":@"ICE",@"24209":@"Com4 AS",@"23807":@"Mundio Mobile",@"64303":@"Movitel",@"312230":@"North Dakota Network Company",@"41250":@"Etisalat ",@"73005":@"Nextel SA",@"62001":@"MTN",@"73013":@"Tribe Mobile SPA",@"23823":@"Banedanmark",@"20468":@"Unify Mobile",@"63402":@"MTN",@"362951":@"UTS Wireless",@"24709":@"SIA Camel Mobile",@"33450":@"AT&T/IUSACell",@"64803":@"Telecel",@"54201":@"Vodafone",@"26036":@"Mundio Mobile Sp. z o.o.",@"62501":@"CV Movel",@"20620":@"Base/KPN",@"71203":@"Claro",@"64304":@"Vodacom",@"63902":@"Safaricom Ltd.",@"73006":@"Blue Two Chile SA",@"62002":@"Vodafone",@"63782":@"Somtel",@"311420":@"Northwest Missouri Cellular Limited Partnership",@"73014":@"Netline Telefonica Movil Ltda",@"20469":@"KPN Telecom B.V.",@"311140":@"Cross Wireless Telephone Co.",@"316010":@"Sprint Spectrum",@"61101":@"Orange/Sonatel/Spacetel",@"45500":@"Smartone Mobile",@"20605":@"Telenet BidCo NV",@"64804":@"Econet",@"54202":@"DigiCell",@"62502":@"T+ Telecom",@"71204":@"Movistar",@"22288":@"WIND (Blu) -",@"63903":@"Airtel/Zain/Celtel Ltd.",@"732020":@"UNE EPM Telecomunicaciones SA ESP",@"73007":@"TELEFONICA",@"62003":@"Milicom/Tigo",@"61601":@"Libercom",@"25999":@"IDC/Unite ",@"71220":@"Virtualis",@"73015":@"Cibeles Telecom SA",@"37201":@"Comcel",@"45501":@"C.T.M. TELEMOVEL+",@"61102":@"SotelGui",@"20606":@"Lycamobile Belgium",@"310610":@"Elkhart TelCo. / Epic Touch Co.",@"342600":@"LIME",@"26038":@"CallFreedom Sp. z o.o.",@"310330":@"T-Mobile",@"29401":@"T-Mobile/Mobimak",@"45002":@"KT Freetel Co. Ltd.",@"60201":@"Orange/Mobinil",@"73008":@"VTR Banda Ancha SA",@"62004":@"Expresso Ghana Ltd",@"61602":@"Etisalat/MOOV",@"51000":@"PT Pasifik Satelit Nusantara (PSN)",@"37202":@"Digicel",@"63405":@"Vivacell",@"312220":@"Missouri RSA No 5 Partnership",@"316011":@"Southern Communications Services Inc.",@"45502":@"China Telecom",@"61103":@"Intercel",@"60701":@"Gamcel",@"28001":@"Vodafone/CyTa",@"23199":@"Zeleznice Slovenskej republiky (ZSR)",@"36301":@"Setar GSM",@"51500":@"Fix Line",@"29402":@"ONE/Cosmofone",@"45003":@"SK Telecom",@"60202":@"Vodafone/Mirsfone ",@"63905":@"Econet Wireless",@"73009":@"Nextel SA",@"61603":@"MTN/Spacetel",@"51001":@"Indosat/Satelindo/M3",@"37203":@"National Telecom SA (NatCom)",@"36801":@"C-COM",@"63406":@"ZAIN/Mobitel",@"45503":@"Hutchison Telephone Co. Ltd",@"61104":@"MTN/Areeba",@"60702":@"Africel",@"54720":@"Vini/Tikiphone",@"311410":@"Iowa RSA No. 2 Limited Partnership",@"36302":@"Digicel",@"63422":@"MTN",@"28010":@"MTN/Areeba",@"29403":@"VIP Mobile",@"45004":@"KT Freetel Co. Ltd.",@"51501":@"Globe Telecom",@"60203":@"ETISALAT",@"22299":@"Hi3G",@"62006":@"Airtel/ZAIN",@"61604":@"Bell Benin/BBCOM",@"242017":@"Ventelo AS",@"43701":@"Beeline/Bitel",@"23828":@"CoolTEL ApS",@"51010":@"Telkomsel",@"63407":@"Sudani One",@"45504":@"C.T.M. TELEMOVEL+",@"61105":@"Celcom",@"63415":@"Sudani One",@"60703":@"Comium",@"27601":@"AMC/Cosmote",@"310870":@"Kaplan Telephone Company Inc.",@"42800":@"Skytel Co. Ltd",@"310590":@"Verizon Wireless",@"51502":@"Globe Telecom",@"330110":@"Puerto Rico Telephone Company Inc. (PRTC)",@"45005":@"SK Telecom Co. Ltd",@"34001":@"Orange Caribe",@"310600":@"New-Cell Inc.",@"63907":@"Orange",@"310320":@"Smith Bagley Inc.",@"62007":@"GloMobile",@"61605":@"GloMobile",@"310040":@"Matanuska Tel. Assn. Inc.",@"73019":@"Sociedad Falabella Movil SPA",@"51011":@"PT. Excelcom",@"26201":@"T-mobile/Telekom",@"63408":@"Vivacell",@"45505":@"Hutchison Telephone Co. Ltd",@"60704":@"Q-Cell",@"27602":@"Vodafone ",@"41280":@"Afghan Telecom Corp. (AT)",@"51503":@"Smart",@"43211":@"MCI/TCI",@"45006":@"LG Telecom",@"20498":@"T-Mobile B.V.",@"34002":@"Outremer Telecom",@"28020":@"PrimeTel PLC",@"36320":@"Digicel",@"43703":@"AkTel LLC",@"26202":@"Vodafone D2",@"41401":@"Myanmar Post & Teleco.",@"54715":@"Pacific Mobile Telecom (PMT)",@"45506":@"Smartone Mobile",@"26210":@"DB Netz AG",@"27603":@"Eagle Mobile",@"311670":@"Pine Belt Cellular, Inc.",@"34003":@"TelCell GSM",@"311390":@"Verizon Wireless",@"43220":@"Rightel",@"34011":@"TelCell GSM",@"40001":@"Azercell Telekom B.M.",@"311120":@"Choice Phone LLC",@"26203":@"E-Plus",@"51021":@"Indosat/Satelindo/M3",@"26211":@"O2",@"27604":@"PLUS Communication Sh.a",@"51505":@"SUN/Digitel",@"45008":@"KT Freetel Co. Ltd.",@"310860":@"Texas RSA 15B2 Limited Partnership",@"41902":@"Zain",@"34012":@"UTS Caraibe",@"40002":@"J.V. Bakcell GSM 2000",@"310580":@"PCS ONE",@"34020":@"Bouygues/DigiCel",@"43705":@"MEGACOM",@"26204":@"Vodafone D2",@"352050":@"Digicel",@"310310":@"T-Mobile",@"26212":@"E-Plus",@"26220":@"E-Plus",@"43214":@"TKC/KFZO",@"23001":@"T-Mobile / RadioMobil",@"312190":@"Sprint Spectrum",@"41903":@"Wataniya",@"302720":@"Rogers AT&T Wireless",@"51007":@"Flexi (PT Telkom) (CDMA)",@"40003":@"Caspian American Telecommunications LLC (CATEL)",@"24410":@"TDC Oy Finland",@"26205":@"E-Plus",@"26213":@"Mobilcom",@"356110":@"Cable & Wireless",@"732001":@"TIGO/Colombia Movil",@"23002":@"O2",@"44140":@"NTT Docomo",@"41904":@"Viva",@"24403":@"DNA/Finnet",@"40004":@"Azerfon.",@"51008":@"Axis/Natrindo",@"24411":@"Mundio Mobile (Finland) Ltd",@"26206":@"T-mobile/Telekom",@"41405":@"Oreedoo",@"26214":@"Group 3G UMTS",@"23502":@"Everyth. Ev.wh.",@"311110":@"Verizon Wireless",@"23003":@"Vodafone",@"22601":@"Vodafone",@"44141":@"NTT Docomo",@"24404":@"DNA/Finnet",@"43232":@"Taliya",@"51009":@"PT Smartfren Telecom Tbk",@"24412":@"DNA/Finnet",@"26207":@"O2",@"362630":@"Cingular Wireless",@"41406":@"Telenor",@"310850":@"Aeris Comm. Inc.",@"74601":@"Telesur",@"310570":@"MTPCS LLC",@"21201":@"Monaco Telecom",@"310290":@"NEP Cellcorp Inc.",@"40505":@"Fascel Limited",@"732002":@"Edatel S.A.",@"34008":@"Dauphin Telecom SU (Guadeloupe Telecom)",@"23004":@"Ufone",@"22602":@"Romtelecom SA",@"44142":@"NTT Docomo",@"310300":@"T-Mobile",@"310020":@"Union Telephone Co.",@"22610":@"Orange",@"24405":@"Elisa/Saunalahti",@"43709":@"O!/NUR Telecom",@"24413":@"DNA/Finnet",@"26208":@"O2",@"312180":@"Keystone Wireless LLC",@"302710":@"Globalstar Canada",@"26216":@"Telogic/ViStream",@"24421":@"Elisa/Saunalahti",@"310032":@"IT&E OverSeas",@"74602":@"Telecommunicatiebedrijf Suriname (TELESUR)",@"20800":@"Tel/Te",@"65401":@"HURI - SNPT",@"21210":@"Monaco Telecom",@"23005":@"Travel Telekommunikation s.r.o.",@"22603":@"Cosmote",@"44143":@"NTT Docomo",@"51518":@"RED Mobile/Cure",@"22611":@"Enigma Systems",@"24414":@"Alands",@"26209":@"Vodafone D2",@"51027":@"PT Sampoerna Telekomunikasi Indonesia (STI)",@"26217":@"E-Plus",@"74603":@"Digicel",@"64001":@"Tri Telecomm. Ltd.",@"41288":@"Afghan Telecom Corp. (AT)",@"311650":@"United Wireless Communications Inc.",@"20801":@"Orange",@"311370":@"GCI Communication Corp.",@"43219":@"Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)",@"22604":@"Telemobil/Zapp",@"44144":@"NTT Docomo",@"43235":@"MTN/IranCell",@"23877":@"Telenor/Sonofon",@"64501":@"Airtel/Zain/Celtel",@"65902":@"MTN South Sudan (South Sudan",@"51028":@"PT Smartfren Telecom Tbk",@"310033":@"Guam Teleph. Auth",@"74604":@"UNIQA",@"64002":@"TIGO/MIC",@"20802":@"Orange",@"26098":@"Play/P4",@"20810":@"S.F.R.",@"22605":@"RCS&RDS Digi Mobile",@"44145":@"NTT Docomo",@"310560":@"AT&T Wireless Inc.",@"26242":@"Vodafone D2",@"71401":@"Cable & W./Mas Movil",@"310280":@"T-Mobile",@"64502":@"MTN/Telecel",@"47001":@"GrameenPhone",@"352030":@"Digicel",@"44161":@"SoftBank Mobile Corp",@"65903":@"Gemtel Ltd (South Sudan",@"55301":@"Tuvalu Telecommunication Corporation (TTC)",@"310010":@"Verizon Wireless",@"64003":@"Zantel/Zanzibar Telecom",@"63601":@"ETH/MTN",@"20803":@"MobiquiThings",@"64011":@"Smile Communications Tanzania Ltd",@"23008":@"Compatel s.r.o.",@"20811":@"S.F.R.",@"63102":@"Unitel",@"22606":@"Telemobil/Zapp",@"312170":@"Iowa RSA No. 2 Limited Partnership",@"26243":@"Lycamobile",@"71402":@"Movistar",@"24409":@"Nokia Oyj",@"64503":@"Zamtel/Cell Z/MTS",@"47002":@"Robi/Aktel",@"44162":@"SoftBank Mobile Corp",@"62201":@"Airtel/ZAIN/Celtel",@"65904":@"Network of The World Ltd (NOW) (South Sudan",@"44170":@"KDDI Corporation",@"64004":@"Vodacom Ltd",@"20804":@"SISTEER",@"346050":@"Digicel Cayman Ltd",@"311920":@"Missouri RSA No 5 Partnership",@"348770":@"Digicel",@"62701":@"ORANGE/GETESA",@"20820":@"Bouygues Telecom",@"71403":@"Claro",@"47003":@"Orascom/Banglalink",@"44163":@"SoftBank Mobile Corp",@"62202":@"Tchad Mobile",@"46601":@"Far EasTone",@"310011":@"Northstar",@"54901":@"Telecom Samoa Cellular Ltd.",@"338180":@"Cable & Wireless",@"24426":@"Compatel Ltd",@"64005":@"Airtel/ZAIN/Celtel",@"53001":@"Vodafone",@"20805":@"GlobalStar",@"61301":@"TeleMob-OnaTel",@"43270":@"MTCE",@"302701":@"NB Tel Mobility",@"20813":@"S.F.R.",@"63104":@"MoviCel",@"20821":@"Bouygues Telecom",@"71404":@"Digicel",@"60400":@"Medi Telecom",@"22616":@"Lycamobile",@"45201":@"Mobifone",@"47004":@"TeleTalk",@"44164":@"SoftBank Mobile Corp",@"62203":@"Tigo/Milicom/Tchad Mobile",@"61801":@"Lonestar",@"46602":@"Far EasTone",@"342820":@"Sunbeach",@"65906":@"Zain South Sudan (South Sudan",@"46610":@"Global Mobile Corp.",@"310830":@"Caprock Cellular Ltd.",@"64006":@"Dovetel (T) Ltd",@"53002":@"Spark/NZ Telecom",@"310270":@"T-Mobile",@"45701":@"Lao Tel",@"61302":@"Airtel/ZAIN/CelTel",@"20806":@"GlobalStar",@"20814":@"Lliad/FREE Mobile",@"62703":@"HiTs-GE",@"54411":@"Blue Sky Communications",@"20822":@"Transatel SA",@"45202":@"Vinaphone",@"60401":@"IAM/Itissallat",@"302680":@"Sask Tel Mobility",@"47005":@"Citycell",@"44165":@"SoftBank Mobile Corp",@"62204":@"Salam/Sotel",@"61802":@"Libercell",@"46603":@"Far EasTone",@"310012":@"Verizon Wireless",@"312160":@"RSA 1 Limited Partnership",@"46611":@"Chunghwa Telecom LDM",@"64007":@"Tanzania Telecommunications Company Ltd (TTCL)",@"53003":@"Walker Wireless Ltd.",@"45702":@"ETL Mobile",@"61303":@"TeleCel",@"20807":@"GlobalStar",@"28201":@"Geocell Ltd.",@"366110":@"C & W",@"302702":@"MT&T Mobility",@"20815":@"Lliad/FREE Mobile",@"60901":@"Mattel",@"20823":@"Virgin Mobile/Omer",@"45203":@"S-Fone/Telecom",@"60402":@"INWI/WANA",@"20831":@"Mundio Mobile (France) Ltd",@"47006":@"Citycell",@"36010":@"Cingular",@"64008":@"Benson Informatics Ltd",@"53004":@"Telstra",@"311350":@"Sagebrush Cellular Inc.",@"45703":@"UNITEL/LAT",@"40553":@"AirTel",@"60902":@"Chinguitel SA",@"28202":@"Magti GSM Ltd.",@"311070":@"Wisconsin RSA #7 Limited Partnership",@"44190":@"NTT Docomo",@"20816":@"Lliad/FREE Mobile",@"43401":@"Buztel",@"60910":@"Mauritel",@"20824":@"MobiquiThings",@"29475":@"ONE/Cosmofone",@"45204":@"Viettel Mobile",@"47007":@"Airtel/Warid",@"46605":@"Asia Pacific Telecom Co. Ltd (APT)",@"310013":@"Verizon Wireless",@"61804":@"Comium BVI",@"64009":@"Halotel/Viettel Ltd",@"53005":@"Spark/NZ Telecom",@"42001":@"STC/Al Jawal",@"20809":@"S.F.R.",@"61820":@"LibTelco",@"37412":@"Bmobile/TSTT",@"28203":@"Iberiatel Ltd.",@"27801":@"Vodafone",@"302703":@"New Tel Mobility",@"44191":@"NTT Docomo",@"20817":@"Legos - Local Exchange Global Operation Services SA",@"342810":@"Cingular Wireless",@"310260":@"T-Mobile",@"43402":@"Uzmacom",@"20825":@"Lycamobile SARL",@"45205":@"VietnaMobile",@"42501":@"Orange/Partner Co. Ltd.",@"46606":@"Far EasTone",@"302670":@"CityWest Mobility",@"28204":@"MobiTel/Beeline",@"44192":@"NTT Docomo",@"20826":@"NRJ",@"45206":@"Viettel Mobile",@"42502":@"Cellcom ltd.",@"46607":@"Far EasTone",@"25001":@"MTS",@"42003":@"Etihad/Etisalat/Mobily",@"41601":@"ZAIN /J.M.T.S",@"28205":@"Silknet",@"44193":@"NTT Docomo",@"43404":@"Bee Line/Unitel",@"25501":@"UMC/MTS",@"311340":@"Illinois Valley Cellular RSA 2 Partnership",@"20827":@"AFONE SA",@"365840":@"Cable and Wireless",@"45207":@"Beeline",@"42503":@"Pelephone",@"25002":@"Megafon",@"61807":@"CELLCOM",@"25010":@"DTC/Don Telecom",@"42004":@"Zain",@"365010":@"Digicell / Wireless Vent. Ltd ",@"41602":@"Xpress",@"310003":@"Unknown",@"44194":@"NTT Docomo",@"43405":@"Ucell/Coscom",@"53024":@"Two Degrees Mobile Ltd",@"25502":@"Beeline",@"20828":@"Astrium",@"45208":@"Viettel Mobile",@"42891":@"Skytel Co. Ltd",@"46609":@"VMAX Telecom Co. Ltd",@"25003":@"NCC",@"24601":@"Omnitel",@"310250":@"T-Mobile",@"42512":@"Pelephone",@"310530":@"West Virginia Wireless",@"25011":@"Orensot",@"42005":@"Virgin Mobile",@"41603":@"Umniah Mobile Co.",@"45708":@"Beeline/Tigo/Millicom",@"25503":@"KyivStar",@"302660":@"MTS Mobility",@"20829":@"Orange",@"302380":@"DMTS Mobility",@"23201":@"A1 MobilKom",@"27821":@"GO Mobile",@"42505":@"Jawwal",@"25004":@"Sibchallenge",@"24602":@"Bite",@"334090":@"NEXTEL",@"25012":@"Baykal Westcom",@"24482":@"ID-Mobile",@"40211":@"B-Mobile",@"26277":@"E-Plus",@"42006":@"Lebara Mobile",@"25020":@"Tele2/ECC/Volgogr.",@"310004":@"Verizon Wireless",@"43407":@"MTS/Uzdunrobita",@"25504":@"Intertelecom Ltd (IT)",@"311880":@"Sprint Spectrum",@"23202":@"A1 MobilKom",@"42506":@"Wataniya Mobile",@"310016":@"Leap Wireless International Inc.",@"23210":@"H3G",@"25005":@"Yenisey Telecom",@"24603":@"Tele2",@"311610":@"North Dakota Network Company",@"42514":@"Alon Cellular Ltd",@"311330":@"Michigan Wireless LLC",@"25013":@"Kuban GSM",@"311050":@"Thumb Cellular Limited Partnership",@"42007":@"Zain",@"24491":@"TeliaSonera",@"54927":@"Samoatel Mobile",@"25505":@"Golden Telecom",@"23203":@"T-Mobile/Telering",@"22801":@"Swisscom",@"51588":@"Next Mobile",@"42507":@"Hot Mobile/Mirs",@"23211":@"A1 MobilKom",@"25521":@"Telesystems Of Ukraine CJSC (TSU)",@"42515":@"Home Cellular Ltd",@"51089":@"H3G CP",@"310800":@"T-Mobile",@"310520":@"VeriSign",@"74801":@"Ancel/Antel",@"310240":@"T-Mobile",@"44198":@"NTT Docomo",@"21401":@"Vodafone",@"53028":@"2degrees",@"25506":@"Astelit/LIFE",@"23204":@"T-Mobile/Telering",@"22802":@"TDC Sunrise",@"42508":@"Golan Telekom",@"23212":@"3/Orange/One Connect",@"25007":@"ZAO SMARTS",@"65101":@"Vodacom Lesotho",@"42516":@"Rami Levy Hashikma Marketing Communications Ltd",@"25015":@"ZAO SMARTS",@"302370":@"FIDO (Rogers AT&T/ Microcell)",@"21901":@"T-Mobile/Cronet",@"312130":@"East Kentucky Network LLC",@"73401":@"DigiTel C.A.",@"334080":@"Operadora Unefon SA de CV",@"44199":@"NTT Docomo",@"25507":@"TriMob LLC",@"74810":@"Claro/AM Wireless",@"42888":@"Unitel",@"23205":@"3/Orange/One Connect",@"22803":@"Salt/Orange",@"23213":@"UPC Austria",@"65102":@"Econet/Ezi-cel",@"64700":@"Orange",@"311870":@"Sprint Spectrum",@"25016":@"NTC",@"21902":@"Tele2",@"311590":@"California RSA No. 3 Limited Partnership",@"73402":@"DigiTel C.A.",@"31006":@"Consolidated Telcom",@"21910":@"VIPnet d.o.o.",@"51099":@"Esia (PT Bakrie Telecom) (CDMA)",@"64201":@"Spacetel / Econet / Leo ",@"31014":@"Testing",@"74803":@"Ancel/Antel",@"348170":@"LIME",@"21403":@"Orange",@"21411":@"Orange",@"23206":@"3/Orange/One Connect",@"35650":@"Digicel",@"23214":@"H3G",@"22812":@"TDC Sunrise",@"302651":@"Bell Mobility",@"25017":@"UralTel",@"73403":@"DigiTel C.A.",@"64202":@"Africel / Safaris",@"310780":@"Message Express Co. / Airlink PCS",@"31015":@"Unknown",@"21404":@"Yoigo",@"31023":@"Unknown",@"55001":@"FSM Telecom",@"23207":@"T-Mobile/Telering",@"22805":@"Comfone AG",@"63301":@"C&W",@"310510":@"Airtel Wireless LLC",@"310230":@"T-Mobile",@"42898":@"G-Mobile Corporation Ltd",@"23215":@"T-Mobile/Telering",@"71601":@"GlobalStar",@"21420":@"fonYou Wireless SL",@"31031":@"T-Mobile",@"42519":@"Telzar/AZI ",@"64702":@"Outremer Telecom",@"47201":@"Dhiraagu/C&W",@"73404":@"Movistar/TelCel",@"40217":@"Bhutan Telecom Ltd (BTL)",@"64710":@"SFR",@"714020":@"Movistar",@"55501":@"Niue Telecom",@"64203":@"Onatel / Telecel ",@"63801":@"Djibouti Telecom SA (Evatis)",@"302640":@"Latitude Wireless",@"21405":@"Movistar",@"302360":@"Clearnet",@"312120":@"East Kentucky Network LLC",@"31024":@"Unknown",@"23208":@"A1 MobilKom",@"63302":@"Smartcom",@"334070":@"Operadora Unefon SA de CV",@"46656":@"International Telecom Co. Ltd (FITEL)",@"42899":@"Mobicom",@"21421":@"Jazz Telecom SAU",@"71602":@"GlobalStar",@"302652":@"BC Tel Mobility",@"20891":@"Orange",@"63310":@"Airtel",@"54101":@"SMILE",@"47202":@"Ooredo/Wataniya",@"71610":@"Claro /Amer.Mov./TIM",@"62401":@"MTN",@"25019":@"OJSC Altaysvyaz",@"36070":@"Digicel",@"311860":@"Uintah Basin Electronics Telecommunications Inc.",@"25035":@"MOTIV/LLC Ekaterinburg-2000",@"21406":@"Vodafone Enabler Espana SL",@"25550":@"UMC/MTS",@"31025":@"Unknown",@"54601":@"OPT Mobilis",@"23209":@"A1 MobilKom",@"708040":@"Digicel",@"22807":@"TDC Sunrise",@"62901":@"Airtel SA",@"21422":@"Digi Spain Telecom SL",@"23217":@"Spusu/Mass Response",@"61001":@"Malitel",@"45400":@"CSL Ltd.",@"20892":@"Association Plate-forme Telecom",@"311310":@"Lamar County Cellular",@"73406":@"Movilnet C.A. ",@"62402":@"Orange",@"25028":@"BeeLine/VimpelCom",@"360110":@"C & W",@"74807":@"MOVISTAR",@"21407":@"Movistar",@"302361":@"Clearnet",@"61501":@"Togo Telecom/TogoCELL",@"31026":@"Unknown",@"44000":@"Y-Mobile",@"25044":@"StavTelesot",@"21415":@"BT Espana SAU",@"22808":@"TDC Sunrise",@"31034":@"Nevada Wireless LLC",@"62902":@"Azur SA (ETC)",@"310770":@"Iowa Wireless Services LLC",@"21423":@"Lycamobile SL",@"45401":@"Citic Telecom Ltd.",@"61002":@"Orange/IKATEL",@"302653":@"Telus Mobility",@"62910":@"MTN/Libertis",@"60600":@"Libyana",@"53701":@"Pacific Mobile",@"310490":@"Triton PCS",@"310500":@"Public Service Cellular Inc.",@"35670":@"UTS Cariglobe",@"310220":@"T-Mobile",@"71620":@"Claro /Amer.Mov./TIM",@"21408":@"Euskaltel SA",@"61502":@"Telecel/MOOV",@"344930":@"DigiCel/Cing. Wireless",@"44001":@"NTT Docomo",@"21416":@"Telecable de Asturias SA",@"22809":@"Comfone AG",@"311311":@"Farmers",@"302630":@"Bell Aliant",@"23219":@"Tele2",@"45402":@"CSL Ltd.",@"60601":@"Al-Madar",@"53702":@"GreenCom PNG Ltd",@"45410":@"CSL/New World PCS Ltd.",@"23099":@"Vodafone",@"21432":@"ION Mobile",@"62404":@"Nextel",@"334060":@"SAI PCS",@"366050":@"Wireless Ventures (Dominica) Ltd (Digicel Dominica)",@"64207":@"Smart Mobile / LACELL ",@"29310":@"Slovenske zeleznice d.o.o.",@"52801":@"Telekom Brunei Bhd (TelBru)",@"21409":@"Orange",@"61503":@"Telecel/MOOV",@"28401":@"MobilTel AD",@"44002":@"NTT Docomo",@"21417":@"R Cable y Telec. Galicia SA",@"44010":@"NTT Docomo",@"21425":@"Lycamobile SL",@"302654":@"Sask Tel Mobility",@"71606":@"Movistar",@"45403":@"H3G/Hutchinson",@"60602":@"Al-Madar",@"46668":@"ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd",@"53703":@"Digicel",@"45411":@"China-HongKong Telecom Ltd (CHKTL)",@"54105":@"DigiCel",@"708030":@"HonduTel",@"51401":@"Telin/ Telkomcel",@"311300":@"Nexus Communications Inc.",@"31060":@"Consolidated Telcom",@"64208":@"Lumitel/Viettel",@"27001":@"P+T/Post LUXGSM",@"52802":@"b-mobile",@"25039":@"UralTel",@"311020":@"Missouri RSA No 5 Partnership",@"46692":@"Chunghwa Telecom LDM",@"44003":@"NTT Docomo",@"21418":@"Cableuropa SAU (ONO)",@"43601":@"Tcell/JC Somoncom",@"20888":@"Bouygues Telecom",@"360100":@"Cingular",@"44011":@"NTT Docomo",@"21426":@"Lleida",@"45404":@"H3G/Hutchinson",@"71607":@"Nextel",@"60603":@"Libyana",@"43102":@"Etisalat",@"45412":@"China Mobile/Peoples",@"71615":@"Viettel Mobile",@"25539":@"Golden Telecom",@"51402":@"Timor Telecom",@"45420":@"HKT/PCCW",@"310760":@"Panhandle Telephone Cooperative Inc.",@"342750":@"Digicel",@"310480":@"Choice Phone LLC",@"46693":@"Mobitai",@"50501":@"Telstra Corp. Ltd.",@"52811":@"Datastream (DTSCom)",@"44004":@"SoftBank Mobile Corp",@"28403":@"BTC Mobile EOOD (vivatel)",@"21419":@"Simyo/KPN ",@"20889":@"Virgin Mobile/Omer",@"22851":@"BebbiCell AG",@"43602":@"CJSC Indigo Tajikistan",@"44012":@"NTT Docomo",@"302655":@"MTS Mobility",@"45405":@"H3G/Hutchinson",@"21427":@"Truphone",@"31046":@"SIMMETRY",@"310210":@"T-Mobile",@"44020":@"SoftBank Mobile Corp",@"344920":@"C & W",@"45413":@"China Mobile/Peoples",@"42701":@"Ooredoo/Qtel",@"31038":@"USA 3650 AT&T",@"312090":@"Allied Wireless Communications Corporation",@"376350":@"Cable & Wireless (TCI) Ltd",@"26601":@"Gibtel GSM",@"42202":@"Oman Mobile/GTO",@"50502":@"Singtel Optus",@"334050":@"AT&T/IUSACell",@"22852":@"Mundio Mobile AG",@"43603":@"MLT/TT mobile",@"62907":@"Warid",@"44013":@"NTT Docomo",@"41301":@"Mobitel Ltd.",@"45406":@"Vodafone/SmarTone",@"44021":@"NTT Docomo",@"45414":@"H3G/Hutchinson",@"71617":@"Nextel",@"42702":@"Vodafone",@"42203":@"Nawras",@"311280":@"Verizon Wireless",@"50503":@"Vodafone",@"28405":@"Telenor/Cosmo/Globul",@"44006":@"SoftBank Mobile Corp",@"22853":@"upc cablecom GmbH",@"43604":@"Babilon-M",@"50511":@"Telstra Corp. Ltd.",@"25701":@"Mobile Digital Communications",@"44014":@"NTT Docomo",@"302656":@"Tbay Mobility",@"45407":@"China Unicom Ltd",@"41302":@"MTN/Dialog",@"60606":@"Hatef",@"43612":@"Tcell/JC Somoncom",@"44022":@"NTT Docomo",@"338110":@"Cable & Wireless",@"45415":@"Vodafone/SmarTone",@"311010":@"Missouri RSA No 5 Partnership",@"44030":@"NTT Docomo",@"40401":@"Aircel Digilink India",@"46688":@"KG Telecom",@"50504":@"Department of Defense",@"28406":@"BTC Mobile EOOD (vivatel)",@"44007":@"KDDI Corporation",@"22854":@"Lycamobile AG",@"43605":@"Bee Line",@"310750":@"East Kentucky Network LLC",@"50512":@"H3G Ltd.",@"310470":@"Docomo",@"44015":@"NTT Docomo",@"25702":@"MTS",@"45408":@"Truephone",@"33011":@"Puerto Rico Telephone Company Inc. (PRTC)",@"41303":@"Etisalat/Tigo",@"310190":@"Unknown",@"44023":@"NTT Docomo",@"45416":@"HKT/PCCW",@"310200":@"T-Mobile",@"44031":@"NTT Docomo",@"24801":@"EMT GSM",@"46689":@"T-Star/VIBO",@"40410":@"Bharti Airtel Limited (Delhi)",@"311281":@"Verizon Wireless",@"46697":@"Taiwan Cellular",@"50505":@"The Ozitel Network Pty.",@"45440":@"shared by private TETRA systems",@"44008":@"KDDI Corporation",@"27877":@"Melita",@"302610":@"Bell Mobility",@"25567":@"KyivStar",@"50513":@"Railcorp/Vodafone",@"302657":@"Quebectel Mobility",@"44016":@"NTT Docomo",@"25703":@"BelCel JV",@"45409":@"China Motion",@"29340":@"SI.Mobil",@"23401":@"Mapesbury C. Ltd",@"44024":@"NTT Docomo"}; +#endif } + (NSDictionary *)defaultLanguageResources { #if __has_include("SACoreResources+English.h") - return nil; + return [self englishLanguageResources]; #else return @{@"SADebugMode":@"SDK 调试模式选择",@"SADebugOnly":@"开启调试模式(不导入数据)",@"SADebugAndTrack":@"开启调试模式(导入数据)",@"SADebugOff":@"调试模式已关闭",@"SADebugCurrentlyInDebugOnly":@"当前为调试模式(不导入数据)",@"SADebugCurrentlyInDebugAndTrack":@"当前为调试模式(导入数据)",@"SADebugModeTurnedOff":@"已关闭调试模式,重新扫描二维码开启",@"SADebugOnlyModeTurnedOn":@"开启调试模式,校验数据,但不进行数据导入;\n关闭 App 进程后,将自动关闭调试模式。",@"SADebugAndTrackModeTurnedOn":@"开启调试模式,校验数据,并将数据导入神策分析中;\n关闭 App 进程后,将自动关闭调试模式。",@"SADebugNowInDebugOnlyMode":@"现在您打开了'DEBUG_ONLY'模式,此模式下只校验数据但不导入数据,数据出错时会以提示框的方式提示开发者,请上线前一定关闭。",@"SADebugNowInDebugAndTrackMode":@"现在您打开了'DEBUG_AND_TRACK'模式,此模式下会校验数据并且导入数据,数据出错时会以提示框的方式提示开发者,请上线前一定关闭。",@"SADebugNotes":@"SensorsData 重要提示",@"SAVisualizedAutoTrack":@"可视化全埋点",@"SAVisualizedPageErrorTitle":@"当前页面无法进行可视化全埋点",@"SAVisualizedConfigurationDocument":@"配置文档",@"SAVisualizedConnect":@"正在连接 App 可视化全埋点",@"SAVisualizedWifi":@",建议在 WiFi 环境下使用",@"SAVisualizedProjectError":@"App 集成的项目与电脑浏览器打开的项目不同,无法进行可视化全埋点",@"SAVisualizedEnableLogHint":@"可视化全埋点进入 Debug 模式,需要开启日志打印用于收集调试信息,退出 Debug 模式关闭日志打印,是否需要开启呢?",@"SAVisualizedEnableLogAction":@"开启日志打印",@"SAVisualizedTemporarilyDisabled":@"暂不开启",@"SAVisualizedWebPageErrorMessage":@"此页面不是 WKWebView,iOS App 内嵌 H5 可视化全埋点,只支持 WKWebView",@"SAVisualizedJSError":@"此页面未集成 Web JS SDK 或者 Web JS SDK 版本过低,请集成最新版 Web JS SDK",@"SAVisualizedSDKError":@"SDK 没有被正确集成,请联系贵方技术人员开启可视化全埋点",@"SAVisualizedParameterError":@"参数错误",@"SAVisualizedFlutterPageErrorMessage":@"此页面未集成 Flutter 全埋点 SDK 或 Flutter 全埋点 SDK 版本过低,请集成最新版 Flutter 全埋点 SDK",@"SAAppClicksAnalyticsConnect":@"正在连接 App 点击分析",@"SAAppClicksAnalyticsSDKError":@"SDK 没有被正确集成,请联系贵方技术人员开启点击分析",@"SAAppClicksAnalyticsProjectError":@"App 集成的项目与电脑浏览器打开的项目不同,无法进行点击分析",@"SAAppClicksAnalyticsPageErrorTitle":@"当前页面无法进行点击分析",@"SAAppClicksAnalyticsPageWebErrorMessage":@"此页面包含 UIWebView,iOS App 内嵌 H5 点击分析,只支持 WKWebView",@"SAAppClicksAnalytics":@"点击分析",@"SARemoteConfigStart":@"开始获取采集控制信息",@"SARemoteConfigObtainFailed":@"远程配置获取失败,请稍后重新扫描二维码",@"SARemoteConfigProjectError":@"App 集成的项目与二维码对应的项目不同,无法进行调试",@"SARemoteConfigOSError":@"App 与二维码对应的操作系统不同,无法进行调试",@"SARemoteConfigAppError":@"当前 App 与二维码对应的 App 不同,无法进行调试",@"SARemoteConfigQRError":@"二维码信息校验失败,请检查采集控制是否配置正确",@"SARemoteConfigNetworkError":@"网络连接失败,请检查设备网络,确认网络畅通后,请重新扫描二维码进行调试",@"SARemoteConfigWrongVersion":@"版本不一致",@"SARemoteConfigLoaded":@"采集控制加载完成,可以通过 Xcode 控制台日志来调试",@"SARemoteConfigCompareVersion":@"获取到采集控制信息的版本:%@,二维码信息的版本:%@,请稍后重新扫描二维码",@"SAEncryptSelectedKeyInvalid":@"密钥验证不通过,所选密钥无效",@"SAEncryptNotEnabled":@"当前 App 未开启加密,请开启加密后再试",@"SAEncryptAppKeyEmpty":@"密钥验证不通过,App 端密钥为空",@"SAEncryptKeyVerificationPassed":@"密钥验证通过,所选密钥与 App 端密钥相同",@"SAEncryptKeyTypeVerificationFailed":@"密钥验证不通过,所选密钥与 App 端密钥不相同。所选密钥对称算法类型:%@,非对称算法类型:%@,App 端对称算法类型:%@,非对称算法类型:%@",@"SAEncryptKeyVersionVerificationFailed":@"密钥验证不通过,所选密钥与 App 端密钥不相同。所选密钥版本:%@,App 端密钥版本:%@",@"SAChannelReconnectError":@"无法重连,请检查是否更换了联调手机",@"SAChannelServerURLError":@"数据接收地址错误,无法使用联调诊断工具",@"SAChannelProjectError":@"App 集成的项目与电脑浏览器打开的项目不同,无法使用联调诊断工具",@"SAChannelEnableJointDebugging":@"即将开启联调模式",@"SAChannelNetworkError":@"当前网络不可用,请检查网络!",@"SAChannelRequestWhitelistFailed":@"添加白名单请求失败,请联系神策技术支持人员排查问题!",@"SAChannelSuccessfullyEnabled":@"成功开启联调模式",@"SAChannelTriggerActivation":@"此模式下不需要卸载 App,点击“激活”按钮可反复触发激活。",@"SAChannelActivate":@"激活",@"SAChannelDeviceCodeEmpty":@"检测到“设备码为空”,可能的原因如下,请排查:",@"SAChannelTroubleshooting":@"\n1.手机系统设置中「隐私->广告-> 限制广告追踪」;\n\n2.若手机系统为 iOS 14 ,请联系研发人员确认 trackAppInstall 接口是否在 “跟踪” 授权之后调用。\n\n排查修复后,请重新扫码进行联调。\n\n",@"SAChannelNetworkException":@"网络异常,请求失败!",@"SADeepLinkCallback":@"未调用 setDeepLinkCompletion 方法设置回调函数",@"SAAlertCancel":@"取消",@"SAAlertContinue":@"继续",@"SAAlertHint":@"提示",@"SAAlertOK":@"确定",@"SAAlertNotRemind":@"不再提示",@"SAPresetPropertyCarrierMobile":@"中国移动",@"SAPresetPropertyCarrierUnicom":@"中国联通",@"SAPresetPropertyCarrierTelecom":@"中国电信",@"SAPresetPropertyCarrierSatellite":@"中国卫通",@"SAPresetPropertyCarrierTietong":@"中国铁通",@"SADeviceWhiteListTitle":@"添加设备白名单",@"SADeviceWhiteListMessageProject":@"设备白名单配置项目与事件上报项目不一致",@"SADeviceWhiteListMessageDeviceType":@"请使用 iOS 设备类型扫码",@"SADeviceWhiteListMessageRequestSuccess":@"请求成功",@"SADeviceWhiteListMessageRequestFailure":@"请求失败,请重新扫码",@"SADynamicSlinkMessageNoNetwork":@"没有检测到网络连接",@"SADynamicSlinkMessageNoTemplateID":@"Slink 模板 ID 缺少",@"SADynamicSlinkMessageNoChannelName":@"渠道名缺少",@"SADynamicSlinkMessageNoAccessToken":@"token 缺少",@"SADynamicSlinkMessageNoProject":@"获取不到数据埋点地址的项目名称",@"SADynamicSlinkMessageNoRedirectURI":@"通用跳转链接缺少",@"SADynamicSlinkMessageNoDomain":@"自定义域名缺少或者填写格式不对",@"SADynamicSlinkMessageResponseError":@"后端返回数据异常"}; #endif diff --git a/SensorsAnalyticsSDK/Core/SensorsAnalyticsSDK.m b/SensorsAnalyticsSDK/Core/SensorsAnalyticsSDK.m index 7552e60d..6f854d18 100755 --- a/SensorsAnalyticsSDK/Core/SensorsAnalyticsSDK.m +++ b/SensorsAnalyticsSDK/Core/SensorsAnalyticsSDK.m @@ -64,7 +64,7 @@ #import "SALimitKeyManager.h" #import "NSDictionary+SACopyProperties.h" -#define VERSION @"4.5.17" +#define VERSION @"4.5.18" void *SensorsAnalyticsQueueTag = &SensorsAnalyticsQueueTag; diff --git a/SensorsAnalyticsSDK/Store/SAFileStorePlugin.m b/SensorsAnalyticsSDK/Store/SAFileStorePlugin.m index 38b7563c..5371f6a4 100644 --- a/SensorsAnalyticsSDK/Store/SAFileStorePlugin.m +++ b/SensorsAnalyticsSDK/Store/SAFileStorePlugin.m @@ -72,6 +72,11 @@ - (void)setObject:(nullable id)value forKey:(nonnull NSString *)key { if (!key) { return; } + // 屏蔽非法数据类型,防止野指针造成异常 + if(!value && ![value conformsToProtocol:@protocol(NSCoding)]) { + return; + } + NSString *filePath = [SAFileStorePlugin filePath:key]; #if TARGET_OS_IOS /* 为filePath文件设置保护等级 */ diff --git a/SensorsAnalyticsTests/Store/SABaseStoreManagerTests.m b/SensorsAnalyticsTests/Store/SABaseStoreManagerTests.m index ffb0534d..22296c2c 100644 --- a/SensorsAnalyticsTests/Store/SABaseStoreManagerTests.m +++ b/SensorsAnalyticsTests/Store/SABaseStoreManagerTests.m @@ -74,7 +74,7 @@ - (void)testSetStringObject { } - (void)testSetArrayObject { - NSArray *object = @[@"123"]; + NSArray *object = @[@"123", @"哈哈哈dabn"]; [self.manager setObject:object forKey:kSABaseStoreManagerTestsKey]; XCTAssertTrue([object isEqualToArray:[self.manager objectForKey:kSABaseStoreManagerTestsKey]]); } diff --git a/SensorsAnalyticsTests/Store/SAFileStorePluginTests.m b/SensorsAnalyticsTests/Store/SAFileStorePluginTests.m index 985b7f61..e94b1a91 100644 --- a/SensorsAnalyticsTests/Store/SAFileStorePluginTests.m +++ b/SensorsAnalyticsTests/Store/SAFileStorePluginTests.m @@ -63,6 +63,12 @@ - (void)testSetArrayObject { XCTAssertTrue([object isEqualToArray:[self.plugin objectForKey:kSAFileStorePluginTestsKey]]); } +- (void)testSetNSSetObject { + NSSet *set = [[NSSet alloc] initWithArray:@[@"哈哈12casdz", @(123)]]; + [self.plugin setObject:set forKey:kSAFileStorePluginTestsKey]; + XCTAssertTrue([set isEqualToSet: [self.plugin objectForKey:kSAFileStorePluginTestsKey]]); +} + - (void)testSetDictionaryObject { NSDictionary *object = @{@"login_id": @"123"}; [self.plugin setObject:object forKey:kSAFileStorePluginTestsKey]; diff --git a/SpecialFileSources/SACoreResources+English.h b/SpecialFileSources/SACoreResources+English.h index 84e3cf3d..f6ba99f4 100644 --- a/SpecialFileSources/SACoreResources+English.h +++ b/SpecialFileSources/SACoreResources+English.h @@ -24,6 +24,9 @@ NS_ASSUME_NONNULL_BEGIN @interface SACoreResources (English) +/// 加载英文运营商信息 ++ (NSDictionary *)englishMcc; + /// 加载英文资源 + (NSDictionary *)englishLanguageResources; diff --git a/SpecialFileSources/SACoreResources+English.m b/SpecialFileSources/SACoreResources+English.m index fb564cf8..a8ec3de8 100644 --- a/SpecialFileSources/SACoreResources+English.m +++ b/SpecialFileSources/SACoreResources+English.m @@ -26,6 +26,10 @@ @implementation SACoreResources (English) ++ (NSDictionary *)englishMcc { + return @{@"334040":@"AT&T/IUSACell",@"42577":@"Hot Mobile/Mirs",@"45417":@"Vodafone/SmarTone",@"44032":@"NTT Docomo",@"24802":@"Radiolinja Eesti",@"376352":@"IslandCom Communications Ltd.",@"74000":@"MOVISTAR/OteCel",@"44040":@"SoftBank Mobile Corp",@"40411":@"Sterling Cellular Ltd.",@"25092":@"Printelefone",@"50506":@"H3G Ltd.",@"44009":@"NTT Docomo",@"25568":@"Beeline",@"22001":@"Telenor/Mobtel",@"35830":@"Cingular Wireless",@"311830":@"Thumb Cellular Limited Partnership",@"25704":@"BeST",@"44017":@"NTT Docomo",@"41820":@"ZAIN/Atheer/Orascom",@"50514":@"AAPT Ltd. ",@"41305":@"Airtel",@"23402":@"O2 Ltd.",@"29341":@"Mobitel",@"44025":@"NTT Docomo",@"311270":@"Verizon Wireless",@"45418":@"CSL Ltd.",@"23410":@"O2 Ltd.",@"44033":@"NTT Docomo",@"40404":@"Idea Cellular Ltd.",@"24803":@"Tele2 Eesti AS",@"74001":@"Claro/Port",@"44041":@"SoftBank Mobile Corp",@"40412":@"Escotel Mobile Communications",@"26606":@"CTS Mobile",@"41805":@"Asia Cell",@"41677":@"Orange/Petra",@"46699":@"TransAsia",@"25093":@"Telecom XXL",@"311282":@"Verizon Wireless",@"50507":@"Vodafone",@"30801":@"Ameris",@"22002":@"Telenor/Mobtel",@"404045":@"Bharti Airtel Limited (Karnataka) (India)",@"44018":@"NTT Docomo",@"23403":@"Airtel/Vodafone",@"44026":@"NTT Docomo",@"45419":@"HKT/PCCW",@"310740":@"Telemetrix Inc.",@"23411":@"O2 Ltd.",@"44034":@"NTT Docomo",@"40405":@"Fascel",@"310460":@"TMP Corporation",@"346006":@"Digicel Ltd.",@"37650":@"Digicel",@"310180":@"Cingular Wireless",@"74002":@"Alegro/Telcsa",@"40413":@"Barakhamba Sales & Serv.",@"40277":@"TashiCell",@"24804":@"Top Connect OU",@"44042":@"SoftBank Mobile Corp",@"467193":@"Sun Net",@"50508":@"Railcorp/Vodafone",@"44050":@"KDDI Corporation",@"22003":@"MTS/Telekom Srbija",@"21601":@"Pannon/Telenor",@"50516":@"Victorian Rail Track Corp. (VicTrack)",@"44019":@"NTT Docomo",@"311271":@"Verizon Wireless",@"50524":@"Advanced Comm Tech Pty.",@"44027":@"NTT Docomo",@"41830":@"Orascom Telecom",@"23412":@"Railtrack Plc",@"44035":@"NTT Docomo",@"65301":@"SwaziTelecom",@"302320":@"mobilicity",@"45428":@"MOBILE/Peoples",@"23420":@"H3G Hutchinson",@"90111":@"InMarSAT",@"73601":@"Viva/Nuevatel",@"40414":@"Spice",@"311283":@"Verizon Wireless",@"376050":@"Digicel TCI Ltd",@"20201":@"Cosmote",@"334030":@"Movistar/Pegaso",@"44051":@"KDDI Corporation",@"40422":@"Idea Cellular Ltd.",@"50509":@"Airnet Commercial Australia Ltd..",@"366020":@"Cingular Wireless/Digicel",@"44043":@"SoftBank Mobile Corp",@"40430":@"Usha Martin Telecom",@"41308":@"H3G Hutchison ",@"44028":@"NTT Docomo",@"36251":@"TELCELL GSM",@"44036":@"NTT Docomo",@"40407":@"Idea Cellular Ltd.",@"45429":@"HKT/PCCW",@"90112":@"Maritime Communications Partner AS",@"44044":@"SoftBank Mobile Corp",@"73602":@"Entel Pcs",@"311260":@"SLO Cellular Inc / Cellular One of San Luis",@"65310":@"Swazi MTN",@"40415":@"Aircel Digilink India",@"26609":@"eazi telecom",@"20202":@"Cosmote",@"41808":@"Sanatel",@"44052":@"KDDI Corporation",@"20210":@"Tim/Wind",@"22005":@"VIP Mobile",@"44060":@"NTT Docomo",@"311272":@"Verizon Wireless",@"50526":@"Dialogue Communications Pty Ltd",@"44029":@"NTT Docomo",@"90105":@"Thuraya Satellite",@"35850":@"Digicel (St Lucia) Limited",@"23414":@"HaySystems",@"732187":@"eTb",@"44037":@"NTT Docomo",@"41840":@"Korek",@"64901":@"MTC",@"90113":@"Antarctica",@"23422":@"Routotelecom",@"44045":@"SoftBank Mobile Corp",@"73603":@"Tigo",@"40416":@"Hexcom India",@"63001":@"Vodacom",@"23430":@"Everyth. Ev.wh./T-Mobile",@"20203":@"OTE Hellenic Telecommunications Organization SA",@"311284":@"Verizon Wireless",@"40424":@"Idea Cellular Ltd.",@"310730":@"United States Cellular Corp.",@"310450":@"Northeast Colorado Cellular Inc.",@"44053":@"KDDI Corporation",@"44061":@"NTT Docomo",@"310170":@"AT&T Wireless Inc.",@"50519":@"Lycamobile Pty Ltd",@"64282":@"Spacetel / Econet / Leo ",@"55201":@"Palau National Communications Corp. (PNCC) (Palau",@"23407":@"Cable and Wireless ",@"364390":@"Bahamas Telco. Comp.",@"46000":@"MOBILE",@"23415":@"Vodafone",@"44038":@"NTT Docomo",@"40409":@"Reliance Telecom Private",@"64902":@"Switch/Nam. Telec.",@"90114":@"AeroMobile",@"23423":@"Vectofone Mobile Wifi",@"44046":@"SoftBank Mobile Corp",@"708001":@"SERCOM/CLARO",@"40417":@"Aircel",@"63002":@"Airtel/ZAIN",@"23431":@"Everyth. Ev.wh./T-Mobile",@"29370":@"Telemach/TusMobil/VEGA",@"20204":@"Organismos Sidirodromon Ellados (OSE)",@"40425":@"Aircel",@"45447":@"shared by private TETRA systems",@"44054":@"KDDI Corporation",@"44062":@"NTT Docomo",@"62101":@"Visafone",@"40433":@"Aircel",@"311273":@"Verizon Wireless",@"70401":@"Claro",@"23408":@"OnePhone",@"44070":@"KDDI Corporation",@"40441":@"RPG Cellular",@"334020":@"TelCel/America Movil",@"46001":@"UNICOM",@"23416":@"Opal Telecom",@"44039":@"NTT Docomo",@"63510":@"MTN/Rwandacell",@"64903":@"Leo / Orascom",@"23424":@"Stour Marine",@"44047":@"SoftBank Mobile Corp",@"40418":@"Reliance Telecom Private",@"62601":@"CSTmovel",@"311285":@"Verizon Wireless",@"23432":@"Everyth. Ev.wh./T-Mobile",@"20205":@"Vodafone",@"25099":@"BeeLine/VimpelCom",@"311810":@"Bluegrass Wireless LLC",@"44055":@"KDDI Corporation",@"44063":@"NTT Docomo",@"40434":@"BSNL",@"311250":@"Wave Runner LLC",@"54801":@"Telecom Cook Islands",@"70402":@"TIGO/COMCEL",@"23409":@"Tismi",@"44071":@"KDDI Corporation",@"40442":@"Aircel",@"46002":@"MOBILE",@"23417":@"FlexTel",@"61201":@"Comstar",@"40450":@"Reliance Telecom Private",@"21630":@"T-mobile/Magyar",@"360050":@"Digicel",@"23425":@"Truphone",@"44048":@"SoftBank Mobile Corp",@"52000":@"Hutch/CAT CDMA",@"708002":@"Telefonica/CELTEL",@"40419":@"Escotel Mobile Communications",@"23433":@"Everyth. Ev.wh./Orange",@"732130":@"Avantel SAS",@"29364":@"T-2 d.o.o.",@"46010":@"UNICOM",@"44056":@"KDDI Corporation",@"310990":@"E.N.M.R. Telephone Coop.",@"20214":@"CyTa Mobile",@"44064":@"NTT Docomo",@"70267":@"DigiCell",@"61701":@"Orange/Cellplus",@"311274":@"Verizon Wireless",@"29001":@"Tele Greenland",@"70403":@"Telefonica",@"44072":@"KDDI Corporation",@"732142":@"UNE EPM Telecomunicaciones SA ESP",@"310440":@"Dobson Cellular Systems",@"502195":@"XOX Com Sdn Bhd",@"23418":@"Cloud9/wire9 Tel.",@"61202":@"Atlantik Tel./Moov",@"45601":@"Mobitel/Cam GSM",@"44080":@"KDDI Corporation",@"310160":@"T-Mobile",@"53901":@"Tonga Communications",@"23426":@"Lycamobile",@"46011":@"TELECOM",@"44049":@"NTT Docomo",@"52001":@"AIS/Advanced Info Service",@"374140":@"LaqTel Ltd.",@"29501":@"Swisscom FL AG",@"23434":@"Everyth. Ev.wh./Orange",@"732154":@"Virgin Mobile Colombia SAS",@"20207":@"AMD Telecom SA",@"40428":@"Aircel",@"63005":@"SuperCell",@"311286":@"Verizon Wireless",@"40451":@"BSNL",@"60301":@"ATM Mobils",@"46003":@"TELECOM",@"40436":@"Reliance Telecom Private",@"61702":@"Mahanagar Telephone",@"70268":@"International Telco (INTELCO)",@"44065":@"NTT Docomo",@"23450":@"Jersey Telecom",@"44073":@"KDDI Corporation",@"40444":@"Spice",@"61710":@"Emtel Ltd",@"52501":@"Singtel",@"44081":@"KDDI Corporation",@"62120":@"Airtel/ZAIN/Econet",@"61203":@"Orange",@"41845":@"Mobitel (Iraq-Kurdistan) and Moutiny",@"23419":@"PMN/Teleware",@"45602":@"Smart Mobile",@"63513":@"TIGO",@"23427":@"Vodafone",@"334010":@"NEXTEL",@"40460":@"Aircel Digilink India",@"40452":@"Reliance Telecom Private",@"46004":@"SATELLITE",@"29502":@"Orange",@"23435":@"JSC Ingenicum",@"46020":@"TIETONG",@"44058":@"NTT Docomo",@"40429":@"Aircel",@"60302":@"Orascom / DJEZZY",@"60801":@"Orange/Sonatel",@"44066":@"NTT Docomo",@"311275":@"Verizon Wireless",@"61703":@"Mahanagar Telephone",@"50571":@"Telstra Corp. Ltd.",@"28601":@"Turkcell",@"44074":@"KDDI Corporation",@"23451":@"Jersey Telecom",@"311800":@"Bluegrass Wireless LLC",@"52502":@"Singtel",@"44082":@"KDDI Corporation",@"35001":@"Telecommunications (Bermuda & West Indies) Ltd (Digicel Bermuda)",@"61204":@"Comium",@"45603":@"QB/Cambodia Adv. Comms.",@"63514":@"Airtel",@"40453":@"BSNL",@"44090":@"SoftBank Mobile Corp",@"23428":@"Marthon Telecom",@"311287":@"Verizon Wireless",@"46005":@"TELECOM",@"52003":@"Advanced Wireless Networks/AWN",@"60802":@"TIGO/Sentel GSM",@"23436":@"Cable and Wireless Isle of Man",@"20209":@"Tim/Wind",@"60303":@"Oreedo/Wataniya / Nedjma ",@"27201":@"Vodafone Eircell",@"44067":@"NTT Docomo",@"40438":@"BSNL",@"50572":@"Telstra Corp. Ltd.",@"28602":@"Vodafone-Telsim",@"43801":@"MTS/Barash Communication",@"44075":@"KDDI Corporation",@"52503":@"MobileOne Ltd",@"310980":@"AT&T Wireless Inc.",@"44083":@"KDDI Corporation",@"35002":@"M3 Wireless Ltd",@"61205":@"MTN",@"50201":@"Art900",@"45604":@"Cambodia Advance Communications Co. Ltd (CADCOMMS)",@"40454":@"BSNL",@"46006":@"UNICOM",@"35010":@"DigiCel / Cingular",@"62130":@"MTN",@"310710":@"Arctic Slope Telephone Association Cooperative Inc.",@"52004":@"True Move/Orange",@"36403":@"Smart Communications",@"40462":@"BSNL",@"23437":@"Synectiv Ltd.",@"40470":@"Hexacom India",@"310430":@"GCI Communication Corp.",@"60803":@"Expresso/Sudatel",@"27202":@"Three/O2/Digifone",@"310150":@"AT&T Wireless Inc.",@"44068":@"NTT Docomo",@"311276":@"Verizon Wireless",@"36291":@"SETEL GSM",@"52020":@"ACeS Thailand - ACeS Regional Services Co Ltd",@"374130":@"Digicel",@"28603":@"AVEA/Aria",@"43802":@"Altyn Asyr/TM-Cell",@"44076":@"KDDI Corporation",@"44084":@"KDDI Corporation",@"45605":@"Smart Mobile",@"61206":@"OriCell",@"40455":@"BSNL",@"52512":@"GRID Communications Pte Ltd",@"46007":@"MOBILE",@"44092":@"SoftBank Mobile Corp",@"42901":@"NT Mobile / Namaste",@"28967":@"Aquafon",@"312040":@"Custer Telephone Cooperative Inc.",@"52005":@"Total Access (DTAC)",@"50210":@"Digi Telecommunications",@"29505":@"Telecom FL1 AG",@"41001":@"Mobilink",@"344030":@"APUA PCS",@"40471":@"BSNL",@"311288":@"Verizon Wireless",@"27203":@"Meteor Mobile Ltd.",@"26801":@"Vodafone",@"42402":@"Etisalat",@"44069":@"NTT Docomo",@"27211":@"Tesco Mobile/Liffey Telecom",@"28604":@"AVEA/Aria",@"44077":@"KDDI Corporation",@"52505":@"Starhub",@"41501":@"MIC1 (Alfa)",@"44085":@"KDDI Corporation",@"45606":@"Smart Mobile",@"61207":@"Aircomm SA",@"40456":@"Escotel Mobile Communications",@"36269":@"Polycom N.V./ Digicel",@"50590":@"Singtel Optus",@"44093":@"SoftBank Mobile Corp",@"40464":@"BSNL",@"28968":@"A-Mobile",@"50211":@"MTX Utara",@"42902":@"Ncell",@"46008":@"MOBILE",@"29506":@"CUBIC (Liechtenstein",@"62140":@"M-Tel/Nigeria Telecom. Ltd.",@"40472":@"BSNL",@"27204":@"Access Telecom Ltd.",@"40480":@"BSNL",@"42403":@"DU",@"311277":@"Verizon Wireless",@"40101":@"Beeline/KaR-Tel LLP",@"23455":@"Guernsey Telecoms",@"502151":@"Baraka Telecom Sdn Bhd",@"44078":@"Okinawa Cellular Telephone",@"338050":@"DIGICEL/Mossel",@"502198":@"CelCom",@"52506":@"Starhub",@"25901":@"Orange/Voxtel",@"44086":@"KDDI Corporation",@"62125":@"Visafone",@"24001":@"Telia Mobile",@"40457":@"BSNL",@"46009":@"UNICOM",@"311289":@"Verizon Wireless",@"44094":@"SoftBank Mobile Corp",@"50212":@"Maxis",@"41003":@"UFONE/PAKTel",@"29507":@"First Mobile AG",@"40473":@"BSNL",@"722070":@"Movistar/Telefonica",@"50220":@"Electcoms Wireless Sdn Bhd",@"52015":@"ACT Mobile",@"310690":@"Keystone Wireless LLC",@"26803":@"NOS/Optimus",@"27205":@"Three/H3G",@"40481":@"BSNL",@"350000":@"Bermuda Digital Communications Ltd (BDC)",@"52023":@"Digital Phone Co.",@"27213":@"Lycamobile",@"40102":@"K-Cell",@"310700":@"Cross Valliant Cellular Partnership",@"27077":@"Millicom Tango GSM",@"36430":@"Bahamas Telco. Comp.",@"44079":@"KDDI Corporation",@"41882":@"Korek",@"310420":@"Cincinnati Bell Wireless LLC",@"25902":@"Moldcell",@"52507":@"Singtel",@"310140":@"GTA Wireless",@"41503":@"MIC2/LibanCell/MTC",@"24002":@"H3G Access AB",@"45608":@"Metfone",@"44087":@"NTT Docomo",@"40458":@"BSNL",@"44095":@"SoftBank Mobile Corp",@"40466":@"BSNL",@"24010":@"Spring Mobil AB",@"50213":@"CelCom",@"374120":@"Bmobile/TSTT",@"41004":@"ZONG/CMPak",@"42904":@"Smart Cell",@"40474":@"BSNL",@"23101":@"Orange",@"26804":@"Lycamobile",@"40482":@"Escorts Telecom Ltd.",@"311278":@"Verizon Wireless",@"62150":@"Glo Mobile",@"36295":@"EOCG Wireless NV",@"312030":@"Cross Wireless Telephone Co.",@"23457":@"Sky UK Limited",@"502152":@"YES",@"22200":@"VOIP Line",@"21670":@"Vodafone",@"25903":@"IDC/Unite ",@"44088":@"KDDI Corporation",@"45609":@"Sotelco/Beeline",@"40459":@"BSNL",@"44096":@"SoftBank Mobile Corp",@"732111":@"TIGO/Colombia Movil",@"24011":@"Lindholmen Science Park AB",@"40467":@"Reliance Telecom Private",@"40475":@"BSNL",@"23102":@"T-Mobile",@"27207":@"eircom Ltd",@"40483":@"Reliable Internet Services",@"311490":@"Sprint Spectrum",@"732123":@"Movistar",@"23458":@"Manx Telecom",@"311500":@"Cambridge Telephone Company Inc.",@"22201":@"TIM",@"21671":@"UPC Magyarorszag Kft.",@"25904":@"Eventis Mobile",@"311220":@"United States Cellular Corp.",@"358110":@"Cable & Wireless",@"44089":@"KDDI Corporation",@"24004":@"H3G Access AB",@"41892":@"Itisaluna and Kalemat",@"44097":@"SoftBank Mobile Corp",@"45618":@"MFone/Camshin/Cellcard",@"24012":@"Lycamobile Ltd",@"40468":@"Mahanagar Telephone Nigam",@"41006":@"Telenor",@"40476":@"BSNL",@"24020":@"Wireless Maingate AB",@"23103":@"4Ka",@"52018":@"Total Access (DTAC)",@"26806":@"MEO/TMN",@"311279":@"Verizon Wireless",@"28988":@"A-Mobile",@"722340":@"Telecom Personal S.A.",@"502153":@"Webe/Packet One Networks (Malaysia) Sdn Bhd",@"62160":@"ETISALAT",@"310960":@"Uintah Basin Electronics Telecommunications Inc.",@"22202":@"Elsacom",@"25905":@"IDC/Unite ",@"310680":@"AT&T Wireless Inc.",@"22210":@"Vodafone",@"24005":@"Svenska UMTS-N",@"23475":@"Inquam Telecom Ltd",@"44098":@"SoftBank Mobile Corp",@"40469":@"Mahanagar Telephone Nigam",@"310410":@"AT&T Wireless Inc.",@"50216":@"Digi Telecommunications",@"24013":@"Ventelo Sverige AB",@"41007":@"Warid Telecom",@"310130":@"North Carolina RSA 3 Cellular Tel. Co.",@"40477":@"BSNL",@"23104":@"T-Mobile",@"23491":@"Vodafone",@"27209":@"Clever Communications Ltd",@"26807":@"NOS/Optimus",@"40485":@"Reliance Telecom Private",@"750001":@"Cable and Wireless South Atlantic Ltd (Falkland Islands",@"65001":@"TNM/Telekom Network Ltd.",@"312290":@"Uintah Basin Electronics Telecommunications Inc.",@"53943":@"Shoreline Communication",@"50588":@"Localstar Holding Pty. Ltd",@"24006":@"Telenor (Vodafone)",@"23476":@"BT Group",@"44099":@"NTT Docomo",@"24014":@"TDC Sverige AB",@"50217":@"Maxis",@"72400":@"Nextel (Telet)",@"41008":@"Instaphone",@"65501":@"Vodacom",@"40478":@"Idea Cellular Ltd.",@"24022":@"Eu Tel AB",@"23105":@"Orange",@"23492":@"Cable and Wireless ",@"73801":@"DigiCel",@"40486":@"Barakhamba Sales & Serv.",@"24030":@"NextGen Mobile Ltd (CardBoardFish)",@"732101":@"Comcel S.A. Occel S.A./Celcaribe",@"722341":@"Telecom Personal S.A.",@"40107":@"Dalacom/Altel",@"502154":@"Tron/Talk Focus Sdn Bhd",@"65010":@"Airtel/Zain/Celtel ltd.",@"24007":@"Tele2 Sverige AB",@"311480":@"Verizon Wireless",@"23477":@"BT Group",@"64101":@"Airtel/Celtel",@"24015":@"Wireless Maingate Nordic AB",@"50218":@"U Mobile",@"72401":@"Vivo S.A./Telemig ",@"21303":@"Mobiland",@"65502":@"8.ta",@"40479":@"CellOne A&N",@"24023":@"Infobip Ltd.",@"23106":@"O2",@"73802":@"Cellink Plus",@"65510":@"MTN",@"41532":@"Cellis",@"40487":@"Escorts Telecom Ltd.",@"20402":@"Tele2",@"64601":@"Airtel/MADACOM",@"20410":@"KPN Telecom B.V.",@"21803":@"Eronet Mobile",@"27099":@"Orange/VOXmobile S.A.",@"722330":@"Claro/ CTI/AMX",@"24008":@"Telenor (Vodafone)",@"23478":@"Wave Telecom Ltd",@"55280":@"Palau Mobile Corp. (PMC) (Palau",@"310950":@"Unknown",@"50219":@"CelCom",@"24016":@"42 Telecom AB",@"72402":@"TIM",@"310670":@"Northstar",@"64110":@"MTN Ltd.",@"24024":@"Telenor (Vodafone)",@"72410":@"Vivo S.A./Telemig ",@"310390":@"Yorkville Telephone Cooperative",@"41533":@"Cellis",@"63201":@"GuineTel",@"40488":@"Escorts Telecom Ltd.",@"732102":@"Movistar",@"23115":@"Orange",@"20403":@"Voiceworks Mobile BV",@"502155":@"Samata Communications Sdn Bhd",@"310400":@"Minnesota South. Wirel. Co. / Hickory",@"64602":@"Orange/Soci",@"23494":@"H3G Hutchinson",@"310120":@"Sprint Spectrum",@"22206":@"Vodafone",@"354860":@"Cable & Wireless ",@"311481":@"Verizon Wireless",@"50599":@"Railcorp/Vodafone",@"63701":@"Telesom ",@"312280":@"Cellular Network Partnership LLC",@"24017":@"Gotalandsnatet AB",@"72403":@"TIM",@"64111":@"Uganda Telecom Ltd.",@"22230":@"RFI Rete Ferroviaria Italiana SpA",@"24025":@"Digitel Mobile Srl",@"72411":@"Vivo S.A./Telemig ",@"41534":@"FTML Cellis",@"312010":@"Missouri RSA No 5 Partnership",@"65512":@"MTN",@"63202":@"SpaceTel",@"20404":@"Vodafone Libertel",@"40489":@"Escorts Telecom Ltd.",@"64603":@"Sacel",@"54001":@"BREEZE",@"20412":@"KPN/Telfort",@"22207":@"Noverca Italia Srl",@"21805":@"M-Tel",@"62301":@"Centrafr. Telecom+",@"63090":@"Africell",@"20420":@"T-mobile/former Orange",@"70601":@"CLARO/CTE",@"24018":@"Generic Mobile Systems Sweden AB",@"72404":@"TIM",@"63710":@"Nationlink",@"24026":@"Beepsend",@"72412":@"Claro/Albra/America Movil",@"41535":@"Cellis",@"62801":@"Libertis S.A.",@"732103":@"TIGO/Colombia Movil",@"63203":@"Orange",@"20405":@"Elephant Talk Communications Premium Rate Services Netherlands BV",@"65521":@"Cape Town Metropolitan",@"64604":@"Telma",@"54002":@"bemobile",@"36439":@"Bahamas Telco. Comp.",@"22208":@"Fastweb SpA",@"62302":@"Telecel Centraf. ",@"54010":@"BREEZE",@"20421":@"NS Railinfrabeheer B.V.",@"311482":@"Verizon Wireless",@"70602":@"Digicel",@"338020":@"Cable & Wireless",@"24019":@"Mundio Mobile (Sweden) Ltd",@"72405":@"Claro/Albra/America Movil",@"61401":@"Orange/Sahelc.",@"65506":@"Sentech",@"24027":@"Fogg Mobile AB",@"722320":@"Claro/ CTI/AMX",@"41536":@"MIC2/LibanCell/MTC",@"62802":@"MOOV/Telecel",@"37001":@"Orange",@"24035":@"42 Telecom AB",@"20406":@"Mundio/Vectone Mobile",@"310940":@"Poka Lambro Telco Ltd.",@"310660":@"T-Mobile",@"20414":@"6GMOBILE BV",@"310380":@"AT&T Wireless Inc.",@"61901":@"Airtel/Zain/Celtel",@"29201":@"Prima Telecom",@"62303":@"Orange/Celca",@"70603":@"Telemovil",@"63704":@"Somafone",@"72406":@"Vivo S.A./Telemig ",@"61402":@"Airtel/Zain/CelTel",@"64114":@"Orange",@"65507":@"Cell C",@"71021":@"Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)",@"24028":@"CoolTEL Aps",@"22233":@"PosteMobile SpA",@"37002":@"Claro",@"41537":@"MIC2/LibanCell/MTC",@"62803":@"Airtel/ZAIN/Celtel Gabon S.A.",@"64122":@"Airtel/Warid",@"29701":@"Telenor/Promonte GSM",@"24036":@"ID Mobile",@"20407":@"Teleena Holding BV",@"312270":@"Cellular Network Partnership LLC",@"64130":@"K2 Telecom Ltd",@"60501":@"Orange",@"20415":@"Ziggo BV",@"72430":@"Oi (TNL PCS / Oi)",@"62304":@"Nationlink",@"61902":@"Tigo/Millicom",@"311483":@"Verizon Wireless",@"20423":@"Aspider Solutions",@"70604":@"Telefonica",@"72407":@"CTBC/Triangulo ",@"61403":@"MOOV/TeleCel",@"28301":@"ArmenTel/Beeline",@"22234":@"BT Italia SpA",@"24029":@"Mercury International Carrier Services",@"72415":@"Sercontel Cel",@"37003":@"TRIcom",@"41538":@"MIC2/LibanCell/MTC",@"62804":@"Azur/Usan S.A.",@"71030":@"Movistar",@"29702":@"Monet/T-mobile",@"20408":@"KPN Telecom B.V.",@"72423":@"Vivo S.A./Telemig ",@"60502":@"TuniCell/Tunisia Telecom",@"63086":@"Orange RDC sarl",@"20416":@"T-Mobile B.V.",@"72431":@"Oi (TNL PCS / Oi)",@"61903":@"Africel",@"311460":@"Fisher Wireless Services Inc.",@"20424":@"Private Mobility Nederland BV",@"28801":@"Faroese Telecom",@"70605":@"INTELFON SA de CV",@"72408":@"TIM",@"61404":@"Orange/Sahelc.",@"22235":@"Lycamobile Srl",@"72416":@"Brazil Telcom",@"37004":@"Trilogy Dominicana S. A.",@"41539":@"MIC2/LibanCell/MTC",@"28310":@"Orange",@"22243":@"Telecom Italia Mobile SpA",@"29703":@"Mtel",@"20409":@"Lycamobile Ltd",@"72424":@"Amazonia Celular S/A",@"63730":@"Golis",@"60503":@"Oreedo/Orascom",@"27401":@"Siminn",@"43002":@"Etisalat",@"20417":@"Intercity Mobile Communications BV",@"72432":@"CTBC Celular SA (CTBC)",@"405034":@"TATA / Karnataka",@"61904":@"Comium",@"311484":@"Verizon Wireless",@"722310":@"Claro/ CTI/AMX",@"28802":@"Kall GSM",@"42101":@"Sabaphone",@"310650":@"Jasper",@"310370":@"Docomo",@"310090":@"Edge Wireless LLC",@"26001":@"Polkomtel/Plus",@"22244":@"WIND (Blu) -",@"310100":@"Plateau Telecommunications Inc.",@"64133":@"Smile Communications Uganda Ltd",@"63088":@"Yozma Timeturns sprl (YTT)",@"27402":@"Vodafone/Tal hf",@"20418":@"UPC Nederland BV",@"72433":@"CTBC Celular SA (CTBC)",@"42601":@"Batelco",@"61905":@"Africel",@"302780":@"Sask Tel Mobility",@"28803":@"Edge Mobile Sp/F",@"42102":@"MTN/Spacetel",@"64118":@"Suretelecom Uganda Ltd",@"28304":@"Karabakh Telecom",@"26002":@"T-Mobile/ERA",@"65519":@"Wireless Business Solutions (Pty) Ltd",@"41201":@"Afghan Wireless/AWCC",@"29577":@"Alpmobile/Tele2",@"26010":@"Sferia",@"63089":@"TIGO/Oasis",@"27403":@"Vodafone/Tal hf",@"72434":@"CTBC Celular SA (CTBC)",@"42602":@"ZAIN/Vodafone",@"311485":@"Verizon Wireless",@"27411":@"NOVA",@"346140":@"LIME / Cable & Wirel.",@"33401":@"NEXTEL",@"42103":@"Yemen Mob. CDMA",@"41701":@"Syriatel Holdings",@"28305":@"Vivacell",@"72419":@"Vivo S.A./Telemig ",@"311170":@"PetroCom",@"26003":@"Orange/IDEA/Centertel",@"26011":@"NORDISK Polska",@"60506":@"TuniCell/Tunisia Telecom",@"27404":@"VIKING/IMC",@"20428":@"Lancelot BV",@"33402":@"TelCel/America Movil",@"42104":@"HITS/Y Unitel",@"41702":@"MTN/Spacetel",@"24201":@"Telenor",@"54509":@"Kiribati Frigate",@"722020":@"Nextel",@"26004":@"Tele2",@"310920":@"Get Mobile Inc.",@"41203":@"WaselTelecom (WT)",@"26012":@"Cyfrowy POLSAT S.A.",@"310360":@"Cellular Network Partnership LLC",@"27405":@"Vodafone/Tal hf",@"42604":@"VIVA",@"311486":@"Verizon Wireless",@"24701":@"Latvian Mobile Phone",@"352110":@"Cable & Wireless",@"33403":@"Movistar/Pegaso",@"24202":@"Netcom",@"63719":@"HorTel",@"312530":@"Sprint Spectrum",@"302490":@"WIND",@"26005":@"Orange/IDEA/Centertel",@"22248":@"Telecom Italia Mobile SpA",@"302500":@"Videotron",@"26013":@"Sferia",@"302220":@"Telus Mobility",@"72437":@"Unicel do Brasil Telecomunicacoes Ltda",@"41220":@"Roshan/TDCA ",@"24702":@"Tele2",@"33404":@"AT&T/IUSACell",@"61925":@"Mobitel",@"23801":@"TDC Denmark",@"24203":@"Teletopia",@"62199":@"Starcomms",@"26006":@"Play/P4",@"26014":@"Sferia",@"348570":@"Caribbean Cellular",@"27407":@"IceCell",@"311440":@"Bluegrass Wireless LLC",@"72438":@"Claro/Albra/America Movil",@"311487":@"Verizon Wireless",@"24703":@"TRIATEL/Telekom Baltija",@"72454":@"PORTO SEGURO TELECOMUNICACOES",@"63760":@"Nationlink",@"24204":@"Tele2",@"23802":@"Telenor/Sonofon",@"24212":@"Telenor",@"26007":@"Play/P4",@"23810":@"TDC Denmark",@"73000":@"TESAM SA",@"24220":@"Jernbaneverket (GSM-R)",@"26015":@"Tele2",@"74401":@"Hola/VOX",@"27408":@"Siminn",@"72439":@"Nextel (Telet)",@"722010":@"Compania De Radiocomunicaciones Moviles SA",@"310910":@"Verizon Wireless",@"40177":@"Tele2/NEO/MTS",@"41230":@"Etisalat ",@"310350":@"Mohave Cellular LP",@"310070":@"AT&T Wireless Inc.",@"23803":@"Mach Connectivity ApS",@"24205":@"Network Norway AS",@"73001":@"Entel Telefonia Mov",@"26008":@"e-Telko",@"24221":@"Jernbaneverket (GSM-R)",@"26016":@"Mobyland",@"74402":@"Claro/Hutchison",@"27409":@"Amitelo",@"302760":@"Public Mobile",@"311488":@"Verizon Wireless",@"52099":@"True Move/Orange",@"65201":@"Mascom Wireless (Pty) Ltd.",@"24705":@"Bite",@"24206":@"ICE Nordisk Mobiltelefon AS",@"23804":@"NextGen Mobile Ltd (CardBoardFish)",@"73002":@"TELEFONICA",@"26009":@"Lycamobile",@"23812":@"Lycamobile Ltd",@"24214":@"ICE Nordisk Mobiltelefon AS",@"65701":@"Eritel",@"24222":@"Network Norway AS",@"26017":@"Aero2 SP",@"23820":@"Telia",@"74403":@"Compa",@"73010":@"Entel Telefonia",@"20601":@"Belgacom/Proximus",@"24706":@"SIA Rigatta",@"65202":@"Orange",@"311710":@"Northeast Wireless Networks LLC",@"311430":@"RSA 1 Limited Partnership",@"41240":@"Areeba/MTN",@"23805":@"ApS KBUS",@"24207":@"Ventelo AS",@"64301":@"mCel",@"63771":@"Somtel",@"73003":@"Claro",@"21890":@"BH Mobile",@"24223":@"Lycamobile Ltd",@"26018":@"AMD Telecom.",@"74404":@"Tigo/Telecel",@"35099":@"CellOne Ltd",@"63400":@"Canar Telecom",@"311489":@"Verizon Wireless",@"73011":@"Celupago SA",@"20602":@"SNCT/NMBS",@"24707":@"SIA Master Telecom",@"64801":@"Net One",@"20610":@"Mobistar/Orange",@"33409":@"NEXTEL",@"22277":@"IPSE 2000",@"26034":@"T-Mobile/ERA",@"310890":@"Verizon Wireless",@"64166":@"i-Tel Ltd",@"41709":@"Syriatel Holdings",@"71201":@"ICE",@"24208":@"TDC Mobil A/S",@"23806":@"H3G",@"310900":@"Cable & Communications Corp.",@"262n/a":@"Talkline",@"71073":@"Claro",@"73004":@"Nextel SA",@"310620":@"Coleman County Telco /Trans TX",@"310340":@"Westlink Communications, LLC",@"73012":@"Telestar Movil SA",@"74405":@"TIM/Nucleo/Personal",@"63401":@"ZAIN/Mobitel",@"342050":@"Digicel",@"23830":@"Telia",@"24708":@"SIA IZZI",@"65204":@"BeMOBILE",@"26035":@"PKP Polskie Linie Kolejowe S.A.",@"71202":@"ICE",@"24209":@"Com4 AS",@"23807":@"Mundio Mobile",@"64303":@"Movitel",@"312230":@"North Dakota Network Company",@"41250":@"Etisalat ",@"73005":@"Nextel SA",@"62001":@"MTN",@"73013":@"Tribe Mobile SPA",@"23823":@"Banedanmark",@"20468":@"Unify Mobile",@"63402":@"MTN",@"362951":@"UTS Wireless",@"24709":@"SIA Camel Mobile",@"33450":@"AT&T/IUSACell",@"64803":@"Telecel",@"54201":@"Vodafone",@"26036":@"Mundio Mobile Sp. z o.o.",@"62501":@"CV Movel",@"20620":@"Base/KPN",@"71203":@"Claro",@"64304":@"Vodacom",@"63902":@"Safaricom Ltd.",@"73006":@"Blue Two Chile SA",@"62002":@"Vodafone",@"63782":@"Somtel",@"311420":@"Northwest Missouri Cellular Limited Partnership",@"73014":@"Netline Telefonica Movil Ltda",@"20469":@"KPN Telecom B.V.",@"311140":@"Cross Wireless Telephone Co.",@"316010":@"Sprint Spectrum",@"61101":@"Orange/Sonatel/Spacetel",@"45500":@"Smartone Mobile",@"20605":@"Telenet BidCo NV",@"64804":@"Econet",@"54202":@"DigiCell",@"62502":@"T+ Telecom",@"71204":@"Movistar",@"22288":@"WIND (Blu) -",@"63903":@"Airtel/Zain/Celtel Ltd.",@"732020":@"UNE EPM Telecomunicaciones SA ESP",@"73007":@"TELEFONICA",@"62003":@"Milicom/Tigo",@"61601":@"Libercom",@"25999":@"IDC/Unite ",@"71220":@"Virtualis",@"73015":@"Cibeles Telecom SA",@"37201":@"Comcel",@"45501":@"C.T.M. TELEMOVEL+",@"61102":@"SotelGui",@"20606":@"Lycamobile Belgium",@"310610":@"Elkhart TelCo. / Epic Touch Co.",@"342600":@"LIME",@"26038":@"CallFreedom Sp. z o.o.",@"310330":@"T-Mobile",@"29401":@"T-Mobile/Mobimak",@"45002":@"KT Freetel Co. Ltd.",@"60201":@"Orange/Mobinil",@"73008":@"VTR Banda Ancha SA",@"62004":@"Expresso Ghana Ltd",@"61602":@"Etisalat/MOOV",@"51000":@"PT Pasifik Satelit Nusantara (PSN)",@"37202":@"Digicel",@"63405":@"Vivacell",@"312220":@"Missouri RSA No 5 Partnership",@"316011":@"Southern Communications Services Inc.",@"45502":@"TELECOM",@"61103":@"Intercel",@"60701":@"Gamcel",@"28001":@"Vodafone/CyTa",@"23199":@"Zeleznice Slovenskej republiky (ZSR)",@"36301":@"Setar GSM",@"51500":@"Fix Line",@"29402":@"ONE/Cosmofone",@"45003":@"SK Telecom",@"60202":@"Vodafone/Mirsfone ",@"63905":@"Econet Wireless",@"73009":@"Nextel SA",@"61603":@"MTN/Spacetel",@"51001":@"Indosat/Satelindo/M3",@"37203":@"National Telecom SA (NatCom)",@"36801":@"C-COM",@"63406":@"ZAIN/Mobitel",@"45503":@"Hutchison Telephone Co. Ltd",@"61104":@"MTN/Areeba",@"60702":@"Africel",@"54720":@"Vini/Tikiphone",@"311410":@"Iowa RSA No. 2 Limited Partnership",@"36302":@"Digicel",@"63422":@"MTN",@"28010":@"MTN/Areeba",@"29403":@"VIP Mobile",@"45004":@"KT Freetel Co. Ltd.",@"51501":@"Globe Telecom",@"60203":@"ETISALAT",@"22299":@"Hi3G",@"62006":@"Airtel/ZAIN",@"61604":@"Bell Benin/BBCOM",@"242017":@"Ventelo AS",@"43701":@"Beeline/Bitel",@"23828":@"CoolTEL ApS",@"51010":@"Telkomsel",@"63407":@"Sudani One",@"45504":@"C.T.M. TELEMOVEL+",@"61105":@"Celcom",@"63415":@"Sudani One",@"60703":@"Comium",@"27601":@"AMC/Cosmote",@"310870":@"Kaplan Telephone Company Inc.",@"42800":@"Skytel Co. Ltd",@"310590":@"Verizon Wireless",@"51502":@"Globe Telecom",@"330110":@"Puerto Rico Telephone Company Inc. (PRTC)",@"45005":@"SK Telecom Co. Ltd",@"34001":@"Orange Caribe",@"310600":@"New-Cell Inc.",@"63907":@"Orange",@"310320":@"Smith Bagley Inc.",@"62007":@"GloMobile",@"61605":@"GloMobile",@"310040":@"Matanuska Tel. Assn. Inc.",@"73019":@"Sociedad Falabella Movil SPA",@"51011":@"PT. Excelcom",@"26201":@"T-mobile/Telekom",@"63408":@"Vivacell",@"45505":@"Hutchison Telephone Co. Ltd",@"60704":@"Q-Cell",@"27602":@"Vodafone ",@"41280":@"Afghan Telecom Corp. (AT)",@"51503":@"Smart",@"43211":@"MCI/TCI",@"45006":@"LG Telecom",@"20498":@"T-Mobile B.V.",@"34002":@"Outremer Telecom",@"28020":@"PrimeTel PLC",@"36320":@"Digicel",@"43703":@"AkTel LLC",@"26202":@"Vodafone D2",@"41401":@"Myanmar Post & Teleco.",@"54715":@"Pacific Mobile Telecom (PMT)",@"45506":@"Smartone Mobile",@"26210":@"DB Netz AG",@"27603":@"Eagle Mobile",@"311670":@"Pine Belt Cellular, Inc.",@"34003":@"TelCell GSM",@"311390":@"Verizon Wireless",@"43220":@"Rightel",@"34011":@"TelCell GSM",@"40001":@"Azercell Telekom B.M.",@"311120":@"Choice Phone LLC",@"26203":@"E-Plus",@"51021":@"Indosat/Satelindo/M3",@"26211":@"O2",@"27604":@"PLUS Communication Sh.a",@"51505":@"SUN/Digitel",@"45008":@"KT Freetel Co. Ltd.",@"310860":@"Texas RSA 15B2 Limited Partnership",@"41902":@"Zain",@"34012":@"UTS Caraibe",@"40002":@"J.V. Bakcell GSM 2000",@"310580":@"PCS ONE",@"34020":@"Bouygues/DigiCel",@"43705":@"MEGACOM",@"26204":@"Vodafone D2",@"352050":@"Digicel",@"310310":@"T-Mobile",@"26212":@"E-Plus",@"26220":@"E-Plus",@"43214":@"TKC/KFZO",@"23001":@"T-Mobile / RadioMobil",@"312190":@"Sprint Spectrum",@"41903":@"Wataniya",@"302720":@"Rogers AT&T Wireless",@"51007":@"Flexi (PT Telkom) (CDMA)",@"40003":@"Caspian American Telecommunications LLC (CATEL)",@"24410":@"TDC Oy Finland",@"26205":@"E-Plus",@"26213":@"Mobilcom",@"356110":@"Cable & Wireless",@"732001":@"TIGO/Colombia Movil",@"23002":@"O2",@"44140":@"NTT Docomo",@"41904":@"Viva",@"24403":@"DNA/Finnet",@"40004":@"Azerfon.",@"51008":@"Axis/Natrindo",@"24411":@"Mundio Mobile (Finland) Ltd",@"26206":@"T-mobile/Telekom",@"41405":@"Oreedoo",@"26214":@"Group 3G UMTS",@"23502":@"Everyth. Ev.wh.",@"311110":@"Verizon Wireless",@"23003":@"Vodafone",@"22601":@"Vodafone",@"44141":@"NTT Docomo",@"24404":@"DNA/Finnet",@"43232":@"Taliya",@"51009":@"PT Smartfren Telecom Tbk",@"24412":@"DNA/Finnet",@"26207":@"O2",@"362630":@"Cingular Wireless",@"41406":@"Telenor",@"310850":@"Aeris Comm. Inc.",@"74601":@"Telesur",@"310570":@"MTPCS LLC",@"21201":@"Monaco Telecom",@"310290":@"NEP Cellcorp Inc.",@"40505":@"Fascel Limited",@"732002":@"Edatel S.A.",@"34008":@"Dauphin Telecom SU (Guadeloupe Telecom)",@"23004":@"Ufone",@"22602":@"Romtelecom SA",@"44142":@"NTT Docomo",@"310300":@"T-Mobile",@"310020":@"Union Telephone Co.",@"22610":@"Orange",@"24405":@"Elisa/Saunalahti",@"43709":@"O!/NUR Telecom",@"24413":@"DNA/Finnet",@"26208":@"O2",@"312180":@"Keystone Wireless LLC",@"302710":@"Globalstar Canada",@"26216":@"Telogic/ViStream",@"24421":@"Elisa/Saunalahti",@"310032":@"IT&E OverSeas",@"74602":@"Telecommunicatiebedrijf Suriname (TELESUR)",@"20800":@"Tel/Te",@"65401":@"HURI - SNPT",@"21210":@"Monaco Telecom",@"23005":@"Travel Telekommunikation s.r.o.",@"22603":@"Cosmote",@"44143":@"NTT Docomo",@"51518":@"RED Mobile/Cure",@"22611":@"Enigma Systems",@"24414":@"Alands",@"26209":@"Vodafone D2",@"51027":@"PT Sampoerna Telekomunikasi Indonesia (STI)",@"26217":@"E-Plus",@"74603":@"Digicel",@"64001":@"Tri Telecomm. Ltd.",@"41288":@"Afghan Telecom Corp. (AT)",@"311650":@"United Wireless Communications Inc.",@"20801":@"Orange",@"311370":@"GCI Communication Corp.",@"43219":@"Mobile Telecommunications Company of Esfahan JV-PJS (MTCE)",@"22604":@"Telemobil/Zapp",@"44144":@"NTT Docomo",@"43235":@"MTN/IranCell",@"23877":@"Telenor/Sonofon",@"64501":@"Airtel/Zain/Celtel",@"65902":@"MTN South Sudan (South Sudan",@"51028":@"PT Smartfren Telecom Tbk",@"310033":@"Guam Teleph. Auth",@"74604":@"UNIQA",@"64002":@"TIGO/MIC",@"20802":@"Orange",@"26098":@"Play/P4",@"20810":@"S.F.R.",@"22605":@"RCS&RDS Digi Mobile",@"44145":@"NTT Docomo",@"310560":@"AT&T Wireless Inc.",@"26242":@"Vodafone D2",@"71401":@"Cable & W./Mas Movil",@"310280":@"T-Mobile",@"64502":@"MTN/Telecel",@"47001":@"GrameenPhone",@"352030":@"Digicel",@"44161":@"SoftBank Mobile Corp",@"65903":@"Gemtel Ltd (South Sudan",@"55301":@"Tuvalu Telecommunication Corporation (TTC)",@"310010":@"Verizon Wireless",@"64003":@"Zantel/Zanzibar Telecom",@"63601":@"ETH/MTN",@"20803":@"MobiquiThings",@"64011":@"Smile Communications Tanzania Ltd",@"23008":@"Compatel s.r.o.",@"20811":@"S.F.R.",@"63102":@"Unitel",@"22606":@"Telemobil/Zapp",@"312170":@"Iowa RSA No. 2 Limited Partnership",@"26243":@"Lycamobile",@"71402":@"Movistar",@"24409":@"Nokia Oyj",@"64503":@"Zamtel/Cell Z/MTS",@"47002":@"Robi/Aktel",@"44162":@"SoftBank Mobile Corp",@"62201":@"Airtel/ZAIN/Celtel",@"65904":@"Network of The World Ltd (NOW) (South Sudan",@"44170":@"KDDI Corporation",@"64004":@"Vodacom Ltd",@"20804":@"SISTEER",@"346050":@"Digicel Cayman Ltd",@"311920":@"Missouri RSA No 5 Partnership",@"348770":@"Digicel",@"62701":@"ORANGE/GETESA",@"20820":@"Bouygues Telecom",@"71403":@"Claro",@"47003":@"Orascom/Banglalink",@"44163":@"SoftBank Mobile Corp",@"62202":@"Tchad Mobile",@"46601":@"Far EasTone",@"310011":@"Northstar",@"54901":@"Telecom Samoa Cellular Ltd.",@"338180":@"Cable & Wireless",@"24426":@"Compatel Ltd",@"64005":@"Airtel/ZAIN/Celtel",@"53001":@"Vodafone",@"20805":@"GlobalStar",@"61301":@"TeleMob-OnaTel",@"43270":@"MTCE",@"302701":@"NB Tel Mobility",@"20813":@"S.F.R.",@"63104":@"MoviCel",@"20821":@"Bouygues Telecom",@"71404":@"Digicel",@"60400":@"Medi Telecom",@"22616":@"Lycamobile",@"45201":@"Mobifone",@"47004":@"TeleTalk",@"44164":@"SoftBank Mobile Corp",@"62203":@"Tigo/Milicom/Tchad Mobile",@"61801":@"Lonestar",@"46602":@"Far EasTone",@"342820":@"Sunbeach",@"65906":@"Zain South Sudan (South Sudan",@"46610":@"Global Mobile Corp.",@"310830":@"Caprock Cellular Ltd.",@"64006":@"Dovetel (T) Ltd",@"53002":@"Spark/NZ Telecom",@"310270":@"T-Mobile",@"45701":@"Lao Tel",@"61302":@"Airtel/ZAIN/CelTel",@"20806":@"GlobalStar",@"20814":@"Lliad/FREE Mobile",@"62703":@"HiTs-GE",@"54411":@"Blue Sky Communications",@"20822":@"Transatel SA",@"45202":@"Vinaphone",@"60401":@"IAM/Itissallat",@"302680":@"Sask Tel Mobility",@"47005":@"Citycell",@"44165":@"SoftBank Mobile Corp",@"62204":@"Salam/Sotel",@"61802":@"Libercell",@"46603":@"Far EasTone",@"310012":@"Verizon Wireless",@"312160":@"RSA 1 Limited Partnership",@"46611":@"Chunghwa Telecom LDM",@"64007":@"Tanzania Telecommunications Company Ltd (TTCL)",@"53003":@"Walker Wireless Ltd.",@"45702":@"ETL Mobile",@"61303":@"TeleCel",@"20807":@"GlobalStar",@"28201":@"Geocell Ltd.",@"366110":@"C & W",@"302702":@"MT&T Mobility",@"20815":@"Lliad/FREE Mobile",@"60901":@"Mattel",@"20823":@"Virgin Mobile/Omer",@"45203":@"S-Fone/Telecom",@"60402":@"INWI/WANA",@"20831":@"Mundio Mobile (France) Ltd",@"47006":@"Citycell",@"36010":@"Cingular",@"64008":@"Benson Informatics Ltd",@"53004":@"Telstra",@"311350":@"Sagebrush Cellular Inc.",@"45703":@"UNITEL/LAT",@"40553":@"AirTel",@"60902":@"Chinguitel SA",@"28202":@"Magti GSM Ltd.",@"311070":@"Wisconsin RSA #7 Limited Partnership",@"44190":@"NTT Docomo",@"20816":@"Lliad/FREE Mobile",@"43401":@"Buztel",@"60910":@"Mauritel",@"20824":@"MobiquiThings",@"29475":@"ONE/Cosmofone",@"45204":@"Viettel Mobile",@"47007":@"Airtel/Warid",@"46605":@"Asia Pacific Telecom Co. Ltd (APT)",@"310013":@"Verizon Wireless",@"61804":@"Comium BVI",@"64009":@"Halotel/Viettel Ltd",@"53005":@"Spark/NZ Telecom",@"42001":@"STC/Al Jawal",@"20809":@"S.F.R.",@"61820":@"LibTelco",@"37412":@"Bmobile/TSTT",@"28203":@"Iberiatel Ltd.",@"27801":@"Vodafone",@"302703":@"New Tel Mobility",@"44191":@"NTT Docomo",@"20817":@"Legos - Local Exchange Global Operation Services SA",@"342810":@"Cingular Wireless",@"310260":@"T-Mobile",@"43402":@"Uzmacom",@"20825":@"Lycamobile SARL",@"45205":@"VietnaMobile",@"42501":@"Orange/Partner Co. Ltd.",@"46606":@"Far EasTone",@"302670":@"CityWest Mobility",@"28204":@"MobiTel/Beeline",@"44192":@"NTT Docomo",@"20826":@"NRJ",@"45206":@"Viettel Mobile",@"42502":@"Cellcom ltd.",@"46607":@"Far EasTone",@"25001":@"MTS",@"42003":@"Etihad/Etisalat/Mobily",@"41601":@"ZAIN /J.M.T.S",@"28205":@"Silknet",@"44193":@"NTT Docomo",@"43404":@"Bee Line/Unitel",@"25501":@"UMC/MTS",@"311340":@"Illinois Valley Cellular RSA 2 Partnership",@"20827":@"AFONE SA",@"365840":@"Cable and Wireless",@"45207":@"Beeline",@"42503":@"Pelephone",@"25002":@"Megafon",@"61807":@"CELLCOM",@"25010":@"DTC/Don Telecom",@"42004":@"Zain",@"365010":@"Digicell / Wireless Vent. Ltd ",@"41602":@"Xpress",@"310003":@"Unknown",@"44194":@"NTT Docomo",@"43405":@"Ucell/Coscom",@"53024":@"Two Degrees Mobile Ltd",@"25502":@"Beeline",@"20828":@"Astrium",@"45208":@"Viettel Mobile",@"42891":@"Skytel Co. Ltd",@"46609":@"VMAX Telecom Co. Ltd",@"25003":@"NCC",@"24601":@"Omnitel",@"310250":@"T-Mobile",@"42512":@"Pelephone",@"310530":@"West Virginia Wireless",@"25011":@"Orensot",@"42005":@"Virgin Mobile",@"41603":@"Umniah Mobile Co.",@"45708":@"Beeline/Tigo/Millicom",@"25503":@"KyivStar",@"302660":@"MTS Mobility",@"20829":@"Orange",@"302380":@"DMTS Mobility",@"23201":@"A1 MobilKom",@"27821":@"GO Mobile",@"42505":@"Jawwal",@"25004":@"Sibchallenge",@"24602":@"Bite",@"334090":@"NEXTEL",@"25012":@"Baykal Westcom",@"24482":@"ID-Mobile",@"40211":@"B-Mobile",@"26277":@"E-Plus",@"42006":@"Lebara Mobile",@"25020":@"Tele2/ECC/Volgogr.",@"310004":@"Verizon Wireless",@"43407":@"MTS/Uzdunrobita",@"25504":@"Intertelecom Ltd (IT)",@"311880":@"Sprint Spectrum",@"23202":@"A1 MobilKom",@"42506":@"Wataniya Mobile",@"310016":@"Leap Wireless International Inc.",@"23210":@"H3G",@"25005":@"Yenisey Telecom",@"24603":@"Tele2",@"311610":@"North Dakota Network Company",@"42514":@"Alon Cellular Ltd",@"311330":@"Michigan Wireless LLC",@"25013":@"Kuban GSM",@"311050":@"Thumb Cellular Limited Partnership",@"42007":@"Zain",@"24491":@"TeliaSonera",@"54927":@"Samoatel Mobile",@"25505":@"Golden Telecom",@"23203":@"T-Mobile/Telering",@"22801":@"Swisscom",@"51588":@"Next Mobile",@"42507":@"Hot Mobile/Mirs",@"23211":@"A1 MobilKom",@"25521":@"Telesystems Of Ukraine CJSC (TSU)",@"42515":@"Home Cellular Ltd",@"51089":@"H3G CP",@"310800":@"T-Mobile",@"310520":@"VeriSign",@"74801":@"Ancel/Antel",@"310240":@"T-Mobile",@"44198":@"NTT Docomo",@"21401":@"Vodafone",@"53028":@"2degrees",@"25506":@"Astelit/LIFE",@"23204":@"T-Mobile/Telering",@"22802":@"TDC Sunrise",@"42508":@"Golan Telekom",@"23212":@"3/Orange/One Connect",@"25007":@"ZAO SMARTS",@"65101":@"Vodacom Lesotho",@"42516":@"Rami Levy Hashikma Marketing Communications Ltd",@"25015":@"ZAO SMARTS",@"302370":@"FIDO (Rogers AT&T/ Microcell)",@"21901":@"T-Mobile/Cronet",@"312130":@"East Kentucky Network LLC",@"73401":@"DigiTel C.A.",@"334080":@"Operadora Unefon SA de CV",@"44199":@"NTT Docomo",@"25507":@"TriMob LLC",@"74810":@"Claro/AM Wireless",@"42888":@"Unitel",@"23205":@"3/Orange/One Connect",@"22803":@"Salt/Orange",@"23213":@"UPC Austria",@"65102":@"Econet/Ezi-cel",@"64700":@"Orange",@"311870":@"Sprint Spectrum",@"25016":@"NTC",@"21902":@"Tele2",@"311590":@"California RSA No. 3 Limited Partnership",@"73402":@"DigiTel C.A.",@"31006":@"Consolidated Telcom",@"21910":@"VIPnet d.o.o.",@"51099":@"Esia (PT Bakrie Telecom) (CDMA)",@"64201":@"Spacetel / Econet / Leo ",@"31014":@"Testing",@"74803":@"Ancel/Antel",@"348170":@"LIME",@"21403":@"Orange",@"21411":@"Orange",@"23206":@"3/Orange/One Connect",@"35650":@"Digicel",@"23214":@"H3G",@"22812":@"TDC Sunrise",@"302651":@"Bell Mobility",@"25017":@"UralTel",@"73403":@"DigiTel C.A.",@"64202":@"Africel / Safaris",@"310780":@"Message Express Co. / Airlink PCS",@"31015":@"Unknown",@"21404":@"Yoigo",@"31023":@"Unknown",@"55001":@"FSM Telecom",@"23207":@"T-Mobile/Telering",@"22805":@"Comfone AG",@"63301":@"C&W",@"310510":@"Airtel Wireless LLC",@"310230":@"T-Mobile",@"42898":@"G-Mobile Corporation Ltd",@"23215":@"T-Mobile/Telering",@"71601":@"GlobalStar",@"21420":@"fonYou Wireless SL",@"31031":@"T-Mobile",@"42519":@"Telzar/AZI ",@"64702":@"Outremer Telecom",@"47201":@"Dhiraagu/C&W",@"73404":@"Movistar/TelCel",@"40217":@"Bhutan Telecom Ltd (BTL)",@"64710":@"SFR",@"714020":@"Movistar",@"55501":@"Niue Telecom",@"64203":@"Onatel / Telecel ",@"63801":@"Djibouti Telecom SA (Evatis)",@"302640":@"Latitude Wireless",@"21405":@"Movistar",@"302360":@"Clearnet",@"312120":@"East Kentucky Network LLC",@"31024":@"Unknown",@"23208":@"A1 MobilKom",@"63302":@"Smartcom",@"334070":@"Operadora Unefon SA de CV",@"46656":@"International Telecom Co. Ltd (FITEL)",@"42899":@"Mobicom",@"21421":@"Jazz Telecom SAU",@"71602":@"GlobalStar",@"302652":@"BC Tel Mobility",@"20891":@"Orange",@"63310":@"Airtel",@"54101":@"SMILE",@"47202":@"Ooredo/Wataniya",@"71610":@"Claro /Amer.Mov./TIM",@"62401":@"MTN",@"25019":@"OJSC Altaysvyaz",@"36070":@"Digicel",@"311860":@"Uintah Basin Electronics Telecommunications Inc.",@"25035":@"MOTIV/LLC Ekaterinburg-2000",@"21406":@"Vodafone Enabler Espana SL",@"25550":@"UMC/MTS",@"31025":@"Unknown",@"54601":@"OPT Mobilis",@"23209":@"A1 MobilKom",@"708040":@"Digicel",@"22807":@"TDC Sunrise",@"62901":@"Airtel SA",@"21422":@"Digi Spain Telecom SL",@"23217":@"Spusu/Mass Response",@"61001":@"Malitel",@"45400":@"CSL Ltd.",@"20892":@"Association Plate-forme Telecom",@"311310":@"Lamar County Cellular",@"73406":@"Movilnet C.A. ",@"62402":@"Orange",@"25028":@"BeeLine/VimpelCom",@"360110":@"C & W",@"74807":@"MOVISTAR",@"21407":@"Movistar",@"302361":@"Clearnet",@"61501":@"Togo Telecom/TogoCELL",@"31026":@"Unknown",@"44000":@"Y-Mobile",@"25044":@"StavTelesot",@"21415":@"BT Espana SAU",@"22808":@"TDC Sunrise",@"31034":@"Nevada Wireless LLC",@"62902":@"Azur SA (ETC)",@"310770":@"Iowa Wireless Services LLC",@"21423":@"Lycamobile SL",@"45401":@"Citic Telecom Ltd.",@"61002":@"Orange/IKATEL",@"302653":@"Telus Mobility",@"62910":@"MTN/Libertis",@"60600":@"Libyana",@"53701":@"Pacific Mobile",@"310490":@"Triton PCS",@"310500":@"Public Service Cellular Inc.",@"35670":@"UTS Cariglobe",@"310220":@"T-Mobile",@"71620":@"Claro /Amer.Mov./TIM",@"21408":@"Euskaltel SA",@"61502":@"Telecel/MOOV",@"344930":@"DigiCel/Cing. Wireless",@"44001":@"NTT Docomo",@"21416":@"Telecable de Asturias SA",@"22809":@"Comfone AG",@"311311":@"Farmers",@"302630":@"Bell Aliant",@"23219":@"Tele2",@"45402":@"CSL Ltd.",@"60601":@"Al-Madar",@"53702":@"GreenCom PNG Ltd",@"45410":@"CSL/New World PCS Ltd.",@"23099":@"Vodafone",@"21432":@"ION Mobile",@"62404":@"Nextel",@"334060":@"SAI PCS",@"366050":@"Wireless Ventures (Dominica) Ltd (Digicel Dominica)",@"64207":@"Smart Mobile / LACELL ",@"29310":@"Slovenske zeleznice d.o.o.",@"52801":@"Telekom Brunei Bhd (TelBru)",@"21409":@"Orange",@"61503":@"Telecel/MOOV",@"28401":@"MobilTel AD",@"44002":@"NTT Docomo",@"21417":@"R Cable y Telec. Galicia SA",@"44010":@"NTT Docomo",@"21425":@"Lycamobile SL",@"302654":@"Sask Tel Mobility",@"71606":@"Movistar",@"45403":@"H3G/Hutchinson",@"60602":@"Al-Madar",@"46668":@"ACeS Taiwan - ACeS Taiwan Telecommunications Co Ltd",@"53703":@"Digicel",@"45411":@"China-HongKong Telecom Ltd (CHKTL)",@"54105":@"DigiCel",@"708030":@"HonduTel",@"51401":@"Telin/ Telkomcel",@"311300":@"Nexus Communications Inc.",@"31060":@"Consolidated Telcom",@"64208":@"Lumitel/Viettel",@"27001":@"P+T/Post LUXGSM",@"52802":@"b-mobile",@"25039":@"UralTel",@"311020":@"Missouri RSA No 5 Partnership",@"46692":@"Chunghwa Telecom LDM",@"44003":@"NTT Docomo",@"21418":@"Cableuropa SAU (ONO)",@"43601":@"Tcell/JC Somoncom",@"20888":@"Bouygues Telecom",@"360100":@"Cingular",@"44011":@"NTT Docomo",@"21426":@"Lleida",@"45404":@"H3G/Hutchinson",@"71607":@"Nextel",@"60603":@"Libyana",@"43102":@"Etisalat",@"45412":@"MOBILE/Peoples",@"71615":@"Viettel Mobile",@"25539":@"Golden Telecom",@"51402":@"Timor Telecom",@"45420":@"HKT/PCCW",@"310760":@"Panhandle Telephone Cooperative Inc.",@"342750":@"Digicel",@"310480":@"Choice Phone LLC",@"46693":@"Mobitai",@"50501":@"Telstra Corp. Ltd.",@"52811":@"Datastream (DTSCom)",@"44004":@"SoftBank Mobile Corp",@"28403":@"BTC Mobile EOOD (vivatel)",@"21419":@"Simyo/KPN ",@"20889":@"Virgin Mobile/Omer",@"22851":@"BebbiCell AG",@"43602":@"CJSC Indigo Tajikistan",@"44012":@"NTT Docomo",@"302655":@"MTS Mobility",@"45405":@"H3G/Hutchinson",@"21427":@"Truphone",@"31046":@"SIMMETRY",@"310210":@"T-Mobile",@"44020":@"SoftBank Mobile Corp",@"344920":@"C & W",@"45413":@"MOBILE/Peoples",@"42701":@"Ooredoo/Qtel",@"31038":@"USA 3650 AT&T",@"312090":@"Allied Wireless Communications Corporation",@"376350":@"Cable & Wireless (TCI) Ltd",@"26601":@"Gibtel GSM",@"42202":@"Oman Mobile/GTO",@"50502":@"Singtel Optus",@"334050":@"AT&T/IUSACell",@"22852":@"Mundio Mobile AG",@"43603":@"MLT/TT mobile",@"62907":@"Warid",@"44013":@"NTT Docomo",@"41301":@"Mobitel Ltd.",@"45406":@"Vodafone/SmarTone",@"44021":@"NTT Docomo",@"45414":@"H3G/Hutchinson",@"71617":@"Nextel",@"42702":@"Vodafone",@"42203":@"Nawras",@"311280":@"Verizon Wireless",@"50503":@"Vodafone",@"28405":@"Telenor/Cosmo/Globul",@"44006":@"SoftBank Mobile Corp",@"22853":@"upc cablecom GmbH",@"43604":@"Babilon-M",@"50511":@"Telstra Corp. Ltd.",@"25701":@"Mobile Digital Communications",@"44014":@"NTT Docomo",@"302656":@"Tbay Mobility",@"45407":@"UNICOM Ltd",@"41302":@"MTN/Dialog",@"60606":@"Hatef",@"43612":@"Tcell/JC Somoncom",@"44022":@"NTT Docomo",@"338110":@"Cable & Wireless",@"45415":@"Vodafone/SmarTone",@"311010":@"Missouri RSA No 5 Partnership",@"44030":@"NTT Docomo",@"40401":@"Aircel Digilink India",@"46688":@"KG Telecom",@"50504":@"Department of Defense",@"28406":@"BTC Mobile EOOD (vivatel)",@"44007":@"KDDI Corporation",@"22854":@"Lycamobile AG",@"43605":@"Bee Line",@"310750":@"East Kentucky Network LLC",@"50512":@"H3G Ltd.",@"310470":@"Docomo",@"44015":@"NTT Docomo",@"25702":@"MTS",@"45408":@"Truephone",@"33011":@"Puerto Rico Telephone Company Inc. (PRTC)",@"41303":@"Etisalat/Tigo",@"310190":@"Unknown",@"44023":@"NTT Docomo",@"45416":@"HKT/PCCW",@"310200":@"T-Mobile",@"44031":@"NTT Docomo",@"24801":@"EMT GSM",@"46689":@"T-Star/VIBO",@"40410":@"Bharti Airtel Limited (Delhi)",@"311281":@"Verizon Wireless",@"46697":@"Taiwan Cellular",@"50505":@"The Ozitel Network Pty.",@"45440":@"shared by private TETRA systems",@"44008":@"KDDI Corporation",@"27877":@"Melita",@"302610":@"Bell Mobility",@"25567":@"KyivStar",@"50513":@"Railcorp/Vodafone",@"302657":@"Quebectel Mobility",@"44016":@"NTT Docomo",@"25703":@"BelCel JV",@"45409":@"China Motion",@"29340":@"SI.Mobil",@"23401":@"Mapesbury C. Ltd",@"44024":@"NTT Docomo"}; +} + + (NSDictionary *)englishLanguageResources { return @{ @"SADebugMode": @"SDK Debug Mode",