-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatabase_simcard.go
2271 lines (2267 loc) · 164 KB
/
database_simcard.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package go_android_utils
import (
"google.golang.org/protobuf/proto"
)
func GetRandomDBSIMCard(countryISO string) *SIMCard {
_, ok := AvailableSIMCards[countryISO]
if !ok {
countryISO = randomStrSlice(AvailableCountries)
}
simCard := randomSIMSlice(AvailableSIMCards[countryISO])
simCard.Imei = new(IMEI)
return proto.Clone(simCard).(*SIMCard)
}
// AvailableSIMCards Source: https://www.mcc-mnc.com/
var AvailableSIMCards = map[string][]*SIMCard{
"AG": {
{MNC: "030", MCC: "344", Carrier: "APUA PCS", CountryISO: "AG", CountryCode: "1268"},
{MNC: "920", MCC: "344", Carrier: "C & W", CountryISO: "AG", CountryCode: "1268"},
{MNC: "930", MCC: "344", Carrier: "DigiCel/Cing. Wireless", CountryISO: "AG", CountryCode: "1268"},
},
"HT": {
{MNC: "01", MCC: "372", Carrier: "Comcel", CountryISO: "HT", CountryCode: "509"},
{MNC: "02", MCC: "372", Carrier: "Digicel", CountryISO: "HT", CountryCode: "509"},
{MNC: "03", MCC: "372", Carrier: "National Telecom SA (NatCom)", CountryISO: "HT", CountryCode: "509"},
},
"KP": {
{MNC: "193", MCC: "467", Carrier: "Sun Net", CountryISO: "KP", CountryCode: "850"},
},
"NI": {
{MNC: "21", MCC: "710", Carrier: "Empresa Nicaraguense de Telecomunicaciones SA (ENITEL)", CountryISO: "NI", CountryCode: "505"},
{MNC: "999", MCC: "710", Carrier: "Fix Line", CountryISO: "NI", CountryCode: "505"},
{MNC: "30", MCC: "710", Carrier: "Movistar", CountryISO: "NI", CountryCode: "505"},
{MNC: "73", MCC: "710", Carrier: "Claro", CountryISO: "NI", CountryCode: "505"},
},
"NE": {
{MNC: "03", MCC: "614", Carrier: "MOOV/TeleCel", CountryISO: "NE", CountryCode: "227"},
{MNC: "04", MCC: "614", Carrier: "Orange", CountryISO: "NE", CountryCode: "227"},
{MNC: "01", MCC: "614", Carrier: "Sahelcom", CountryISO: "NE", CountryCode: "227"},
{MNC: "02", MCC: "614", Carrier: "Airtel/Zain/CelTel", CountryISO: "NE", CountryCode: "227"},
},
"EE": {
{MNC: "01", MCC: "248", Carrier: "EMT GSM", CountryISO: "EE", CountryCode: "372"},
{MNC: "02", MCC: "248", Carrier: "Radiolinja Eesti", CountryISO: "EE", CountryCode: "372"},
{MNC: "03", MCC: "248", Carrier: "Tele2 Eesti AS", CountryISO: "EE", CountryCode: "372"},
{MNC: "04", MCC: "248", Carrier: "Top Connect OU", CountryISO: "EE", CountryCode: "372"},
},
"MT": {
{MNC: "999", MCC: "278", Carrier: "Fix Line", CountryISO: "MT", CountryCode: "356"},
{MNC: "21", MCC: "278", Carrier: "GO Mobile", CountryISO: "MT", CountryCode: "356"},
{MNC: "77", MCC: "278", Carrier: "Melita", CountryISO: "MT", CountryCode: "356"},
{MNC: "01", MCC: "278", Carrier: "Vodafone", CountryISO: "MT", CountryCode: "356"},
},
"MA": {
{MNC: "99", MCC: "604", Carrier: "Al Houria Telecom", CountryISO: "MA", CountryCode: "212"},
{MNC: "04", MCC: "604", Carrier: "Al Houria Telecom", CountryISO: "MA", CountryCode: "212"},
{MNC: "01", MCC: "604", Carrier: "IAM/Itissallat", CountryISO: "MA", CountryCode: "212"},
{MNC: "06", MCC: "604", Carrier: "IAM/Itissallat", CountryISO: "MA", CountryCode: "212"},
{MNC: "02", MCC: "604", Carrier: "INWI/WANA", CountryISO: "MA", CountryCode: "212"},
{MNC: "05", MCC: "604", Carrier: "INWI/WANA", CountryISO: "MA", CountryCode: "212"},
{MNC: "00", MCC: "604", Carrier: "Orange/Medi Telecom", CountryISO: "MA", CountryCode: "212"},
},
"HN": {
{MNC: "040", MCC: "708", Carrier: "Digicel", CountryISO: "HN", CountryCode: "504"},
{MNC: "030", MCC: "708", Carrier: "HonduTel", CountryISO: "HN", CountryCode: "504"},
{MNC: "001", MCC: "708", Carrier: "SERCOM/CLARO", CountryISO: "HN", CountryCode: "504"},
{MNC: "002", MCC: "708", Carrier: "Telefonica/CELTEL", CountryISO: "HN", CountryCode: "504"},
},
"PH": {
{MNC: "999", MCC: "515", Carrier: "Fix Line", CountryISO: "PH", CountryCode: "63"},
{MNC: "02", MCC: "515", Carrier: "Globe Telecom", CountryISO: "PH", CountryCode: "63"},
{MNC: "01", MCC: "515", Carrier: "Globe Telecom", CountryISO: "PH", CountryCode: "63"},
{MNC: "88", MCC: "515", Carrier: "Next Mobile", CountryISO: "PH", CountryCode: "63"},
{MNC: "18", MCC: "515", Carrier: "RED Mobile/Cure", CountryISO: "PH", CountryCode: "63"},
{MNC: "03", MCC: "515", Carrier: "Smart", CountryISO: "PH", CountryCode: "63"},
{MNC: "05", MCC: "515", Carrier: "SUN/Digitel", CountryISO: "PH", CountryCode: "63"},
},
"PM": {
{MNC: "01", MCC: "308", Carrier: "Ameris", CountryISO: "PM", CountryCode: "508"},
},
"TC": {
{MNC: "350", MCC: "376", Carrier: "Cable & Wireless (TCI) Ltd", CountryISO: "TC", CountryCode: ""},
{MNC: "050", MCC: "376", Carrier: "Digicel TCI Ltd", CountryISO: "TC", CountryCode: ""},
{MNC: "352", MCC: "376", Carrier: "IslandCom Communications Ltd.", CountryISO: "TC", CountryCode: ""},
},
"KM": {
{MNC: "01", MCC: "654", Carrier: "HURI - SNPT", CountryISO: "KM", CountryCode: "269"},
{MNC: "02", MCC: "654", Carrier: "TELMA TELCO SA", CountryISO: "KM", CountryCode: "269"},
},
"LT": {
{MNC: "02", MCC: "246", Carrier: "Bite", CountryISO: "LT", CountryCode: "370"},
{MNC: "01", MCC: "246", Carrier: "Omnitel", CountryISO: "LT", CountryCode: "370"},
{MNC: "03", MCC: "246", Carrier: "Tele2", CountryISO: "LT", CountryCode: "370"},
},
"SG": {
{MNC: "999", MCC: "525", Carrier: "Fix Line", CountryISO: "SG", CountryCode: "65"},
{MNC: "12", MCC: "525", Carrier: "GRID Communications Pte Ltd", CountryISO: "SG", CountryCode: "65"},
{MNC: "03", MCC: "525", Carrier: "MobileOne Ltd", CountryISO: "SG", CountryCode: "65"},
{MNC: "02", MCC: "525", Carrier: "Singtel", CountryISO: "SG", CountryCode: "65"},
{MNC: "01", MCC: "525", Carrier: "Singtel", CountryISO: "SG", CountryCode: "65"},
{MNC: "07", MCC: "525", Carrier: "Singtel", CountryISO: "SG", CountryCode: "65"},
{MNC: "05", MCC: "525", Carrier: "Starhub", CountryISO: "SG", CountryCode: "65"},
{MNC: "06", MCC: "525", Carrier: "Starhub", CountryISO: "SG", CountryCode: "65"},
},
"SS": {
{MNC: "03", MCC: "659", Carrier: "Gemtel Ltd (South Sudan", CountryISO: "SS", CountryCode: ""},
{MNC: "02", MCC: "659", Carrier: "MTN South Sudan (South Sudan", CountryISO: "SS", CountryCode: ""},
{MNC: "04", MCC: "659", Carrier: "Network of The World Ltd (NOW) (South Sudan", CountryISO: "SS", CountryCode: ""},
{MNC: "06", MCC: "659", Carrier: "Zain South Sudan (South Sudan", CountryISO: "SS", CountryCode: ""},
},
"SE": {
{MNC: "35", MCC: "240", Carrier: "42 Telecom AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "16", MCC: "240", Carrier: "42 Telecom AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "26", MCC: "240", Carrier: "Beepsend", CountryISO: "SE", CountryCode: "46"},
{MNC: "30", MCC: "240", Carrier: "NextGen Mobile Ltd (CardBoardFish)", CountryISO: "SE", CountryCode: "46"},
{MNC: "28", MCC: "240", Carrier: "CoolTEL Aps", CountryISO: "SE", CountryCode: "46"},
{MNC: "25", MCC: "240", Carrier: "Digitel Mobile Srl", CountryISO: "SE", CountryCode: "46"},
{MNC: "22", MCC: "240", Carrier: "Eu Tel AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "999", MCC: "240", Carrier: "Fix Line", CountryISO: "SE", CountryCode: "46"},
{MNC: "27", MCC: "240", Carrier: "Fogg Mobile AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "18", MCC: "240", Carrier: "Generic Mobile Systems Sweden AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "17", MCC: "240", Carrier: "Gotalandsnatet AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "02", MCC: "240", Carrier: "H3G Access AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "04", MCC: "240", Carrier: "H3G Access AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "36", MCC: "240", Carrier: "ID Mobile", CountryISO: "SE", CountryCode: "46"},
{MNC: "23", MCC: "240", Carrier: "Infobip Ltd.", CountryISO: "SE", CountryCode: "46"},
{MNC: "11", MCC: "240", Carrier: "Lindholmen Science Park AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "12", MCC: "240", Carrier: "Lycamobile Ltd", CountryISO: "SE", CountryCode: "46"},
{MNC: "29", MCC: "240", Carrier: "Mercury International Carrier Services", CountryISO: "SE", CountryCode: "46"},
{MNC: "19", MCC: "240", Carrier: "Mundio Mobile (Sweden) Ltd", CountryISO: "SE", CountryCode: "46"},
{MNC: "03", MCC: "240", Carrier: "Netett Sverige AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "10", MCC: "240", Carrier: "Spring Mobil AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "05", MCC: "240", Carrier: "Svenska UMTS-N", CountryISO: "SE", CountryCode: "46"},
{MNC: "14", MCC: "240", Carrier: "TDC Sverige AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "07", MCC: "240", Carrier: "Tele2 Sverige AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "24", MCC: "240", Carrier: "Telenor (Vodafone)", CountryISO: "SE", CountryCode: "46"},
{MNC: "08", MCC: "240", Carrier: "Telenor (Vodafone)", CountryISO: "SE", CountryCode: "46"},
{MNC: "06", MCC: "240", Carrier: "Telenor (Vodafone)", CountryISO: "SE", CountryCode: "46"},
{MNC: "01", MCC: "240", Carrier: "Telia Mobile", CountryISO: "SE", CountryCode: "46"},
{MNC: "13", MCC: "240", Carrier: "Ventelo Sverige AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "20", MCC: "240", Carrier: "Wireless Maingate AB", CountryISO: "SE", CountryCode: "46"},
{MNC: "15", MCC: "240", Carrier: "Wireless Maingate Nordic AB", CountryISO: "SE", CountryCode: "46"},
},
"TZ": {
{MNC: "08", MCC: "640", Carrier: "Benson Informatics Ltd", CountryISO: "TZ", CountryCode: "255"},
{MNC: "06", MCC: "640", Carrier: "Dovetel (T) Ltd", CountryISO: "TZ", CountryCode: "255"},
{MNC: "09", MCC: "640", Carrier: "Halotel/Viettel Ltd", CountryISO: "TZ", CountryCode: "255"},
{MNC: "11", MCC: "640", Carrier: "Smile Communications Tanzania Ltd", CountryISO: "TZ", CountryCode: "255"},
{MNC: "07", MCC: "640", Carrier: "Tanzania Telecommunications Company Ltd (TTCL)", CountryISO: "TZ", CountryCode: "255"},
{MNC: "02", MCC: "640", Carrier: "TIGO/MIC", CountryISO: "TZ", CountryCode: "255"},
{MNC: "01", MCC: "640", Carrier: "Tri Telecomm. Ltd.", CountryISO: "TZ", CountryCode: "255"},
{MNC: "04", MCC: "640", Carrier: "Vodacom Ltd", CountryISO: "TZ", CountryCode: "255"},
{MNC: "05", MCC: "640", Carrier: "Airtel/ZAIN/Celtel", CountryISO: "TZ", CountryCode: "255"},
{MNC: "03", MCC: "640", Carrier: "Zantel/Zanzibar Telecom", CountryISO: "TZ", CountryCode: "255"},
},
"TG": {
{MNC: "02", MCC: "615", Carrier: "Telecel/MOOV", CountryISO: "TG", CountryCode: "228"},
{MNC: "03", MCC: "615", Carrier: "Telecel/MOOV", CountryISO: "TG", CountryCode: "228"},
{MNC: "01", MCC: "615", Carrier: "Togo Telecom/TogoCELL", CountryISO: "TG", CountryCode: "228"},
},
"AR": {
{MNC: "310", MCC: "722", Carrier: "Claro/ CTI/AMX", CountryISO: "AR", CountryCode: "54"},
{MNC: "330", MCC: "722", Carrier: "Claro/ CTI/AMX", CountryISO: "AR", CountryCode: "54"},
{MNC: "320", MCC: "722", Carrier: "Claro/ CTI/AMX", CountryISO: "AR", CountryCode: "54"},
{MNC: "010", MCC: "722", Carrier: "Compania De Radiocomunicaciones Moviles SA", CountryISO: "AR", CountryCode: "54"},
{MNC: "999", MCC: "722", Carrier: "Fix Line", CountryISO: "AR", CountryCode: "54"},
{MNC: "070", MCC: "722", Carrier: "Movistar/Telefonica", CountryISO: "AR", CountryCode: "54"},
{MNC: "007", MCC: "722", Carrier: "Movistar/Telefonica", CountryISO: "AR", CountryCode: "54"},
{MNC: "020", MCC: "722", Carrier: "Nextel", CountryISO: "AR", CountryCode: "54"},
{MNC: "340", MCC: "722", Carrier: "Telecom Personal S.A.", CountryISO: "AR", CountryCode: "54"},
{MNC: "341", MCC: "722", Carrier: "Telecom Personal S.A.", CountryISO: "AR", CountryCode: "54"},
},
"BB": {
{MNC: "600", MCC: "342", Carrier: "LIME", CountryISO: "BB", CountryCode: "1246"},
{MNC: "810", MCC: "342", Carrier: "Cingular Wireless", CountryISO: "BB", CountryCode: "1246"},
{MNC: "750", MCC: "342", Carrier: "Digicel", CountryISO: "BB", CountryCode: "1246"},
{MNC: "050", MCC: "342", Carrier: "Digicel", CountryISO: "BB", CountryCode: "1246"},
{MNC: "820", MCC: "342", Carrier: "Sunbeach", CountryISO: "BB", CountryCode: "1246"},
},
"FI": {
{MNC: "14", MCC: "244", Carrier: "Alands", CountryISO: "FI", CountryCode: "358"},
{MNC: "26", MCC: "244", Carrier: "Compatel Ltd", CountryISO: "FI", CountryCode: "358"},
{MNC: "13", MCC: "244", Carrier: "DNA/Finnet", CountryISO: "FI", CountryCode: "358"},
{MNC: "12", MCC: "244", Carrier: "DNA/Finnet", CountryISO: "FI", CountryCode: "358"},
{MNC: "04", MCC: "244", Carrier: "DNA/Finnet", CountryISO: "FI", CountryCode: "358"},
{MNC: "03", MCC: "244", Carrier: "DNA/Finnet", CountryISO: "FI", CountryCode: "358"},
{MNC: "21", MCC: "244", Carrier: "Elisa/Saunalahti", CountryISO: "FI", CountryCode: "358"},
{MNC: "05", MCC: "244", Carrier: "Elisa/Saunalahti", CountryISO: "FI", CountryCode: "358"},
{MNC: "82", MCC: "244", Carrier: "ID-Mobile", CountryISO: "FI", CountryCode: "358"},
{MNC: "11", MCC: "244", Carrier: "Mundio Mobile (Finland) Ltd", CountryISO: "FI", CountryCode: "358"},
{MNC: "09", MCC: "244", Carrier: "Nokia Oyj", CountryISO: "FI", CountryCode: "358"},
{MNC: "10", MCC: "244", Carrier: "TDC Oy Finland", CountryISO: "FI", CountryCode: "358"},
{MNC: "91", MCC: "244", Carrier: "TeliaSonera", CountryISO: "FI", CountryCode: "358"},
},
"GN": {
{MNC: "04", MCC: "611", Carrier: "MTN/Areeba", CountryISO: "GN", CountryCode: "224"},
{MNC: "05", MCC: "611", Carrier: "Celcom", CountryISO: "GN", CountryCode: "224"},
{MNC: "03", MCC: "611", Carrier: "Intercel", CountryISO: "GN", CountryCode: "224"},
{MNC: "01", MCC: "611", Carrier: "Orange/Sonatel/Spacetel", CountryISO: "GN", CountryCode: "224"},
{MNC: "02", MCC: "611", Carrier: "SotelGui", CountryISO: "GN", CountryCode: "224"},
},
"PG": {
{MNC: "03", MCC: "537", Carrier: "Digicel", CountryISO: "PG", CountryCode: "675"},
{MNC: "999", MCC: "537", Carrier: "Fix Line", CountryISO: "PG", CountryCode: "675"},
{MNC: "02", MCC: "537", Carrier: "GreenCom PNG Ltd", CountryISO: "PG", CountryCode: "675"},
{MNC: "01", MCC: "537", Carrier: "Pacific Mobile", CountryISO: "PG", CountryCode: "675"},
},
"BR": {
{MNC: "26", MCC: "724", Carrier: "AmericaNet", CountryISO: "BR", CountryCode: "55"},
{MNC: "12", MCC: "724", Carrier: "Claro/Albra/America Movil", CountryISO: "BR", CountryCode: "55"},
{MNC: "38", MCC: "724", Carrier: "Claro/Albra/America Movil", CountryISO: "BR", CountryCode: "55"},
{MNC: "05", MCC: "724", Carrier: "Claro/Albra/America Movil", CountryISO: "BR", CountryCode: "55"},
{MNC: "01", MCC: "724", Carrier: "Vivo S.A./Telemig", CountryISO: "BR", CountryCode: "55"},
{MNC: "34", MCC: "724", Carrier: "CTBC Celular SA (CTBC)", CountryISO: "BR", CountryCode: "55"},
{MNC: "33", MCC: "724", Carrier: "CTBC Celular SA (CTBC)", CountryISO: "BR", CountryCode: "55"},
{MNC: "32", MCC: "724", Carrier: "CTBC Celular SA (CTBC)", CountryISO: "BR", CountryCode: "55"},
{MNC: "08", MCC: "724", Carrier: "TIM", CountryISO: "BR", CountryCode: "55"},
{MNC: "39", MCC: "724", Carrier: "Nextel (Telet)", CountryISO: "BR", CountryCode: "55"},
{MNC: "00", MCC: "724", Carrier: "Nextel (Telet)", CountryISO: "BR", CountryCode: "55"},
{MNC: "31", MCC: "724", Carrier: "Oi (TNL PCS / Oi)", CountryISO: "BR", CountryCode: "55"},
{MNC: "16", MCC: "724", Carrier: "Brazil Telcom", CountryISO: "BR", CountryCode: "55"},
{MNC: "24", MCC: "724", Carrier: "Amazonia Celular S/A", CountryISO: "BR", CountryCode: "55"},
{MNC: "30", MCC: "724", Carrier: "Oi (TNL PCS / Oi)", CountryISO: "BR", CountryCode: "55"},
{MNC: "54", MCC: "724", Carrier: "PORTO SEGURO TELECOMUNICACOES", CountryISO: "BR", CountryCode: "55"},
{MNC: "15", MCC: "724", Carrier: "Sercontel Cel", CountryISO: "BR", CountryCode: "55"},
{MNC: "07", MCC: "724", Carrier: "CTBC/Triangulo", CountryISO: "BR", CountryCode: "55"},
{MNC: "19", MCC: "724", Carrier: "Vivo S.A./Telemig", CountryISO: "BR", CountryCode: "55"},
{MNC: "03", MCC: "724", Carrier: "TIM", CountryISO: "BR", CountryCode: "55"},
{MNC: "02", MCC: "724", Carrier: "TIM", CountryISO: "BR", CountryCode: "55"},
{MNC: "04", MCC: "724", Carrier: "TIM", CountryISO: "BR", CountryCode: "55"},
{MNC: "37", MCC: "724", Carrier: "Unicel do Brasil Telecomunicacoes Ltda", CountryISO: "BR", CountryCode: "55"},
{MNC: "23", MCC: "724", Carrier: "Vivo S.A./Telemig", CountryISO: "BR", CountryCode: "55"},
{MNC: "11", MCC: "724", Carrier: "Vivo S.A./Telemig", CountryISO: "BR", CountryCode: "55"},
{MNC: "10", MCC: "724", Carrier: "Vivo S.A./Telemig", CountryISO: "BR", CountryCode: "55"},
{MNC: "06", MCC: "724", Carrier: "Vivo S.A./Telemig", CountryISO: "BR", CountryCode: "55"},
},
"BN": {
{MNC: "02", MCC: "528", Carrier: "b-mobile", CountryISO: "BN", CountryCode: "673"},
{MNC: "11", MCC: "528", Carrier: "Datastream (DTSCom)", CountryISO: "BN", CountryCode: "673"},
{MNC: "01", MCC: "528", Carrier: "Telekom Brunei Bhd (TelBru)", CountryISO: "BN", CountryCode: "673"},
},
"MK": {
{MNC: "75", MCC: "294", Carrier: "ONE/Cosmofone", CountryISO: "MK", CountryCode: "389"},
{MNC: "04", MCC: "294", Carrier: "Lycamobile", CountryISO: "MK", CountryCode: "389"},
{MNC: "02", MCC: "294", Carrier: "ONE/Cosmofone", CountryISO: "MK", CountryCode: "389"},
{MNC: "01", MCC: "294", Carrier: "T-Mobile/Mobimak", CountryISO: "MK", CountryCode: "389"},
{MNC: "03", MCC: "294", Carrier: "VIP Mobile", CountryISO: "MK", CountryCode: "389"},
},
"ST": {
{MNC: "01", MCC: "626", Carrier: "CSTmovel", CountryISO: "ST", CountryCode: "239"},
},
"SN": {
{MNC: "03", MCC: "608", Carrier: "Expresso/Sudatel", CountryISO: "SN", CountryCode: "221"},
{MNC: "01", MCC: "608", Carrier: "Orange/Sonatel", CountryISO: "SN", CountryCode: "221"},
{MNC: "02", MCC: "608", Carrier: "TIGO/Sentel GSM", CountryISO: "SN", CountryCode: "221"},
},
"UY": {
{MNC: "00", MCC: "748", Carrier: "Ancel/Antel", CountryISO: "UY", CountryCode: "598"},
{MNC: "01", MCC: "748", Carrier: "Ancel/Antel", CountryISO: "UY", CountryCode: "598"},
{MNC: "03", MCC: "748", Carrier: "Ancel/Antel", CountryISO: "UY", CountryCode: "598"},
{MNC: "10", MCC: "748", Carrier: "Claro/AM Wireless", CountryISO: "UY", CountryCode: "598"},
{MNC: "07", MCC: "748", Carrier: "MOVISTAR", CountryISO: "UY", CountryCode: "598"},
},
"KH": {
{MNC: "04", MCC: "456", Carrier: "Cambodia Advance Communications Co. Ltd (CADCOMMS)", CountryISO: "KH", CountryCode: "855"},
{MNC: "02", MCC: "456", Carrier: "Smart Mobile", CountryISO: "KH", CountryCode: "855"},
{MNC: "08", MCC: "456", Carrier: "Viettel/Metfone", CountryISO: "KH", CountryCode: "855"},
{MNC: "18", MCC: "456", Carrier: "Mobitel/Cam GSM", CountryISO: "KH", CountryCode: "855"},
{MNC: "01", MCC: "456", Carrier: "Mobitel/Cam GSM", CountryISO: "KH", CountryCode: "855"},
{MNC: "03", MCC: "456", Carrier: "QB/Cambodia Adv. Comms.", CountryISO: "KH", CountryCode: "855"},
{MNC: "11", MCC: "456", Carrier: "SEATEL", CountryISO: "KH", CountryCode: "855"},
{MNC: "06", MCC: "456", Carrier: "Smart Mobile", CountryISO: "KH", CountryCode: "855"},
{MNC: "05", MCC: "456", Carrier: "Smart Mobile", CountryISO: "KH", CountryCode: "855"},
{MNC: "09", MCC: "456", Carrier: "Sotelco/Beeline", CountryISO: "KH", CountryCode: "855"},
},
"CY": {
{MNC: "10", MCC: "280", Carrier: "MTN/Areeba", CountryISO: "CY", CountryCode: "357"},
{MNC: "999", MCC: "280", Carrier: "Fix Line", CountryISO: "CY", CountryCode: "357"},
{MNC: "20", MCC: "280", Carrier: "PrimeTel PLC", CountryISO: "CY", CountryCode: "357"},
{MNC: "01", MCC: "280", Carrier: "Vodafone/CyTa", CountryISO: "CY", CountryCode: "357"},
},
"RE": {
{MNC: "00", MCC: "647", Carrier: "Orange", CountryISO: "RE", CountryCode: "262"},
{MNC: "02", MCC: "647", Carrier: "Outremer Telecom", CountryISO: "RE", CountryCode: "262"},
{MNC: "10", MCC: "647", Carrier: "SFR", CountryISO: "RE", CountryCode: "262"},
},
"UG": {
{MNC: "01", MCC: "641", Carrier: "Airtel/Celtel", CountryISO: "UG", CountryCode: "256"},
{MNC: "999", MCC: "641", Carrier: "Fix Line", CountryISO: "UG", CountryCode: "256"},
{MNC: "66", MCC: "641", Carrier: "i-Tel Ltd", CountryISO: "UG", CountryCode: "256"},
{MNC: "30", MCC: "641", Carrier: "K2 Telecom Ltd", CountryISO: "UG", CountryCode: "256"},
{MNC: "10", MCC: "641", Carrier: "MTN Ltd.", CountryISO: "UG", CountryCode: "256"},
{MNC: "14", MCC: "641", Carrier: "Orange", CountryISO: "UG", CountryCode: "256"},
{MNC: "33", MCC: "641", Carrier: "Smile Communications Uganda Ltd", CountryISO: "UG", CountryCode: "256"},
{MNC: "18", MCC: "641", Carrier: "Suretelecom Uganda Ltd", CountryISO: "UG", CountryCode: "256"},
{MNC: "11", MCC: "641", Carrier: "Uganda Telecom Ltd.", CountryISO: "UG", CountryCode: "256"},
{MNC: "22", MCC: "641", Carrier: "Airtel/Warid", CountryISO: "UG", CountryCode: "256"},
},
"VU": {
{MNC: "05", MCC: "541", Carrier: "DigiCel", CountryISO: "VU", CountryCode: "678"},
{MNC: "01", MCC: "541", Carrier: "SMILE", CountryISO: "VU", CountryCode: "678"},
},
"CZ": {
{MNC: "08", MCC: "230", Carrier: "Compatel s.r.o.", CountryISO: "CZ", CountryCode: "420"},
{MNC: "999", MCC: "230", Carrier: "Fix Line", CountryISO: "CZ", CountryCode: "420"},
{MNC: "02", MCC: "230", Carrier: "O2", CountryISO: "CZ", CountryCode: "420"},
{MNC: "01", MCC: "230", Carrier: "T-Mobile / RadioMobil", CountryISO: "CZ", CountryCode: "420"},
{MNC: "05", MCC: "230", Carrier: "Travel Telekommunikation s.r.o.", CountryISO: "CZ", CountryCode: "420"},
{MNC: "04", MCC: "230", Carrier: "Ufone", CountryISO: "CZ", CountryCode: "420"},
{MNC: "99", MCC: "230", Carrier: "Vodafone", CountryISO: "CZ", CountryCode: "420"},
{MNC: "03", MCC: "230", Carrier: "Vodafone", CountryISO: "CZ", CountryCode: "420"},
},
"FG": {
{MNC: "20", MCC: "340", Carrier: "Bouygues/DigiCel", CountryISO: "FG", CountryCode: "594"},
{MNC: "01", MCC: "340", Carrier: "Orange Caribe", CountryISO: "FG", CountryCode: "594"},
{MNC: "02", MCC: "340", Carrier: "Outremer Telecom", CountryISO: "FG", CountryCode: "594"},
{MNC: "11", MCC: "340", Carrier: "TelCell GSM", CountryISO: "FG", CountryCode: "594"},
{MNC: "03", MCC: "340", Carrier: "TelCell GSM", CountryISO: "FG", CountryCode: "594"},
},
"IQ": {
{MNC: "05", MCC: "418", Carrier: "Asia Cell", CountryISO: "IQ", CountryCode: "964"},
{MNC: "66", MCC: "418", Carrier: "Fastlink", CountryISO: "IQ", CountryCode: "964"},
{MNC: "92", MCC: "418", Carrier: "Itisaluna and Kalemat", CountryISO: "IQ", CountryCode: "964"},
{MNC: "40", MCC: "418", Carrier: "Korek", CountryISO: "IQ", CountryCode: "964"},
{MNC: "82", MCC: "418", Carrier: "Korek", CountryISO: "IQ", CountryCode: "964"},
{MNC: "45", MCC: "418", Carrier: "Mobitel (Iraq-Kurdistan) and Moutiny", CountryISO: "IQ", CountryCode: "964"},
{MNC: "20", MCC: "418", Carrier: "ZAIN/Atheer/Orascom", CountryISO: "IQ", CountryCode: "964"},
{MNC: "30", MCC: "418", Carrier: "Orascom Telecom", CountryISO: "IQ", CountryCode: "964"},
{MNC: "08", MCC: "418", Carrier: "Sanatel", CountryISO: "IQ", CountryCode: "964"},
},
"NA": {
{MNC: "03", MCC: "649", Carrier: "TN Mobile", CountryISO: "NA", CountryCode: "264"},
{MNC: "01", MCC: "649", Carrier: "MTC", CountryISO: "NA", CountryCode: "264"},
{MNC: "02", MCC: "649", Carrier: "Switch/Nam. Telec.", CountryISO: "NA", CountryCode: "264"},
},
"ZA": {
{MNC: "02", MCC: "655", Carrier: "Telkom/8.ta", CountryISO: "ZA", CountryCode: "27"},
{MNC: "21", MCC: "655", Carrier: "Cape Town Metropolitan", CountryISO: "ZA", CountryCode: "27"},
{MNC: "07", MCC: "655", Carrier: "Cell C", CountryISO: "ZA", CountryCode: "27"},
{MNC: "12", MCC: "655", Carrier: "MTN", CountryISO: "ZA", CountryCode: "27"},
{MNC: "10", MCC: "655", Carrier: "MTN", CountryISO: "ZA", CountryCode: "27"},
{MNC: "06", MCC: "655", Carrier: "Sentech", CountryISO: "ZA", CountryCode: "27"},
{MNC: "01", MCC: "655", Carrier: "Vodacom", CountryISO: "ZA", CountryCode: "27"},
{MNC: "19", MCC: "655", Carrier: "Wireless Business Solutions (Pty) Ltd", CountryISO: "ZA", CountryCode: "27"},
},
"SC": {
{MNC: "10", MCC: "633", Carrier: "Airtel", CountryISO: "SC", CountryCode: "248"},
{MNC: "01", MCC: "633", Carrier: "C&W", CountryISO: "SC", CountryCode: "248"},
{MNC: "02", MCC: "633", Carrier: "Smartcom", CountryISO: "SC", CountryCode: "248"},
},
"FJ": {
{MNC: "02", MCC: "542", Carrier: "DigiCell", CountryISO: "FJ", CountryCode: "679"},
{MNC: "01", MCC: "542", Carrier: "Vodafone", CountryISO: "FJ", CountryCode: "679"},
},
"LU": {
{MNC: "999", MCC: "270", Carrier: "Fix Line", CountryISO: "LU", CountryCode: "352"},
{MNC: "77", MCC: "270", Carrier: "Millicom Tango GSM", CountryISO: "LU", CountryCode: "352"},
{MNC: "01", MCC: "270", Carrier: "P+T/Post LUXGSM", CountryISO: "LU", CountryCode: "352"},
{MNC: "99", MCC: "270", Carrier: "Orange/VOXmobile S.A.", CountryISO: "LU", CountryCode: "352"},
},
"NP": {
{MNC: "02", MCC: "429", Carrier: "Ncell", CountryISO: "NP", CountryCode: "977"},
{MNC: "01", MCC: "429", Carrier: "NT Mobile / Namaste", CountryISO: "NP", CountryCode: "977"},
{MNC: "04", MCC: "429", Carrier: "Smart Cell", CountryISO: "NP", CountryCode: "977"},
},
"PE": {
{MNC: "10", MCC: "716", Carrier: "Claro /Amer.Mov./TIM", CountryISO: "PE", CountryCode: "51"},
{MNC: "20", MCC: "716", Carrier: "Claro /Amer.Mov./TIM", CountryISO: "PE", CountryCode: "51"},
{MNC: "02", MCC: "716", Carrier: "GlobalStar", CountryISO: "PE", CountryCode: "51"},
{MNC: "01", MCC: "716", Carrier: "GlobalStar", CountryISO: "PE", CountryCode: "51"},
{MNC: "06", MCC: "716", Carrier: "Movistar", CountryISO: "PE", CountryCode: "51"},
{MNC: "07", MCC: "716", Carrier: "Nextel", CountryISO: "PE", CountryCode: "51"},
{MNC: "17", MCC: "716", Carrier: "Nextel", CountryISO: "PE", CountryCode: "51"},
{MNC: "15", MCC: "716", Carrier: "Viettel Mobile", CountryISO: "PE", CountryCode: "51"},
},
"PT": {
{MNC: "999", MCC: "268", Carrier: "Fix Line", CountryISO: "PT", CountryCode: "351"},
{MNC: "04", MCC: "268", Carrier: "Lycamobile", CountryISO: "PT", CountryCode: "351"},
{MNC: "03", MCC: "268", Carrier: "NOS/Optimus", CountryISO: "PT", CountryCode: "351"},
{MNC: "07", MCC: "268", Carrier: "NOS/Optimus", CountryISO: "PT", CountryCode: "351"},
{MNC: "06", MCC: "268", Carrier: "MEO/TMN", CountryISO: "PT", CountryCode: "351"},
{MNC: "01", MCC: "268", Carrier: "Vodafone", CountryISO: "PT", CountryCode: "351"},
},
"FM": {
{MNC: "01", MCC: "550", Carrier: "FSM Telecom", CountryISO: "FM", CountryCode: "691"},
},
"SO": {
{MNC: "30", MCC: "637", Carrier: "Golis", CountryISO: "SO", CountryCode: "252"},
{MNC: "50", MCC: "637", Carrier: "Hormuud", CountryISO: "SO", CountryCode: "252"},
{MNC: "19", MCC: "637", Carrier: "HorTel", CountryISO: "SO", CountryCode: "252"},
{MNC: "10", MCC: "637", Carrier: "Nationlink", CountryISO: "SO", CountryCode: "252"},
{MNC: "60", MCC: "637", Carrier: "Nationlink", CountryISO: "SO", CountryCode: "252"},
{MNC: "04", MCC: "637", Carrier: "Somafone", CountryISO: "SO", CountryCode: "252"},
{MNC: "71", MCC: "637", Carrier: "Somtel", CountryISO: "SO", CountryCode: "252"},
{MNC: "82", MCC: "637", Carrier: "Somtel", CountryISO: "SO", CountryCode: "252"},
{MNC: "01", MCC: "637", Carrier: "Telesom", CountryISO: "SO", CountryCode: "252"},
},
"IS": {
{MNC: "09", MCC: "274", Carrier: "Amitelo", CountryISO: "IS", CountryCode: "354"},
{MNC: "07", MCC: "274", Carrier: "IceCell", CountryISO: "IS", CountryCode: "354"},
{MNC: "08", MCC: "274", Carrier: "Siminn", CountryISO: "IS", CountryCode: "354"},
{MNC: "01", MCC: "274", Carrier: "Siminn", CountryISO: "IS", CountryCode: "354"},
{MNC: "11", MCC: "274", Carrier: "NOVA", CountryISO: "IS", CountryCode: "354"},
{MNC: "04", MCC: "274", Carrier: "VIKING/IMC", CountryISO: "IS", CountryCode: "354"},
{MNC: "05", MCC: "274", Carrier: "Vodafone/Tal hf", CountryISO: "IS", CountryCode: "354"},
{MNC: "03", MCC: "274", Carrier: "Vodafone/Tal hf", CountryISO: "IS", CountryCode: "354"},
{MNC: "02", MCC: "274", Carrier: "Vodafone/Tal hf", CountryISO: "IS", CountryCode: "354"},
},
"FK": {
{MNC: "001", MCC: "750", Carrier: "Cable and Wireless South Atlantic Ltd (Falkland Islands", CountryISO: "FK", CountryCode: "500"},
},
"GA": {
{MNC: "04", MCC: "628", Carrier: "Azur/Usan S.A.", CountryISO: "GA", CountryCode: "241"},
{MNC: "01", MCC: "628", Carrier: "Libertis S.A.", CountryISO: "GA", CountryCode: "241"},
{MNC: "02", MCC: "628", Carrier: "MOOV/Telecel", CountryISO: "GA", CountryCode: "241"},
{MNC: "03", MCC: "628", Carrier: "Airtel/ZAIN/Celtel Gabon S.A.", CountryISO: "GA", CountryCode: "241"},
},
"HK": {
{MNC: "13", MCC: "454", Carrier: "China Mobile/Peoples", CountryISO: "HK", CountryCode: "852"},
{MNC: "12", MCC: "454", Carrier: "China Mobile/Peoples", CountryISO: "HK", CountryCode: "852"},
{MNC: "28", MCC: "454", Carrier: "China Mobile/Peoples", CountryISO: "HK", CountryCode: "852"},
{MNC: "09", MCC: "454", Carrier: "China Motion", CountryISO: "HK", CountryCode: "852"},
{MNC: "07", MCC: "454", Carrier: "China Unicom Ltd", CountryISO: "HK", CountryCode: "852"},
{MNC: "11", MCC: "454", Carrier: "China-HongKong Telecom Ltd (CHKTL)", CountryISO: "HK", CountryCode: "852"},
{MNC: "01", MCC: "454", Carrier: "Citic Telecom Ltd.", CountryISO: "HK", CountryCode: "852"},
{MNC: "00", MCC: "454", Carrier: "CSL Ltd.", CountryISO: "HK", CountryCode: "852"},
{MNC: "18", MCC: "454", Carrier: "CSL Ltd.", CountryISO: "HK", CountryCode: "852"},
{MNC: "02", MCC: "454", Carrier: "CSL Ltd.", CountryISO: "HK", CountryCode: "852"},
{MNC: "10", MCC: "454", Carrier: "CSL/New World PCS Ltd.", CountryISO: "HK", CountryCode: "852"},
{MNC: "31", MCC: "454", Carrier: "CTExcel", CountryISO: "HK", CountryCode: "852"},
{MNC: "05", MCC: "454", Carrier: "H3G/Hutchinson", CountryISO: "HK", CountryCode: "852"},
{MNC: "04", MCC: "454", Carrier: "H3G/Hutchinson", CountryISO: "HK", CountryCode: "852"},
{MNC: "03", MCC: "454", Carrier: "H3G/Hutchinson", CountryISO: "HK", CountryCode: "852"},
{MNC: "14", MCC: "454", Carrier: "H3G/Hutchinson", CountryISO: "HK", CountryCode: "852"},
{MNC: "20", MCC: "454", Carrier: "HKT/PCCW", CountryISO: "HK", CountryCode: "852"},
{MNC: "19", MCC: "454", Carrier: "HKT/PCCW", CountryISO: "HK", CountryCode: "852"},
{MNC: "29", MCC: "454", Carrier: "HKT/PCCW", CountryISO: "HK", CountryCode: "852"},
{MNC: "16", MCC: "454", Carrier: "HKT/PCCW", CountryISO: "HK", CountryCode: "852"},
{MNC: "47", MCC: "454", Carrier: "shared by private TETRA systems", CountryISO: "HK", CountryCode: "852"},
{MNC: "24", MCC: "454", Carrier: "Multibyte Info Technology Ltd", CountryISO: "HK", CountryCode: "852"},
{MNC: "40", MCC: "454", Carrier: "shared by private TETRA systems", CountryISO: "HK", CountryCode: "852"},
{MNC: "08", MCC: "454", Carrier: "Truephone", CountryISO: "HK", CountryCode: "852"},
{MNC: "17", MCC: "454", Carrier: "Vodafone/SmarTone", CountryISO: "HK", CountryCode: "852"},
{MNC: "15", MCC: "454", Carrier: "Vodafone/SmarTone", CountryISO: "HK", CountryCode: "852"},
{MNC: "06", MCC: "454", Carrier: "Vodafone/SmarTone", CountryISO: "HK", CountryCode: "852"},
},
"MO": {
{MNC: "01", MCC: "455", Carrier: "C.T.M. TELEMOVEL+", CountryISO: "MO", CountryCode: "853"},
{MNC: "04", MCC: "455", Carrier: "C.T.M. TELEMOVEL+", CountryISO: "MO", CountryCode: "853"},
{MNC: "02", MCC: "455", Carrier: "China Telecom", CountryISO: "MO", CountryCode: "853"},
{MNC: "05", MCC: "455", Carrier: "Hutchison Telephone Co. Ltd", CountryISO: "MO", CountryCode: "853"},
{MNC: "03", MCC: "455", Carrier: "Hutchison Telephone Co. Ltd", CountryISO: "MO", CountryCode: "853"},
{MNC: "06", MCC: "455", Carrier: "Smartone Mobile", CountryISO: "MO", CountryCode: "853"},
{MNC: "00", MCC: "455", Carrier: "Smartone Mobile", CountryISO: "MO", CountryCode: "853"},
},
"BY": {
{MNC: "03", MCC: "257", Carrier: "BelCel JV", CountryISO: "BY", CountryCode: "375"},
{MNC: "04", MCC: "257", Carrier: "BeST", CountryISO: "BY", CountryCode: "375"},
{MNC: "01", MCC: "257", Carrier: "MDC/Velcom", CountryISO: "BY", CountryCode: "375"},
{MNC: "02", MCC: "257", Carrier: "MTS", CountryISO: "BY", CountryCode: "375"},
},
"MD": {
{MNC: "04", MCC: "259", Carrier: "Eventis Mobile", CountryISO: "MD", CountryCode: "373"},
{MNC: "05", MCC: "259", Carrier: "IDC/Unite", CountryISO: "MD", CountryCode: "373"},
{MNC: "03", MCC: "259", Carrier: "IDC/Unite", CountryISO: "MD", CountryCode: "373"},
{MNC: "99", MCC: "259", Carrier: "IDC/Unite", CountryISO: "MD", CountryCode: "373"},
{MNC: "02", MCC: "259", Carrier: "Moldcell", CountryISO: "MD", CountryCode: "373"},
{MNC: "01", MCC: "259", Carrier: "Orange/Voxtel", CountryISO: "MD", CountryCode: "373"},
},
"PY": {
{MNC: "02", MCC: "744", Carrier: "Claro/Hutchison", CountryISO: "PY", CountryCode: "595"},
{MNC: "03", MCC: "744", Carrier: "Compa", CountryISO: "PY", CountryCode: "595"},
{MNC: "01", MCC: "744", Carrier: "Hola/VOX", CountryISO: "PY", CountryCode: "595"},
{MNC: "05", MCC: "744", Carrier: "TIM/Nucleo/Personal", CountryISO: "PY", CountryCode: "595"},
{MNC: "04", MCC: "744", Carrier: "Tigo/Telecel", CountryISO: "PY", CountryCode: "595"},
},
"SB": {
{MNC: "02", MCC: "540", Carrier: "bemobile", CountryISO: "SB", CountryCode: "677"},
{MNC: "10", MCC: "540", Carrier: "BREEZE", CountryISO: "SB", CountryCode: "677"},
{MNC: "01", MCC: "540", Carrier: "BREEZE", CountryISO: "SB", CountryCode: "677"},
},
"DZ": {
{MNC: "01", MCC: "603", Carrier: "ATM Mobils", CountryISO: "DZ", CountryCode: "213"},
{MNC: "02", MCC: "603", Carrier: "Orascom / DJEZZY", CountryISO: "DZ", CountryCode: "213"},
{MNC: "03", MCC: "603", Carrier: "Oreedo/Wataniya / Nedjma", CountryISO: "DZ", CountryCode: "213"},
},
"IL": {
{MNC: "14", MCC: "425", Carrier: "Alon Cellular Ltd", CountryISO: "IL", CountryCode: "972"},
{MNC: "02", MCC: "425", Carrier: "Cellcom ltd.", CountryISO: "IL", CountryCode: "972"},
{MNC: "08", MCC: "425", Carrier: "Golan Telekom", CountryISO: "IL", CountryCode: "972"},
{MNC: "15", MCC: "425", Carrier: "Home Cellular Ltd", CountryISO: "IL", CountryCode: "972"},
{MNC: "77", MCC: "425", Carrier: "Hot Mobile/Mirs", CountryISO: "IL", CountryCode: "972"},
{MNC: "07", MCC: "425", Carrier: "Hot Mobile/Mirs", CountryISO: "IL", CountryCode: "972"},
{MNC: "09", MCC: "425", Carrier: "We4G/Marathon 018", CountryISO: "IL", CountryCode: "972"},
{MNC: "01", MCC: "425", Carrier: "Orange/Partner Co. Ltd.", CountryISO: "IL", CountryCode: "972"},
{MNC: "12", MCC: "425", Carrier: "Pelephone", CountryISO: "IL", CountryCode: "972"},
{MNC: "03", MCC: "425", Carrier: "Pelephone", CountryISO: "IL", CountryCode: "972"},
{MNC: "16", MCC: "425", Carrier: "Rami Levy Hashikma Marketing Communications Ltd", CountryISO: "IL", CountryCode: "972"},
{MNC: "19", MCC: "425", Carrier: "Telzar/AZI", CountryISO: "IL", CountryCode: "972"},
},
"KW": {
{MNC: "999", MCC: "419", Carrier: "Fix Line", CountryISO: "KW", CountryCode: "965"},
{MNC: "02", MCC: "419", Carrier: "Zain", CountryISO: "KW", CountryCode: "965"},
{MNC: "04", MCC: "419", Carrier: "Viva", CountryISO: "KW", CountryCode: "965"},
{MNC: "03", MCC: "419", Carrier: "Ooredoo", CountryISO: "KW", CountryCode: "965"},
},
"MV": {
{MNC: "01", MCC: "472", Carrier: "Dhiraagu/C&W", CountryISO: "MV", CountryCode: "960"},
{MNC: "02", MCC: "472", Carrier: "Ooredo/Wataniya", CountryISO: "MV", CountryCode: "960"},
},
"MQ": {
{MNC: "12", MCC: "340", Carrier: "UTS Caraibe", CountryISO: "MQ", CountryCode: "596"},
},
"MZ": {
{MNC: "01", MCC: "643", Carrier: "mCel", CountryISO: "MZ", CountryCode: "258"},
{MNC: "03", MCC: "643", Carrier: "Movitel", CountryISO: "MZ", CountryCode: "258"},
{MNC: "04", MCC: "643", Carrier: "Vodacom", CountryISO: "MZ", CountryCode: "258"},
},
"PR": {
{MNC: "11", MCC: "330", Carrier: "Puerto Rico Telephone Company Inc. (PRTC)", CountryISO: "PR", CountryCode: ""},
{MNC: "110", MCC: "330", Carrier: "Puerto Rico Telephone Company Inc. (PRTC)", CountryISO: "PR", CountryCode: ""},
},
"GL": {
{MNC: "01", MCC: "290", Carrier: "Tele Greenland", CountryISO: "GL", CountryCode: "299"},
},
"PW": {
{MNC: "80", MCC: "552", Carrier: "Palau Mobile Corp. (PMC) (Palau", CountryISO: "PW", CountryCode: "680"},
{MNC: "01", MCC: "552", Carrier: "Palau National Communications Corp. (PNCC) (Palau", CountryISO: "PW", CountryCode: "680"},
{MNC: "02", MCC: "552", Carrier: "PECI/PalauTel (Palau", CountryISO: "PW", CountryCode: "680"},
},
"AE": {
{MNC: "03", MCC: "424", Carrier: "DU", CountryISO: "AE", CountryCode: "971"},
{MNC: "02", MCC: "431", Carrier: "Etisalat", CountryISO: "AE", CountryCode: "971"},
{MNC: "02", MCC: "430", Carrier: "Etisalat", CountryISO: "AE", CountryCode: "971"},
{MNC: "02", MCC: "424", Carrier: "Etisalat", CountryISO: "AE", CountryCode: "971"},
},
"BA": {
{MNC: "90", MCC: "218", Carrier: "BH Mobile", CountryISO: "BA", CountryCode: "387"},
{MNC: "03", MCC: "218", Carrier: "Eronet Mobile", CountryISO: "BA", CountryCode: "387"},
{MNC: "05", MCC: "218", Carrier: "M-Tel", CountryISO: "BA", CountryCode: "387"},
},
"BI": {
{MNC: "02", MCC: "642", Carrier: "Africel / Safaris", CountryISO: "BI", CountryCode: "257"},
{MNC: "999", MCC: "642", Carrier: "Fix Line", CountryISO: "BI", CountryCode: "257"},
{MNC: "08", MCC: "642", Carrier: "Lumitel/Viettel", CountryISO: "BI", CountryCode: "257"},
{MNC: "03", MCC: "642", Carrier: "Onatel / Telecel", CountryISO: "BI", CountryCode: "257"},
{MNC: "07", MCC: "642", Carrier: "Smart Mobile / LACELL", CountryISO: "BI", CountryCode: "257"},
{MNC: "82", MCC: "642", Carrier: "Spacetel / Econet / Leo", CountryISO: "BI", CountryCode: "257"},
{MNC: "01", MCC: "642", Carrier: "Spacetel / Econet / Leo", CountryISO: "BI", CountryCode: "257"},
},
"CV": {
{MNC: "01", MCC: "625", Carrier: "CV Movel", CountryISO: "CV", CountryCode: "238"},
{MNC: "02", MCC: "625", Carrier: "T+ Telecom", CountryISO: "CV", CountryCode: "238"},
},
"LY": {
{MNC: "02", MCC: "606", Carrier: "Al-Madar", CountryISO: "LY", CountryCode: "218"},
{MNC: "01", MCC: "606", Carrier: "Al-Madar", CountryISO: "LY", CountryCode: "218"},
{MNC: "06", MCC: "606", Carrier: "Hatef", CountryISO: "LY", CountryCode: "218"},
{MNC: "00", MCC: "606", Carrier: "Libyana", CountryISO: "LY", CountryCode: "218"},
{MNC: "03", MCC: "606", Carrier: "Libyana", CountryISO: "LY", CountryCode: "218"},
},
"LI": {
{MNC: "06", MCC: "295", Carrier: "CUBIC (Liechtenstein", CountryISO: "LI", CountryCode: "423"},
{MNC: "07", MCC: "295", Carrier: "First Mobile AG", CountryISO: "LI", CountryCode: "423"},
{MNC: "02", MCC: "295", Carrier: "Orange", CountryISO: "LI", CountryCode: "423"},
{MNC: "01", MCC: "295", Carrier: "Swisscom FL AG", CountryISO: "LI", CountryCode: "423"},
{MNC: "77", MCC: "295", Carrier: "Alpmobile/Tele2", CountryISO: "LI", CountryCode: "423"},
{MNC: "05", MCC: "295", Carrier: "Telecom FL1 AG", CountryISO: "LI", CountryCode: "423"},
},
"NO": {
{MNC: "09", MCC: "242", Carrier: "Com4 AS", CountryISO: "NO", CountryCode: "47"},
{MNC: "999", MCC: "242", Carrier: "Fix Line", CountryISO: "NO", CountryCode: "47"},
{MNC: "14", MCC: "242", Carrier: "ICE Nordisk Mobiltelefon AS", CountryISO: "NO", CountryCode: "47"},
{MNC: "21", MCC: "242", Carrier: "Jernbaneverket (GSM-R)", CountryISO: "NO", CountryCode: "47"},
{MNC: "20", MCC: "242", Carrier: "Jernbaneverket (GSM-R)", CountryISO: "NO", CountryCode: "47"},
{MNC: "23", MCC: "242", Carrier: "Lycamobile Ltd", CountryISO: "NO", CountryCode: "47"},
{MNC: "02", MCC: "242", Carrier: "Telia/Netcom", CountryISO: "NO", CountryCode: "47"},
{MNC: "22", MCC: "242", Carrier: "Telia/Network Norway AS", CountryISO: "NO", CountryCode: "47"},
{MNC: "05", MCC: "242", Carrier: "Telia/Network Norway AS", CountryISO: "NO", CountryCode: "47"},
{MNC: "06", MCC: "242", Carrier: "ICE Nordisk Mobiltelefon AS", CountryISO: "NO", CountryCode: "47"},
{MNC: "08", MCC: "242", Carrier: "TDC Mobil A/S", CountryISO: "NO", CountryCode: "47"},
{MNC: "04", MCC: "242", Carrier: "Tele2", CountryISO: "NO", CountryCode: "47"},
{MNC: "12", MCC: "242", Carrier: "Telenor", CountryISO: "NO", CountryCode: "47"},
{MNC: "01", MCC: "242", Carrier: "Telenor", CountryISO: "NO", CountryCode: "47"},
{MNC: "03", MCC: "242", Carrier: "Teletopia", CountryISO: "NO", CountryCode: "47"},
{MNC: "017", MCC: "242", Carrier: "Ventelo AS", CountryISO: "NO", CountryCode: "47"},
{MNC: "07", MCC: "242", Carrier: "Ventelo AS", CountryISO: "NO", CountryCode: "47"},
},
"ET": {
{MNC: "01", MCC: "636", Carrier: "ETH/MTN", CountryISO: "ET", CountryCode: "251"},
},
"ID": {
{MNC: "08", MCC: "510", Carrier: "Axis/Natrindo", CountryISO: "ID", CountryCode: "62"},
{MNC: "99", MCC: "510", Carrier: "Esia (PT Bakrie Telecom) (CDMA)", CountryISO: "ID", CountryCode: "62"},
{MNC: "999", MCC: "510", Carrier: "Fix Line", CountryISO: "ID", CountryCode: "62"},
{MNC: "07", MCC: "510", Carrier: "Flexi (PT Telkom) (CDMA)", CountryISO: "ID", CountryCode: "62"},
{MNC: "89", MCC: "510", Carrier: "H3G CP", CountryISO: "ID", CountryCode: "62"},
{MNC: "21", MCC: "510", Carrier: "Indosat/Satelindo/M3", CountryISO: "ID", CountryCode: "62"},
{MNC: "01", MCC: "510", Carrier: "Indosat/Satelindo/M3", CountryISO: "ID", CountryCode: "62"},
{MNC: "00", MCC: "510", Carrier: "PT Pasifik Satelit Nusantara (PSN)", CountryISO: "ID", CountryCode: "62"},
{MNC: "27", MCC: "510", Carrier: "PT Sampoerna Telekomunikasi Indonesia (STI)", CountryISO: "ID", CountryCode: "62"},
{MNC: "28", MCC: "510", Carrier: "PT Smartfren Telecom Tbk", CountryISO: "ID", CountryCode: "62"},
{MNC: "09", MCC: "510", Carrier: "PT Smartfren Telecom Tbk", CountryISO: "ID", CountryCode: "62"},
{MNC: "11", MCC: "510", Carrier: "PT. Excelcom", CountryISO: "ID", CountryCode: "62"},
{MNC: "10", MCC: "510", Carrier: "Telkomsel", CountryISO: "ID", CountryCode: "62"},
{MNC: "07", MCC: "510", Carrier: "Telkomsel", CountryISO: "ID", CountryCode: "62"},
},
"N/A": {
{MNC: "13", MCC: "901", Carrier: "Antarctica", CountryISO: "N/A", CountryCode: "882"},
{MNC: "14", MCC: "901", Carrier: "AeroMobile", CountryISO: "N/A", CountryCode: "870"},
{MNC: "11", MCC: "901", Carrier: "InMarSAT", CountryISO: "N/A", CountryCode: "870"},
{MNC: "12", MCC: "901", Carrier: "Maritime Communications Partner AS", CountryISO: "N/A", CountryCode: "870"},
{MNC: "05", MCC: "901", Carrier: "Thuraya Satellite", CountryISO: "N/A", CountryCode: "870"},
},
"ML": {
{MNC: "03", MCC: "610", Carrier: "ATEL SA", CountryISO: "ML", CountryCode: "223"},
{MNC: "01", MCC: "610", Carrier: "Malitel", CountryISO: "ML", CountryCode: "223"},
{MNC: "02", MCC: "610", Carrier: "Orange/IKATEL", CountryISO: "ML", CountryCode: "223"},
},
"KN": {
{MNC: "110", MCC: "356", Carrier: "Cable & Wireless", CountryISO: "KN", CountryCode: "1869"},
{MNC: "50", MCC: "356", Carrier: "Digicel", CountryISO: "KN", CountryCode: "1869"},
{MNC: "70", MCC: "356", Carrier: "UTS Cariglobe", CountryISO: "KN", CountryCode: "1869"},
},
"AO": {
{MNC: "04", MCC: "631", Carrier: "MoviCel", CountryISO: "AO", CountryCode: "244"},
{MNC: "02", MCC: "631", Carrier: "Unitel", CountryISO: "AO", CountryCode: "244"},
},
"PF": {
{MNC: "15", MCC: "547", Carrier: "Pacific Mobile Telecom (PMT)", CountryISO: "PF", CountryCode: "689"},
{MNC: "20", MCC: "547", Carrier: "Vini/Tikiphone", CountryISO: "PF", CountryCode: "689"},
},
"GW": {
{MNC: "999", MCC: "632", Carrier: "Fix Line", CountryISO: "GW", CountryCode: "245"},
{MNC: "01", MCC: "632", Carrier: "GuineTel", CountryISO: "GW", CountryCode: "245"},
{MNC: "03", MCC: "632", Carrier: "Orange", CountryISO: "GW", CountryCode: "245"},
{MNC: "02", MCC: "632", Carrier: "SpaceTel", CountryISO: "GW", CountryCode: "245"},
},
"RO": {
{MNC: "03", MCC: "226", Carrier: "Telekom Romania", CountryISO: "RO", CountryCode: "40"},
{MNC: "11", MCC: "226", Carrier: "Enigma Systems", CountryISO: "RO", CountryCode: "40"},
{MNC: "16", MCC: "226", Carrier: "Lycamobile", CountryISO: "RO", CountryCode: "40"},
{MNC: "10", MCC: "226", Carrier: "Orange", CountryISO: "RO", CountryCode: "40"},
{MNC: "05", MCC: "226", Carrier: "RCS&RDS Digi Mobile", CountryISO: "RO", CountryCode: "40"},
{MNC: "02", MCC: "226", Carrier: "Romtelecom SA", CountryISO: "RO", CountryCode: "40"},
{MNC: "06", MCC: "226", Carrier: "Telekom Romania", CountryISO: "RO", CountryCode: "40"},
{MNC: "01", MCC: "226", Carrier: "Vodafone", CountryISO: "RO", CountryCode: "40"},
{MNC: "04", MCC: "226", Carrier: "Telekom Romania", CountryISO: "RO", CountryCode: "40"},
},
"IN": {
{MNC: "33", MCC: "404", Carrier: "Aircel", CountryISO: "IN", CountryCode: "91"},
{MNC: "29", MCC: "404", Carrier: "Aircel", CountryISO: "IN", CountryCode: "91"},
{MNC: "28", MCC: "404", Carrier: "Aircel", CountryISO: "IN", CountryCode: "91"},
{MNC: "25", MCC: "404", Carrier: "Aircel", CountryISO: "IN", CountryCode: "91"},
{MNC: "17", MCC: "404", Carrier: "Aircel", CountryISO: "IN", CountryCode: "91"},
{MNC: "42", MCC: "404", Carrier: "Aircel", CountryISO: "IN", CountryCode: "91"},
{MNC: "01", MCC: "404", Carrier: "Aircel Digilink India", CountryISO: "IN", CountryCode: "91"},
{MNC: "15", MCC: "404", Carrier: "Aircel Digilink India", CountryISO: "IN", CountryCode: "91"},
{MNC: "60", MCC: "404", Carrier: "Aircel Digilink India", CountryISO: "IN", CountryCode: "91"},
{MNC: "53", MCC: "405", Carrier: "AirTel", CountryISO: "IN", CountryCode: "91"},
{MNC: "86", MCC: "404", Carrier: "Barakhamba Sales & Serv.", CountryISO: "IN", CountryCode: "91"},
{MNC: "13", MCC: "404", Carrier: "Barakhamba Sales & Serv.", CountryISO: "IN", CountryCode: "91"},
{MNC: "73", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "34", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "66", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "55", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "72", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "77", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "64", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "54", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "71", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "76", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "53", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "62", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "59", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "75", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "51", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "58", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "81", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "74", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "38", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "57", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "80", MCC: "404", Carrier: "BSNL", CountryISO: "IN", CountryCode: "91"},
{MNC: "10", MCC: "404", Carrier: "Bharti Airtel Limited (Delhi)", CountryISO: "IN", CountryCode: "91"},
{MNC: "045", MCC: "404", Carrier: "Bharti Airtel Limited (Karnataka) (India)", CountryISO: "IN", CountryCode: "91"},
{MNC: "79", MCC: "404", Carrier: "CellOne A&N", CountryISO: "IN", CountryCode: "91"},
{MNC: "82", MCC: "404", Carrier: "Escorts Telecom Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "89", MCC: "404", Carrier: "Escorts Telecom Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "88", MCC: "404", Carrier: "Escorts Telecom Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "87", MCC: "404", Carrier: "Escorts Telecom Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "56", MCC: "404", Carrier: "Escotel Mobile Communications", CountryISO: "IN", CountryCode: "91"},
{MNC: "12", MCC: "404", Carrier: "Escotel Mobile Communications", CountryISO: "IN", CountryCode: "91"},
{MNC: "19", MCC: "404", Carrier: "Escotel Mobile Communications", CountryISO: "IN", CountryCode: "91"},
{MNC: "05", MCC: "405", Carrier: "Fascel Limited", CountryISO: "IN", CountryCode: "91"},
{MNC: "05", MCC: "404", Carrier: "Fascel", CountryISO: "IN", CountryCode: "91"},
{MNC: "998", MCC: "404", Carrier: "Fix Line", CountryISO: "IN", CountryCode: "91"},
{MNC: "70", MCC: "404", Carrier: "Hexacom India", CountryISO: "IN", CountryCode: "91"},
{MNC: "16", MCC: "404", Carrier: "Hexcom India", CountryISO: "IN", CountryCode: "91"},
{MNC: "07", MCC: "404", Carrier: "Idea Cellular Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "04", MCC: "404", Carrier: "Idea Cellular Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "24", MCC: "404", Carrier: "Idea Cellular Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "22", MCC: "404", Carrier: "Idea Cellular Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "78", MCC: "404", Carrier: "Idea Cellular Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "69", MCC: "404", Carrier: "Mahanagar Telephone Nigam", CountryISO: "IN", CountryCode: "91"},
{MNC: "68", MCC: "404", Carrier: "Mahanagar Telephone Nigam", CountryISO: "IN", CountryCode: "91"},
{MNC: "83", MCC: "404", Carrier: "Reliable Internet Services", CountryISO: "IN", CountryCode: "91"},
{MNC: "67", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "18", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "87", MCC: "405", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "85", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "09", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "36", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "52", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "50", MCC: "404", Carrier: "Reliance Telecom Private", CountryISO: "IN", CountryCode: "91"},
{MNC: "41", MCC: "404", Carrier: "RPG Cellular", CountryISO: "IN", CountryCode: "91"},
{MNC: "14", MCC: "404", Carrier: "Spice", CountryISO: "IN", CountryCode: "91"},
{MNC: "44", MCC: "404", Carrier: "Spice", CountryISO: "IN", CountryCode: "91"},
{MNC: "11", MCC: "404", Carrier: "Sterling Cellular Ltd.", CountryISO: "IN", CountryCode: "91"},
{MNC: "034", MCC: "405", Carrier: "TATA / Karnataka", CountryISO: "IN", CountryCode: "91"},
{MNC: "30", MCC: "404", Carrier: "Usha Martin Telecom", CountryISO: "IN", CountryCode: "91"},
{MNC: "999", MCC: "404", Carrier: "Various Networks", CountryISO: "IN", CountryCode: "91"},
{MNC: "27", MCC: "404", Carrier: "Unknown", CountryISO: "IN", CountryCode: "91"},
{MNC: "43", MCC: "404", Carrier: "Vodafone/Essar/Hutch", CountryISO: "IN", CountryCode: "91"},
{MNC: "20", MCC: "404", Carrier: "Unknown", CountryISO: "IN", CountryCode: "91"},
},
"LK": {
{MNC: "05", MCC: "413", Carrier: "Airtel", CountryISO: "LK", CountryCode: "94"},
{MNC: "03", MCC: "413", Carrier: "Etisalat/Tigo", CountryISO: "LK", CountryCode: "94"},
{MNC: "08", MCC: "413", Carrier: "H3G Hutchison", CountryISO: "LK", CountryCode: "94"},
{MNC: "01", MCC: "413", Carrier: "Mobitel Ltd.", CountryISO: "LK", CountryCode: "94"},
{MNC: "02", MCC: "413", Carrier: "MTN/Dialog", CountryISO: "LK", CountryCode: "94"},
},
"TD": {
{MNC: "04", MCC: "622", Carrier: "Salam/Sotel", CountryISO: "TD", CountryCode: "235"},
{MNC: "02", MCC: "622", Carrier: "Tchad Mobile", CountryISO: "TD", CountryCode: "235"},
{MNC: "03", MCC: "622", Carrier: "Tigo/Milicom/Tchad Mobile", CountryISO: "TD", CountryCode: "235"},
{MNC: "01", MCC: "622", Carrier: "Airtel/ZAIN/Celtel", CountryISO: "TD", CountryCode: "235"},
},
"ER": {
{MNC: "01", MCC: "657", Carrier: "Eritel", CountryISO: "ER", CountryCode: "291"},
},
"FR": {
{MNC: "27", MCC: "208", Carrier: "AFONE SA", CountryISO: "FR", CountryCode: "33"},
{MNC: "92", MCC: "208", Carrier: "Association Plate-forme Telecom", CountryISO: "FR", CountryCode: "33"},
{MNC: "28", MCC: "208", Carrier: "Astrium", CountryISO: "FR", CountryCode: "33"},
{MNC: "88", MCC: "208", Carrier: "Bouygues Telecom", CountryISO: "FR", CountryCode: "33"},
{MNC: "21", MCC: "208", Carrier: "Bouygues Telecom", CountryISO: "FR", CountryCode: "33"},
{MNC: "20", MCC: "208", Carrier: "Bouygues Telecom", CountryISO: "FR", CountryCode: "33"},
{MNC: "999", MCC: "208", Carrier: "Fix Line", CountryISO: "FR", CountryCode: "33"},
{MNC: "14", MCC: "208", Carrier: "Lliad/FREE Mobile", CountryISO: "FR", CountryCode: "33"},
{MNC: "07", MCC: "208", Carrier: "GlobalStar", CountryISO: "FR", CountryCode: "33"},
{MNC: "06", MCC: "208", Carrier: "GlobalStar", CountryISO: "FR", CountryCode: "33"},
{MNC: "05", MCC: "208", Carrier: "GlobalStar", CountryISO: "FR", CountryCode: "33"},
{MNC: "29", MCC: "208", Carrier: "Orange", CountryISO: "FR", CountryCode: "33"},
{MNC: "17", MCC: "208", Carrier: "Legos - Local Exchange Global Operation Services SA", CountryISO: "FR", CountryCode: "33"},
{MNC: "16", MCC: "208", Carrier: "Lliad/FREE Mobile", CountryISO: "FR", CountryCode: "33"},
{MNC: "15", MCC: "208", Carrier: "Lliad/FREE Mobile", CountryISO: "FR", CountryCode: "33"},
{MNC: "25", MCC: "208", Carrier: "Lycamobile SARL", CountryISO: "FR", CountryCode: "33"},
{MNC: "24", MCC: "208", Carrier: "MobiquiThings", CountryISO: "FR", CountryCode: "33"},
{MNC: "03", MCC: "208", Carrier: "MobiquiThings", CountryISO: "FR", CountryCode: "33"},
{MNC: "31", MCC: "208", Carrier: "Mundio Mobile (France) Ltd", CountryISO: "FR", CountryCode: "33"},
{MNC: "26", MCC: "208", Carrier: "NRJ", CountryISO: "FR", CountryCode: "33"},
{MNC: "23", MCC: "208", Carrier: "Virgin Mobile/Omer", CountryISO: "FR", CountryCode: "33"},
{MNC: "89", MCC: "208", Carrier: "Virgin Mobile/Omer", CountryISO: "FR", CountryCode: "33"},
{MNC: "91", MCC: "208", Carrier: "Orange", CountryISO: "FR", CountryCode: "33"},
{MNC: "02", MCC: "208", Carrier: "Orange", CountryISO: "FR", CountryCode: "33"},
{MNC: "01", MCC: "208", Carrier: "Orange", CountryISO: "FR", CountryCode: "33"},
{MNC: "11", MCC: "208", Carrier: "S.F.R.", CountryISO: "FR", CountryCode: "33"},
{MNC: "10", MCC: "208", Carrier: "S.F.R.", CountryISO: "FR", CountryCode: "33"},
{MNC: "13", MCC: "208", Carrier: "S.F.R.", CountryISO: "FR", CountryCode: "33"},
{MNC: "09", MCC: "208", Carrier: "S.F.R.", CountryISO: "FR", CountryCode: "33"},
{MNC: "04", MCC: "208", Carrier: "SISTEER", CountryISO: "FR", CountryCode: "33"},
{MNC: "00", MCC: "208", Carrier: "Tel/Tel", CountryISO: "FR", CountryCode: "33"},
{MNC: "22", MCC: "208", Carrier: "Transatel SA", CountryISO: "FR", CountryCode: "33"},
},
"SD": {
{MNC: "00", MCC: "634", Carrier: "Canar Telecom", CountryISO: "SD", CountryCode: "249"},
{MNC: "999", MCC: "634", Carrier: "Fix Line", CountryISO: "SD", CountryCode: "249"},
{MNC: "02", MCC: "634", Carrier: "MTN", CountryISO: "SD", CountryCode: "249"},
{MNC: "22", MCC: "634", Carrier: "MTN", CountryISO: "SD", CountryCode: "249"},
{MNC: "07", MCC: "634", Carrier: "Sudani One", CountryISO: "SD", CountryCode: "249"},
{MNC: "15", MCC: "634", Carrier: "Sudani One", CountryISO: "SD", CountryCode: "249"},
{MNC: "05", MCC: "634", Carrier: "Canar Telecom", CountryISO: "SD", CountryCode: "249"},
{MNC: "08", MCC: "634", Carrier: "Canar Telecom", CountryISO: "SD", CountryCode: "249"},
{MNC: "06", MCC: "634", Carrier: "ZAIN/Mobitel", CountryISO: "SD", CountryCode: "249"},
{MNC: "01", MCC: "634", Carrier: "ZAIN/Mobitel", CountryISO: "SD", CountryCode: "249"},
},
"TV": {
{MNC: "01", MCC: "553", Carrier: "Tuvalu Telecommunication Corporation (TTC)", CountryISO: "TV", CountryCode: ""},
},
"BD": {
{MNC: "02", MCC: "470", Carrier: "Robi/Aktel", CountryISO: "BD", CountryCode: "880"},
{MNC: "06", MCC: "470", Carrier: "Citycell", CountryISO: "BD", CountryCode: "880"},
{MNC: "05", MCC: "470", Carrier: "Citycell", CountryISO: "BD", CountryCode: "880"},
{MNC: "01", MCC: "470", Carrier: "GrameenPhone", CountryISO: "BD", CountryCode: "880"},
{MNC: "03", MCC: "470", Carrier: "Orascom/Banglalink", CountryISO: "BD", CountryCode: "880"},
{MNC: "04", MCC: "470", Carrier: "TeleTalk", CountryISO: "BD", CountryCode: "880"},
{MNC: "07", MCC: "470", Carrier: "Airtel/Warid", CountryISO: "BD", CountryCode: "880"},
},
"CG": {
{MNC: "01", MCC: "629", Carrier: "Airtel SA", CountryISO: "CG", CountryCode: "242"},
{MNC: "02", MCC: "629", Carrier: "Azur SA (ETC)", CountryISO: "CG", CountryCode: "242"},
{MNC: "10", MCC: "629", Carrier: "MTN/Libertis", CountryISO: "CG", CountryCode: "242"},
{MNC: "07", MCC: "629", Carrier: "Warid", CountryISO: "CG", CountryCode: "242"},
},
"CR": {
{MNC: "03", MCC: "712", Carrier: "Claro", CountryISO: "CR", CountryCode: "506"},
{MNC: "999", MCC: "712", Carrier: "Fix Line", CountryISO: "CR", CountryCode: "506"},
{MNC: "999", MCC: "712", Carrier: "Fix Line", CountryISO: "CR", CountryCode: "506"},
{MNC: "02", MCC: "712", Carrier: "ICE", CountryISO: "CR", CountryCode: "506"},
{MNC: "01", MCC: "712", Carrier: "ICE", CountryISO: "CR", CountryCode: "506"},
{MNC: "04", MCC: "712", Carrier: "Movistar", CountryISO: "CR", CountryCode: "506"},
{MNC: "20", MCC: "712", Carrier: "Virtualis", CountryISO: "CR", CountryCode: "506"},
},
"DK": {
{MNC: "05", MCC: "238", Carrier: "ApS KBUS", CountryISO: "DK", CountryCode: "45"},
{MNC: "23", MCC: "238", Carrier: "Banedanmark", CountryISO: "DK", CountryCode: "45"},
{MNC: "28", MCC: "238", Carrier: "CoolTEL ApS", CountryISO: "DK", CountryCode: "45"},
{MNC: "999", MCC: "238", Carrier: "Fix Line", CountryISO: "DK", CountryCode: "45"},
{MNC: "06", MCC: "238", Carrier: "H3G", CountryISO: "DK", CountryCode: "45"},
{MNC: "12", MCC: "238", Carrier: "Lycamobile Ltd", CountryISO: "DK", CountryCode: "45"},
{MNC: "03", MCC: "238", Carrier: "Mach Connectivity ApS", CountryISO: "DK", CountryCode: "45"},
{MNC: "07", MCC: "238", Carrier: "Mundio Mobile", CountryISO: "DK", CountryCode: "45"},
{MNC: "04", MCC: "238", Carrier: "NextGen Mobile Ltd (CardBoardFish)", CountryISO: "DK", CountryCode: "45"},
{MNC: "10", MCC: "238", Carrier: "TDC Denmark", CountryISO: "DK", CountryCode: "45"},
{MNC: "01", MCC: "238", Carrier: "TDC Denmark", CountryISO: "DK", CountryCode: "45"},
{MNC: "77", MCC: "238", Carrier: "Telenor/Sonofon", CountryISO: "DK", CountryCode: "45"},
{MNC: "02", MCC: "238", Carrier: "Telenor/Sonofon", CountryISO: "DK", CountryCode: "45"},
{MNC: "20", MCC: "238", Carrier: "Telia", CountryISO: "DK", CountryCode: "45"},
{MNC: "30", MCC: "238", Carrier: "Telia", CountryISO: "DK", CountryCode: "45"},
},
"GP": {
{MNC: "08", MCC: "340", Carrier: "Dauphin Telecom SU (Guadeloupe Telecom)", CountryISO: "GP", CountryCode: "590"},
{MNC: "10", MCC: "340", Carrier: "", CountryISO: "GP", CountryCode: "590"},
},
"MX": {
{MNC: "50", MCC: "334", Carrier: "AT&T/IUSACell", CountryISO: "MX", CountryCode: "52"},
{MNC: "050", MCC: "334", Carrier: "AT&T/IUSACell", CountryISO: "MX", CountryCode: "52"},
{MNC: "040", MCC: "334", Carrier: "AT&T/IUSACell", CountryISO: "MX", CountryCode: "52"},
{MNC: "05", MCC: "334", Carrier: "AT&T/IUSACell", CountryISO: "MX", CountryCode: "52"},
{MNC: "04", MCC: "334", Carrier: "AT&T/IUSACell", CountryISO: "MX", CountryCode: "52"},
{MNC: "03", MCC: "334", Carrier: "Movistar/Pegaso", CountryISO: "MX", CountryCode: "52"},
{MNC: "030", MCC: "334", Carrier: "Movistar/Pegaso", CountryISO: "MX", CountryCode: "52"},
{MNC: "01", MCC: "334", Carrier: "NEXTEL", CountryISO: "MX", CountryCode: "52"},
{MNC: "09", MCC: "334", Carrier: "NEXTEL", CountryISO: "MX", CountryCode: "52"},
{MNC: "090", MCC: "334", Carrier: "NEXTEL", CountryISO: "MX", CountryCode: "52"},
{MNC: "010", MCC: "334", Carrier: "NEXTEL", CountryISO: "MX", CountryCode: "52"},
{MNC: "080", MCC: "334", Carrier: "Operadora Unefon SA de CV", CountryISO: "MX", CountryCode: "52"},
{MNC: "070", MCC: "334", Carrier: "Operadora Unefon SA de CV", CountryISO: "MX", CountryCode: "52"},
{MNC: "060", MCC: "334", Carrier: "SAI PCS", CountryISO: "MX", CountryCode: "52"},
{MNC: "02", MCC: "334", Carrier: "TelCel/America Movil", CountryISO: "MX", CountryCode: "52"},
{MNC: "020", MCC: "334", Carrier: "TelCel/America Movil", CountryISO: "MX", CountryCode: "52"},
},
"SZ": {
{MNC: "02", MCC: "653", Carrier: "Swazi Mobile", CountryISO: "SZ", CountryCode: "268"},
{MNC: "10", MCC: "653", Carrier: "Swazi MTN", CountryISO: "SZ", CountryCode: "268"},
{MNC: "01", MCC: "653", Carrier: "SwaziTelecom", CountryISO: "SZ", CountryCode: "268"},
},
"BW": {
{MNC: "04", MCC: "652", Carrier: "BeMOBILE", CountryISO: "BW", CountryCode: "267"},
{MNC: "01", MCC: "652", Carrier: "Mascom Wireless (Pty) Ltd.", CountryISO: "BW", CountryCode: "267"},
{MNC: "02", MCC: "652", Carrier: "Orange", CountryISO: "BW", CountryCode: "267"},
},
"KY": {
{MNC: "050", MCC: "346", Carrier: "Digicel Cayman Ltd", CountryISO: "KY", CountryCode: "1345"},
{MNC: "006", MCC: "346", Carrier: "Digicel Ltd.", CountryISO: "KY", CountryCode: "1345"},
{MNC: "140", MCC: "346", Carrier: "LIME / Cable & Wirel.", CountryISO: "KY", CountryCode: "1345"},
},
"GI": {
{MNC: "06", MCC: "266", Carrier: "CTS Mobile", CountryISO: "GI", CountryCode: "350"},
{MNC: "09", MCC: "266", Carrier: "eazi telecom", CountryISO: "GI", CountryCode: "350"},
{MNC: "999", MCC: "266", Carrier: "Fix Line", CountryISO: "GI", CountryCode: "350"},
{MNC: "01", MCC: "266", Carrier: "Gibtel GSM", CountryISO: "GI", CountryCode: "350"},
},
"JM": {
{MNC: "020", MCC: "338", Carrier: "Cable & Wireless", CountryISO: "JM", CountryCode: "1876"},
{MNC: "110", MCC: "338", Carrier: "Cable & Wireless", CountryISO: "JM", CountryCode: "1876"},
{MNC: "180", MCC: "338", Carrier: "Cable & Wireless", CountryISO: "JM", CountryCode: "1876"},
{MNC: "050", MCC: "338", Carrier: "DIGICEL/Mossel", CountryISO: "JM", CountryCode: "1876"},
},
"RS": {
{MNC: "03", MCC: "220", Carrier: "MTS/Telekom Srbija", CountryISO: "RS", CountryCode: "381"},
{MNC: "02", MCC: "220", Carrier: "Telenor/Mobtel", CountryISO: "RS", CountryCode: "381"},
{MNC: "01", MCC: "220", Carrier: "Telenor/Mobtel", CountryISO: "RS", CountryCode: "381"},
{MNC: "05", MCC: "220", Carrier: "VIP Mobile", CountryISO: "RS", CountryCode: "381"},
},
"TH": {
{MNC: "20", MCC: "520", Carrier: "ACeS Thailand - ACeS Regional Services Co Ltd", CountryISO: "TH", CountryCode: "66"},
{MNC: "15", MCC: "520", Carrier: "ACT Mobile", CountryISO: "TH", CountryCode: "66"},
{MNC: "03", MCC: "520", Carrier: "AIS/Advanced Info Service", CountryISO: "TH", CountryCode: "66"},
{MNC: "01", MCC: "520", Carrier: "AIS/Advanced Info Service", CountryISO: "TH", CountryCode: "66"},
{MNC: "23", MCC: "520", Carrier: "Digital Phone Co.", CountryISO: "TH", CountryCode: "66"},
{MNC: "999", MCC: "520", Carrier: "Fix Line", CountryISO: "TH", CountryCode: "66"},
{MNC: "00", MCC: "520", Carrier: "Hutch/CAT CDMA", CountryISO: "TH", CountryCode: "66"},
{MNC: "05", MCC: "520", Carrier: "Total Access (DTAC)", CountryISO: "TH", CountryCode: "66"},
{MNC: "18", MCC: "520", Carrier: "Total Access (DTAC)", CountryISO: "TH", CountryCode: "66"},
{MNC: "99", MCC: "520", Carrier: "True Move/Orange", CountryISO: "TH", CountryCode: "66"},
{MNC: "04", MCC: "520", Carrier: "True Move/Orange", CountryISO: "TH", CountryCode: "66"},
},
"CM": {
{MNC: "01", MCC: "624", Carrier: "MTN", CountryISO: "CM", CountryCode: "237"},
{MNC: "04", MCC: "624", Carrier: "Nextel", CountryISO: "CM", CountryCode: "237"},
{MNC: "02", MCC: "624", Carrier: "Orange", CountryISO: "CM", CountryCode: "237"},
},
"LR": {
{MNC: "04", MCC: "618", Carrier: "Comium BVI", CountryISO: "LR", CountryCode: "231"},
{MNC: "02", MCC: "618", Carrier: "Libercell", CountryISO: "LR", CountryCode: "231"},
{MNC: "20", MCC: "618", Carrier: "LibTelco", CountryISO: "LR", CountryCode: "231"},
{MNC: "01", MCC: "618", Carrier: "Lonestar", CountryISO: "LR", CountryCode: "231"},
{MNC: "07", MCC: "618", Carrier: "Orange", CountryISO: "LR", CountryCode: "231"},
},
"TT": {
{MNC: "12", MCC: "374", Carrier: "Bmobile/TSTT", CountryISO: "TT", CountryCode: "1868"},
{MNC: "120", MCC: "374", Carrier: "Bmobile/TSTT", CountryISO: "TT", CountryCode: "1868"},
{MNC: "130", MCC: "374", Carrier: "Digicel", CountryISO: "TT", CountryCode: "1868"},
{MNC: "140", MCC: "374", Carrier: "LaqTel Ltd.", CountryISO: "TT", CountryCode: "1868"},
},
"PL": {
{MNC: "17", MCC: "260", Carrier: "Aero2 SP.", CountryISO: "PL", CountryCode: "48"},
{MNC: "18", MCC: "260", Carrier: "AMD Telecom.", CountryISO: "PL", CountryCode: "48"},
{MNC: "38", MCC: "260", Carrier: "CallFreedom Sp. z o.o.", CountryISO: "PL", CountryCode: "48"},
{MNC: "12", MCC: "260", Carrier: "Cyfrowy POLSAT S.A.", CountryISO: "PL", CountryCode: "48"},
{MNC: "08", MCC: "260", Carrier: "e-Telko", CountryISO: "PL", CountryCode: "48"},
{MNC: "999", MCC: "260", Carrier: "Fix Line", CountryISO: "PL", CountryCode: "48"},
{MNC: "09", MCC: "260", Carrier: "Lycamobile", CountryISO: "PL", CountryCode: "48"},
{MNC: "16", MCC: "260", Carrier: "Mobyland", CountryISO: "PL", CountryCode: "48"},
{MNC: "36", MCC: "260", Carrier: "Mundio Mobile Sp. z o.o.", CountryISO: "PL", CountryCode: "48"},
{MNC: "07", MCC: "260", Carrier: "Play/P4", CountryISO: "PL", CountryCode: "48"},
{MNC: "11", MCC: "260", Carrier: "NORDISK Polska", CountryISO: "PL", CountryCode: "48"},
{MNC: "03", MCC: "260", Carrier: "Orange/IDEA/Centertel", CountryISO: "PL", CountryCode: "48"},
{MNC: "05", MCC: "260", Carrier: "Orange/IDEA/Centertel", CountryISO: "PL", CountryCode: "48"},
{MNC: "35", MCC: "260", Carrier: "PKP Polskie Linie Kolejowe S.A.", CountryISO: "PL", CountryCode: "48"},
{MNC: "98", MCC: "260", Carrier: "Play/P4", CountryISO: "PL", CountryCode: "48"},
{MNC: "06", MCC: "260", Carrier: "Play/P4", CountryISO: "PL", CountryCode: "48"},
{MNC: "01", MCC: "260", Carrier: "Polkomtel/Plus", CountryISO: "PL", CountryCode: "48"},
{MNC: "13", MCC: "260", Carrier: "Sferia", CountryISO: "PL", CountryCode: "48"},
{MNC: "10", MCC: "260", Carrier: "Sferia", CountryISO: "PL", CountryCode: "48"},
{MNC: "14", MCC: "260", Carrier: "Sferia", CountryISO: "PL", CountryCode: "48"},
{MNC: "34", MCC: "260", Carrier: "T-Mobile/ERA", CountryISO: "PL", CountryCode: "48"},
{MNC: "02", MCC: "260", Carrier: "T-Mobile/ERA", CountryISO: "PL", CountryCode: "48"},
{MNC: "04", MCC: "260", Carrier: "Aero2", CountryISO: "PL", CountryCode: "48"},
{MNC: "15", MCC: "260", Carrier: "Aero2", CountryISO: "PL", CountryCode: "48"},
{MNC: "45", MCC: "260", Carrier: "Virgin Mobile", CountryISO: "PL", CountryCode: "48"},
},
"QA": {
{MNC: "01", MCC: "427", Carrier: "Ooredoo/Qtel", CountryISO: "QA", CountryCode: "974"},
{MNC: "02", MCC: "427", Carrier: "Vodafone", CountryISO: "QA", CountryCode: "974"},
},
"AT": {
{MNC: "09", MCC: "232", Carrier: "A1 MobilKom", CountryISO: "AT", CountryCode: "43"},
{MNC: "01", MCC: "232", Carrier: "A1 MobilKom", CountryISO: "AT", CountryCode: "43"},
{MNC: "02", MCC: "232", Carrier: "A1 MobilKom", CountryISO: "AT", CountryCode: "43"},
{MNC: "11", MCC: "232", Carrier: "A1 MobilKom", CountryISO: "AT", CountryCode: "43"},
{MNC: "15", MCC: "232", Carrier: "T-Mobile/Telering", CountryISO: "AT", CountryCode: "43"},
{MNC: "999", MCC: "232", Carrier: "Fix Line", CountryISO: "AT", CountryCode: "43"},
{MNC: "10", MCC: "232", Carrier: "H3G", CountryISO: "AT", CountryCode: "43"},
{MNC: "14", MCC: "232", Carrier: "H3G", CountryISO: "AT", CountryCode: "43"},
{MNC: "20", MCC: "232", Carrier: "Mtel", CountryISO: "AT", CountryCode: "43"},
{MNC: "06", MCC: "232", Carrier: "3/Orange/One Connect", CountryISO: "AT", CountryCode: "43"},
{MNC: "12", MCC: "232", Carrier: "3/Orange/One Connect", CountryISO: "AT", CountryCode: "43"},
{MNC: "05", MCC: "232", Carrier: "3/Orange/One Connect", CountryISO: "AT", CountryCode: "43"},
{MNC: "17", MCC: "232", Carrier: "Spusu/Mass Response", CountryISO: "AT", CountryCode: "43"},
{MNC: "07", MCC: "232", Carrier: "T-Mobile/Telering", CountryISO: "AT", CountryCode: "43"},
{MNC: "04", MCC: "232", Carrier: "T-Mobile/Telering", CountryISO: "AT", CountryCode: "43"},
{MNC: "03", MCC: "232", Carrier: "T-Mobile/Telering", CountryISO: "AT", CountryCode: "43"},
{MNC: "13", MCC: "232", Carrier: "T-Mobile/Telering", CountryISO: "AT", CountryCode: "43"},
{MNC: "19", MCC: "232", Carrier: "Tele2", CountryISO: "AT", CountryCode: "43"},
{MNC: "08", MCC: "232", Carrier: "A1 MobilKom", CountryISO: "AT", CountryCode: "43"},
},
"BQ": {
{MNC: "999", MCC: "362", Carrier: "Fix Line", CountryISO: "BQ", CountryCode: "599"},
},
"MC": {
{MNC: "10", MCC: "212", Carrier: "Monaco Telecom", CountryISO: "MC", CountryCode: "377"},
{MNC: "01", MCC: "212", Carrier: "Monaco Telecom", CountryISO: "MC", CountryCode: "377"},
},
"MU": {
{MNC: "10", MCC: "617", Carrier: "Emtel Ltd", CountryISO: "MU", CountryCode: "230"},
{MNC: "02", MCC: "617", Carrier: "CHILI/MTML", CountryISO: "MU", CountryCode: "230"},
{MNC: "03", MCC: "617", Carrier: "CHILI/MTML", CountryISO: "MU", CountryCode: "230"},
{MNC: "01", MCC: "617", Carrier: "Orange/Cellplus", CountryISO: "MU", CountryCode: "230"},
},
"PS": {
{MNC: "05", MCC: "425", Carrier: "Jawwal", CountryISO: "PS", CountryCode: "970"},
{MNC: "06", MCC: "425", Carrier: "Wataniya Mobile", CountryISO: "PS", CountryCode: "970"},
},
"SI": {
{MNC: "999", MCC: "293", Carrier: "Fix Line", CountryISO: "SI", CountryCode: "386"},
{MNC: "41", MCC: "293", Carrier: "Mobitel", CountryISO: "SI", CountryCode: "386"},
{MNC: "40", MCC: "293", Carrier: "SI.Mobil", CountryISO: "SI", CountryCode: "386"},
{MNC: "10", MCC: "293", Carrier: "Slovenske zeleznice d.o.o.", CountryISO: "SI", CountryCode: "386"},
{MNC: "64", MCC: "293", Carrier: "T-2 d.o.o.", CountryISO: "SI", CountryCode: "386"},
{MNC: "70", MCC: "293", Carrier: "Telemach/TusMobil/VEGA", CountryISO: "SI", CountryCode: "386"},
},
"ME": {
{MNC: "02", MCC: "297", Carrier: "Monet/T-mobile", CountryISO: "ME", CountryCode: "382"},
{MNC: "03", MCC: "297", Carrier: "Mtel", CountryISO: "ME", CountryCode: "382"},