rippersnapper 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24f190bfb5bf359acf6aeb54b93bea6d2b0b83d9
4
- data.tar.gz: ced512e2aeffb216c20b59238f9199708a222f85
3
+ metadata.gz: 375d36e17fdc3427684d78503a5259bff5c9c8ca
4
+ data.tar.gz: 3bfc53363e6842b565ea9d5c1827419195c3cc1f
5
5
  SHA512:
6
- metadata.gz: 78a3eaabe76dbae70d776ad913aef615fa0098f28223ac1b70026391316c64ee9efbb4b531ef99eb8f19578c7113f36bc9cac2c7f1cac857ef5eb5a233f6c1a0
7
- data.tar.gz: edfd42c95b4d6d208a9a2b2384734267365bfe2bba1d8842117c7d04c2684eaf6bc89d21fce3423e0708bc0c666f53d08ac4ae3bd7a13e88481667cd32f3c578
6
+ metadata.gz: 7bda7e69321ab8d4a584f52f22b9c5c63bc1b7b965e792233939bfac6336ff8b51929986f6c1aa0f4be665fc1c6d40d9e7953ec6a8a1b6100e1d383b3f99fe48
7
+ data.tar.gz: 0c22b9a03958c690749029435c3bf7a60c2215d86fb2aa1c302bed87e0a051bb4e5413799f1a606e7f1a8d55eafea2b16fe8fb36d7780d700fd3655a3872bff2
@@ -1,10 +1,15 @@
1
1
  module Rippersnapper
2
2
  class DomainParser
3
3
 
4
+ # @params url [String] Url to be parsed
5
+ # @return [self]
4
6
  def initialize url
5
7
  @url = url
6
8
  end
7
9
 
10
+ # @return [String] The suffix for the url taken in initialize
11
+ # @example
12
+ # Rippersnapper::DomainParser.new("www.google.com").suffix #=> "com"
8
13
  def suffix
9
14
  @suffix ||= begin
10
15
  found = nil
@@ -16,6 +21,9 @@ module Rippersnapper
16
21
  end
17
22
  end
18
23
 
24
+ # @return [String] The domain for the url taken in initialize
25
+ # @example
26
+ # Rippersnapper::DomainParser.new("www.google.com").domain #=> "google"
19
27
  def domain
20
28
  @domain ||= begin
21
29
  remaining = url_parts - suffix_parts
@@ -23,6 +31,9 @@ module Rippersnapper
23
31
  end
24
32
  end
25
33
 
34
+ # @return [String] The subdomain for the url taken in initialize
35
+ # @example
36
+ # Rippersnapper::DomainParser.new("www.google.com").subdomain #=> "www"
26
37
  def subdomain
27
38
  @subdomain ||= begin
28
39
  remaining = url_parts - [domain] - suffix_parts
@@ -175,20 +175,20 @@ it.ao
175
175
  // aq : http://en.wikipedia.org/wiki/.aq
176
176
  aq
177
177
 
178
- // ar : http://en.wikipedia.org/wiki/.ar
179
- *.ar
180
- !congresodelalengua3.ar
181
- !educ.ar
182
- !gobiernoelectronico.ar
183
- !mecon.ar
184
- !nacion.ar
185
- !nic.ar
186
- !promocion.ar
187
- !retina.ar
188
- !uba.ar
178
+ // ar : https://nic.ar/normativa-vigente.xhtml
179
+ ar
180
+ com.ar
181
+ edu.ar
182
+ gob.ar
183
+ int.ar
184
+ mil.ar
185
+ net.ar
186
+ org.ar
187
+ tur.ar
189
188
 
190
189
  // arpa : http://en.wikipedia.org/wiki/.arpa
191
190
  // Confirmed by registry <iana-questions@icann.org> 2008-06-18
191
+ arpa
192
192
  e164.arpa
193
193
  in-addr.arpa
194
194
  ip6.arpa
@@ -213,6 +213,7 @@ or.at
213
213
 
214
214
  // au : http://en.wikipedia.org/wiki/.au
215
215
  // http://www.auda.org.au/
216
+ au
216
217
  // 2LDs
217
218
  com.au
218
219
  net.au
@@ -221,6 +222,7 @@ edu.au
221
222
  gov.au
222
223
  asn.au
223
224
  id.au
225
+ csiro.au
224
226
  // Historic 2LDs (closed to new registration, but sites still exist)
225
227
  info.au
226
228
  conf.au
@@ -244,9 +246,8 @@ tas.edu.au
244
246
  vic.edu.au
245
247
  wa.edu.au
246
248
  act.gov.au
247
- // Removed at request of Shae.Donelan@services.nsw.gov.au, 2010-03-04
248
- // nsw.gov.au
249
- nt.gov.au
249
+ // nsw.gov.au Bug 547985 - Removed at request of <Shae.Donelan@services.nsw.gov.au>
250
+ // nt.gov.au Bug 940478 - Removed at request of Greg Connors <Greg.Connors@nt.gov.au>
250
251
  qld.gov.au
251
252
  sa.gov.au
252
253
  tas.gov.au
@@ -400,8 +401,8 @@ net.bo
400
401
  mil.bo
401
402
  tv.bo
402
403
 
403
- // br : http://registro.br/dominio/dpn.html
404
- // Updated by registry <fneves@registro.br> 2011-03-01
404
+ // br : http://registro.br/dominio/categoria.html
405
+ // Submitted by registry <fneves@registro.br> 2014-03-04
405
406
  br
406
407
  adm.br
407
408
  adv.br
@@ -446,6 +447,7 @@ lel.br
446
447
  mat.br
447
448
  med.br
448
449
  mil.br
450
+ mp.br
449
451
  mus.br
450
452
  net.br
451
453
  nom.br
@@ -491,6 +493,7 @@ org.bt
491
493
 
492
494
  // bv : No registrations at this time.
493
495
  // Submitted by registry <jarle@uninett.no> 2006-06-16
496
+ bv
494
497
 
495
498
  // bw : http://en.wikipedia.org/wiki/.bw
496
499
  // http://www.gobin.info/domainname/bw.doc
@@ -869,6 +872,7 @@ ga
869
872
 
870
873
  // gb : This registry is effectively dormant
871
874
  // Submitted by registry <Damien.Shaw@ja.net> 2008-06-12
875
+ gb
872
876
 
873
877
  // gd : http://en.wikipedia.org/wiki/.gd
874
878
  gd
@@ -886,13 +890,12 @@ pvt.ge
886
890
  // gf : http://en.wikipedia.org/wiki/.gf
887
891
  gf
888
892
 
889
- // gg : http://www.channelisles.net/applic/avextn.shtml
893
+ // gg : http://www.channelisles.net/register-domains/
894
+ // Confirmed by registry <nigel@channelisles.net> 2013-11-28
890
895
  gg
891
896
  co.gg
892
- org.gg
893
897
  net.gg
894
- sch.gg
895
- gov.gg
898
+ org.gg
896
899
 
897
900
  // gh : http://en.wikipedia.org/wiki/.gh
898
901
  // see also: http://www.nic.gh/reg_now.php
@@ -923,6 +926,7 @@ gm
923
926
 
924
927
  // gn : http://psg.com/dns/gn/gn.txt
925
928
  // Submitted by registry <randy@psg.com> 2008-06-17
929
+ gn
926
930
  ac.gn
927
931
  com.gn
928
932
  edu.gn
@@ -1084,6 +1088,7 @@ id
1084
1088
  ac.id
1085
1089
  biz.id
1086
1090
  co.id
1091
+ desa.id
1087
1092
  go.id
1088
1093
  mil.id
1089
1094
  my.id
@@ -1099,16 +1104,18 @@ gov.ie
1099
1104
  // il : http://en.wikipedia.org/wiki/.il
1100
1105
  *.il
1101
1106
 
1102
- // im : https://www.nic.im/pdfs/imfaqs.pdf
1107
+ // im : https://www.nic.im/
1108
+ // Submitted by registry <info@nic.im> 2013-11-15
1103
1109
  im
1110
+ ac.im
1104
1111
  co.im
1112
+ com.im
1105
1113
  ltd.co.im
1106
- plc.co.im
1107
1114
  net.im
1108
- gov.im
1109
1115
  org.im
1110
- nic.im
1111
- ac.im
1116
+ plc.co.im
1117
+ tt.im
1118
+ tv.im
1112
1119
 
1113
1120
  // in : http://en.wikipedia.org/wiki/.in
1114
1121
  // see also: http://www.inregistry.in/policies/
@@ -1180,294 +1187,385 @@ int.is
1180
1187
  it
1181
1188
  gov.it
1182
1189
  edu.it
1183
- // list of reserved geo-names :
1190
+ // Reserved geo-names:
1184
1191
  // http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazione-versione-6.0.pdf
1185
- // (There is also a list of reserved geo-names corresponding to Italian
1186
- // municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is
1187
- // not included here.)
1188
- agrigento.it
1192
+ // There is also a list of reserved geo-names corresponding to Italian municipalities
1193
+ // http://www.nic.it/documenti/appendice-c.pdf, but it is not included here.
1194
+ // Regions
1195
+ abr.it
1196
+ abruzzo.it
1197
+ aosta-valley.it
1198
+ aostavalley.it
1199
+ bas.it
1200
+ basilicata.it
1201
+ cal.it
1202
+ calabria.it
1203
+ cam.it
1204
+ campania.it
1205
+ emilia-romagna.it
1206
+ emiliaromagna.it
1207
+ emr.it
1208
+ friuli-v-giulia.it
1209
+ friuli-ve-giulia.it
1210
+ friuli-vegiulia.it
1211
+ friuli-venezia-giulia.it
1212
+ friuli-veneziagiulia.it
1213
+ friuli-vgiulia.it
1214
+ friuliv-giulia.it
1215
+ friulive-giulia.it
1216
+ friulivegiulia.it
1217
+ friulivenezia-giulia.it
1218
+ friuliveneziagiulia.it
1219
+ friulivgiulia.it
1220
+ fvg.it
1221
+ laz.it
1222
+ lazio.it
1223
+ lig.it
1224
+ liguria.it
1225
+ lom.it
1226
+ lombardia.it
1227
+ lombardy.it
1228
+ lucania.it
1229
+ mar.it
1230
+ marche.it
1231
+ mol.it
1232
+ molise.it
1233
+ piedmont.it
1234
+ piemonte.it
1235
+ pmn.it
1236
+ pug.it
1237
+ puglia.it
1238
+ sar.it
1239
+ sardegna.it
1240
+ sardinia.it
1241
+ sic.it
1242
+ sicilia.it
1243
+ sicily.it
1244
+ taa.it
1245
+ tos.it
1246
+ toscana.it
1247
+ trentino-a-adige.it
1248
+ trentino-aadige.it
1249
+ trentino-alto-adige.it
1250
+ trentino-altoadige.it
1251
+ trentino-s-tirol.it
1252
+ trentino-stirol.it
1253
+ trentino-sud-tirol.it
1254
+ trentino-sudtirol.it
1255
+ trentino-sued-tirol.it
1256
+ trentino-suedtirol.it
1257
+ trentinoa-adige.it
1258
+ trentinoaadige.it
1259
+ trentinoalto-adige.it
1260
+ trentinoaltoadige.it
1261
+ trentinos-tirol.it
1262
+ trentinostirol.it
1263
+ trentinosud-tirol.it
1264
+ trentinosudtirol.it
1265
+ trentinosued-tirol.it
1266
+ trentinosuedtirol.it
1267
+ tuscany.it
1268
+ umb.it
1269
+ umbria.it
1270
+ val-d-aosta.it
1271
+ val-daosta.it
1272
+ vald-aosta.it
1273
+ valdaosta.it
1274
+ valle-aosta.it
1275
+ valle-d-aosta.it
1276
+ valle-daosta.it
1277
+ valleaosta.it
1278
+ valled-aosta.it
1279
+ valledaosta.it
1280
+ vallee-aoste.it
1281
+ valleeaoste.it
1282
+ vao.it
1283
+ vda.it
1284
+ ven.it
1285
+ veneto.it
1286
+ // Provinces
1189
1287
  ag.it
1190
- alessandria.it
1288
+ agrigento.it
1191
1289
  al.it
1192
- ancona.it
1290
+ alessandria.it
1291
+ alto-adige.it
1292
+ altoadige.it
1193
1293
  an.it
1294
+ ancona.it
1295
+ andria-barletta-trani.it
1296
+ andria-trani-barletta.it
1297
+ andriabarlettatrani.it
1298
+ andriatranibarletta.it
1299
+ ao.it
1194
1300
  aosta.it
1195
1301
  aoste.it
1196
- ao.it
1197
- arezzo.it
1302
+ ap.it
1303
+ aq.it
1304
+ aquila.it
1198
1305
  ar.it
1306
+ arezzo.it
1199
1307
  ascoli-piceno.it
1200
1308
  ascolipiceno.it
1201
- ap.it
1202
1309
  asti.it
1203
1310
  at.it
1204
- avellino.it
1205
1311
  av.it
1206
- bari.it
1312
+ avellino.it
1207
1313
  ba.it
1208
- andria-barletta-trani.it
1209
- andriabarlettatrani.it
1210
- trani-barletta-andria.it
1211
- tranibarlettaandria.it
1314
+ balsan.it
1315
+ bari.it
1212
1316
  barletta-trani-andria.it
1213
1317
  barlettatraniandria.it
1214
- andria-trani-barletta.it
1215
- andriatranibarletta.it
1216
- trani-andria-barletta.it
1217
- traniandriabarletta.it
1218
- bt.it
1219
1318
  belluno.it
1220
- bl.it
1221
1319
  benevento.it
1222
- bn.it
1223
1320
  bergamo.it
1224
1321
  bg.it
1225
- biella.it
1226
1322
  bi.it
1227
- bologna.it
1323
+ biella.it
1324
+ bl.it
1325
+ bn.it
1228
1326
  bo.it
1327
+ bologna.it
1229
1328
  bolzano.it
1230
1329
  bozen.it
1231
- balsan.it
1232
- alto-adige.it
1233
- altoadige.it
1234
- suedtirol.it
1235
- bz.it
1330
+ br.it
1236
1331
  brescia.it
1237
- bs.it
1238
1332
  brindisi.it
1239
- br.it
1240
- cagliari.it
1333
+ bs.it
1334
+ bt.it
1335
+ bz.it
1241
1336
  ca.it
1337
+ cagliari.it
1242
1338
  caltanissetta.it
1243
- cl.it
1339
+ campidano-medio.it
1340
+ campidanomedio.it
1244
1341
  campobasso.it
1245
- cb.it
1246
- carboniaiglesias.it
1247
1342
  carbonia-iglesias.it
1248
- iglesias-carbonia.it
1249
- iglesiascarbonia.it
1250
- ci.it
1343
+ carboniaiglesias.it
1344
+ carrara-massa.it
1345
+ carraramassa.it
1251
1346
  caserta.it
1252
- ce.it
1253
1347
  catania.it
1254
- ct.it
1255
1348
  catanzaro.it
1256
- cz.it
1257
- chieti.it
1349
+ cb.it
1350
+ ce.it
1351
+ cesena-forli.it
1352
+ cesenaforli.it
1258
1353
  ch.it
1259
- como.it
1354
+ chieti.it
1355
+ ci.it
1356
+ cl.it
1357
+ cn.it
1260
1358
  co.it
1359
+ como.it
1261
1360
  cosenza.it
1262
- cs.it
1263
- cremona.it
1264
1361
  cr.it
1362
+ cremona.it
1265
1363
  crotone.it
1266
- kr.it
1364
+ cs.it
1365
+ ct.it
1267
1366
  cuneo.it
1268
- cn.it
1367
+ cz.it
1269
1368
  dell-ogliastra.it
1270
1369
  dellogliastra.it
1271
- ogliastra.it
1272
- og.it
1273
- enna.it
1274
1370
  en.it
1275
- ferrara.it
1371
+ enna.it
1372
+ fc.it
1276
1373
  fe.it
1277
1374
  fermo.it
1278
- fm.it
1375
+ ferrara.it
1376
+ fg.it
1377
+ fi.it
1279
1378
  firenze.it
1280
1379
  florence.it
1281
- fi.it
1380
+ fm.it
1282
1381
  foggia.it
1283
- fg.it
1284
1382
  forli-cesena.it
1285
1383
  forlicesena.it
1286
- cesena-forli.it
1287
- cesenaforli.it
1288
- fc.it
1289
- frosinone.it
1290
1384
  fr.it
1291
- genova.it
1292
- genoa.it
1385
+ frosinone.it
1293
1386
  ge.it
1294
- gorizia.it
1387
+ genoa.it
1388
+ genova.it
1295
1389
  go.it
1296
- grosseto.it
1390
+ gorizia.it
1297
1391
  gr.it
1298
- imperia.it
1392
+ grosseto.it
1393
+ iglesias-carbonia.it
1394
+ iglesiascarbonia.it
1299
1395
  im.it
1300
- isernia.it
1396
+ imperia.it
1301
1397
  is.it
1302
- laquila.it
1303
- aquila.it
1304
- aq.it
1398
+ isernia.it
1399
+ kr.it
1305
1400
  la-spezia.it
1401
+ laquila.it
1306
1402
  laspezia.it
1307
- sp.it
1308
1403
  latina.it
1309
- lt.it
1310
- lecce.it
1404
+ lc.it
1311
1405
  le.it
1406
+ lecce.it
1312
1407
  lecco.it
1313
- lc.it
1314
- livorno.it
1315
1408
  li.it
1316
- lodi.it
1409
+ livorno.it
1317
1410
  lo.it
1318
- lucca.it
1411
+ lodi.it
1412
+ lt.it
1319
1413
  lu.it
1414
+ lucca.it
1320
1415
  macerata.it
1321
- mc.it
1322
1416
  mantova.it
1323
- mn.it
1324
1417
  massa-carrara.it
1325
1418
  massacarrara.it
1326
- carrara-massa.it
1327
- carraramassa.it
1328
- ms.it
1329
1419
  matera.it
1330
- mt.it
1420
+ mb.it
1421
+ mc.it
1422
+ me.it
1331
1423
  medio-campidano.it
1332
1424
  mediocampidano.it
1333
- campidano-medio.it
1334
- campidanomedio.it
1335
- vs.it
1336
1425
  messina.it
1337
- me.it
1338
- milano.it
1339
- milan.it
1340
1426
  mi.it
1341
- modena.it
1427
+ milan.it
1428
+ milano.it
1429
+ mn.it
1342
1430
  mo.it
1343
- monza.it
1431
+ modena.it
1344
1432
  monza-brianza.it
1433
+ monza-e-della-brianza.it
1434
+ monza.it
1345
1435
  monzabrianza.it
1346
1436
  monzaebrianza.it
1347
1437
  monzaedellabrianza.it
1348
- monza-e-della-brianza.it
1349
- mb.it
1350
- napoli.it
1351
- naples.it
1438
+ ms.it
1439
+ mt.it
1352
1440
  na.it
1353
- novara.it
1441
+ naples.it
1442
+ napoli.it
1354
1443
  no.it
1355
- nuoro.it
1444
+ novara.it
1356
1445
  nu.it
1357
- oristano.it
1446
+ nuoro.it
1447
+ og.it
1448
+ ogliastra.it
1449
+ olbia-tempio.it
1450
+ olbiatempio.it
1358
1451
  or.it
1452
+ oristano.it
1453
+ ot.it
1454
+ pa.it
1359
1455
  padova.it
1360
1456
  padua.it
1361
- pd.it
1362
1457
  palermo.it
1363
- pa.it
1364
1458
  parma.it
1365
- pr.it
1366
1459
  pavia.it
1367
- pv.it
1368
- perugia.it
1369
- pg.it
1370
- pescara.it
1460
+ pc.it
1461
+ pd.it
1371
1462
  pe.it
1463
+ perugia.it
1372
1464
  pesaro-urbino.it
1373
1465
  pesarourbino.it
1374
- urbino-pesaro.it
1375
- urbinopesaro.it
1376
- pu.it
1466
+ pescara.it
1467
+ pg.it
1468
+ pi.it
1377
1469
  piacenza.it
1378
- pc.it
1379
1470
  pisa.it
1380
- pi.it
1381
1471
  pistoia.it
1382
- pt.it
1383
- pordenone.it
1384
1472
  pn.it
1473
+ po.it
1474
+ pordenone.it
1385
1475
  potenza.it
1386
- pz.it
1476
+ pr.it
1387
1477
  prato.it
1388
- po.it
1478
+ pt.it
1479
+ pu.it
1480
+ pv.it
1481
+ pz.it
1482
+ ra.it
1389
1483
  ragusa.it
1390
- rg.it
1391
1484
  ravenna.it
1392
- ra.it
1393
- reggio-calabria.it
1394
- reggiocalabria.it
1395
1485
  rc.it
1486
+ re.it
1487
+ reggio-calabria.it
1396
1488
  reggio-emilia.it
1489
+ reggiocalabria.it
1397
1490
  reggioemilia.it
1398
- re.it
1399
- rieti.it
1491
+ rg.it
1400
1492
  ri.it
1493
+ rieti.it
1401
1494
  rimini.it
1495
+ rm.it
1402
1496
  rn.it
1497
+ ro.it
1403
1498
  roma.it
1404
1499
  rome.it
1405
- rm.it
1406
1500
  rovigo.it
1407
- ro.it
1408
- salerno.it
1409
1501
  sa.it
1502
+ salerno.it
1410
1503
  sassari.it
1411
- ss.it
1412
1504
  savona.it
1413
- sv.it
1414
- siena.it
1415
1505
  si.it
1506
+ siena.it
1416
1507
  siracusa.it
1417
- sr.it
1418
- sondrio.it
1419
1508
  so.it
1420
- taranto.it
1509
+ sondrio.it
1510
+ sp.it
1511
+ sr.it
1512
+ ss.it
1513
+ suedtirol.it
1514
+ sv.it
1421
1515
  ta.it
1516
+ taranto.it
1517
+ te.it
1422
1518
  tempio-olbia.it
1423
1519
  tempioolbia.it
1424
- olbia-tempio.it
1425
- olbiatempio.it
1426
- ot.it
1427
1520
  teramo.it
1428
- te.it
1429
1521
  terni.it
1430
- tr.it
1522
+ tn.it
1523
+ to.it
1431
1524
  torino.it
1432
- turin.it
1433
- to.it
1434
- trapani.it
1435
1525
  tp.it
1436
- trento.it
1526
+ tr.it
1527
+ trani-andria-barletta.it
1528
+ trani-barletta-andria.it
1529
+ traniandriabarletta.it
1530
+ tranibarlettaandria.it
1531
+ trapani.it
1437
1532
  trentino.it
1438
- tn.it
1533
+ trento.it
1439
1534
  treviso.it
1440
- tv.it
1441
1535
  trieste.it
1442
1536
  ts.it
1443
- udine.it
1537
+ turin.it
1538
+ tv.it
1444
1539
  ud.it
1445
- varese.it
1540
+ udine.it
1541
+ urbino-pesaro.it
1542
+ urbinopesaro.it
1446
1543
  va.it
1544
+ varese.it
1545
+ vb.it
1546
+ vc.it
1547
+ ve.it
1447
1548
  venezia.it
1448
1549
  venice.it
1449
- ve.it
1450
1550
  verbania.it
1451
- vb.it
1452
1551
  vercelli.it
1453
- vc.it
1454
1552
  verona.it
1455
- vr.it
1553
+ vi.it
1456
1554
  vibo-valentia.it
1457
1555
  vibovalentia.it
1458
- vv.it
1459
1556
  vicenza.it
1460
- vi.it
1461
1557
  viterbo.it
1558
+ vr.it
1559
+ vs.it
1462
1560
  vt.it
1561
+ vv.it
1463
1562
 
1464
- // je : http://www.channelisles.net/applic/avextn.shtml
1563
+ // je : http://www.channelisles.net/register-domains/
1564
+ // Confirmed by registry <nigel@channelisles.net> 2013-11-28
1465
1565
  je
1466
1566
  co.je
1467
- org.je
1468
1567
  net.je
1469
- sch.je
1470
- gov.je
1568
+ org.je
1471
1569
 
1472
1570
  // jm : http://www.com.jm/register.html
1473
1571
  *.jm
@@ -1488,7 +1586,7 @@ jobs
1488
1586
 
1489
1587
  // jp : http://en.wikipedia.org/wiki/.jp
1490
1588
  // http://jprs.co.jp/en/jpdomain.html
1491
- // Updated by registry <info@jprs.jp> 2012-05-28
1589
+ // Submitted by registry <info@jprs.jp> 2014-02-28
1492
1590
  jp
1493
1591
  // jp organizational type names
1494
1592
  ac.jp
@@ -1592,7 +1690,6 @@ konan.aichi.jp
1592
1690
  kota.aichi.jp
1593
1691
  mihama.aichi.jp
1594
1692
  miyoshi.aichi.jp
1595
- nagakute.aichi.jp
1596
1693
  nishio.aichi.jp
1597
1694
  nisshin.aichi.jp
1598
1695
  obu.aichi.jp
@@ -2264,7 +2361,6 @@ rikuzentakata.iwate.jp
2264
2361
  shiwa.iwate.jp
2265
2362
  shizukuishi.iwate.jp
2266
2363
  sumita.iwate.jp
2267
- takizawa.iwate.jp
2268
2364
  tanohata.iwate.jp
2269
2365
  tono.iwate.jp
2270
2366
  yahaba.iwate.jp
@@ -3302,6 +3398,7 @@ edu.kn
3302
3398
  gov.kn
3303
3399
 
3304
3400
  // kp : http://www.kcce.kp/en_index.php
3401
+ kp
3305
3402
  com.kp
3306
3403
  edu.kp
3307
3404
  gov.kp
@@ -3379,6 +3476,7 @@ org.la
3379
3476
 
3380
3477
  // lb : http://en.wikipedia.org/wiki/.lb
3381
3478
  // Submitted by registry <randy@psg.com> 2008-06-17
3479
+ lb
3382
3480
  com.lb
3383
3481
  edu.lb
3384
3482
  gov.lb
@@ -3417,6 +3515,7 @@ hotel.lk
3417
3515
 
3418
3516
  // lr : http://psg.com/dns/lr/lr.txt
3419
3517
  // Submitted by registry <randy@psg.com> 2008-06-17
3518
+ lr
3420
3519
  com.lr
3421
3520
  edu.lr
3422
3521
  gov.lr
@@ -3559,11 +3658,21 @@ mq
3559
3658
  mr
3560
3659
  gov.mr
3561
3660
 
3562
- // ms : http://en.wikipedia.org/wiki/.ms
3661
+ // ms : http://www.nic.ms/pdf/MS_Domain_Name_Rules.pdf
3563
3662
  ms
3564
-
3565
- // mt : https://www.nic.org.mt/dotmt/
3566
- *.mt
3663
+ com.ms
3664
+ edu.ms
3665
+ gov.ms
3666
+ net.ms
3667
+ org.ms
3668
+
3669
+ // mt : https://www.nic.org.mt/go/policy
3670
+ // Submitted by registry <help@nic.org.mt> 2013-11-19
3671
+ mt
3672
+ com.mt
3673
+ edu.mt
3674
+ net.mt
3675
+ org.mt
3567
3676
 
3568
3677
  // mu : http://en.wikipedia.org/wiki/.mu
3569
3678
  mu
@@ -4230,13 +4339,16 @@ other.nf
4230
4339
  store.nf
4231
4340
 
4232
4341
  // ng : http://psg.com/dns/ng/
4233
- // Submitted by registry <randy@psg.com> 2008-06-17
4234
- ac.ng
4342
+ ng
4235
4343
  com.ng
4236
4344
  edu.ng
4237
- gov.ng
4345
+ name.ng
4238
4346
  net.ng
4239
4347
  org.ng
4348
+ sch.ng
4349
+ gov.ng
4350
+ mil.ng
4351
+ mobi.ng
4240
4352
 
4241
4353
  // ni : http://www.nic.ni/dominios.htm
4242
4354
  *.ni
@@ -5037,17 +5149,16 @@ nu
5037
5149
  *.nz
5038
5150
 
5039
5151
  // om : http://en.wikipedia.org/wiki/.om
5040
- *.om
5041
- !mediaphone.om
5042
- !nawrastelecom.om
5043
- !nawras.om
5044
- !omanmobile.om
5045
- !omanpost.om
5046
- !omantel.om
5047
- !rakpetroleum.om
5048
- !siemens.om
5049
- !songfest.om
5050
- !statecouncil.om
5152
+ om
5153
+ co.om
5154
+ com.om
5155
+ edu.om
5156
+ gov.om
5157
+ med.om
5158
+ museum.om
5159
+ net.om
5160
+ org.om
5161
+ pro.om
5051
5162
 
5052
5163
  // org : http://en.wikipedia.org/wiki/.org
5053
5164
  org
@@ -5622,7 +5733,7 @@ gov.sd
5622
5733
  info.sd
5623
5734
 
5624
5735
  // se : http://en.wikipedia.org/wiki/.se
5625
- // Submitted by registry <Patrik.Wallstrom@iis.se> 2008-06-24
5736
+ // Submitted by registry <patrik.wallstrom@iis.se> 2014-03-18
5626
5737
  se
5627
5738
  a.se
5628
5739
  ac.se
@@ -5656,7 +5767,6 @@ pp.se
5656
5767
  press.se
5657
5768
  r.se
5658
5769
  s.se
5659
- sshn.se
5660
5770
  t.se
5661
5771
  tm.se
5662
5772
  u.se
@@ -5687,6 +5797,7 @@ si
5687
5797
 
5688
5798
  // sj : No registrations at this time.
5689
5799
  // Submitted by registry <jarle@uninett.no> 2008-06-16
5800
+ sj
5690
5801
 
5691
5802
  // sk : http://en.wikipedia.org/wiki/.sk
5692
5803
  // list of 2nd level domains ?
@@ -5741,8 +5852,13 @@ store.st
5741
5852
  // su : http://en.wikipedia.org/wiki/.su
5742
5853
  su
5743
5854
 
5744
- // sv : http://www.svnet.org.sv/svpolicy.html
5745
- *.sv
5855
+ // sv : http://www.svnet.org.sv/niveldos.pdf
5856
+ sv
5857
+ com.sv
5858
+ edu.sv
5859
+ gob.sv
5860
+ org.sv
5861
+ red.sv
5746
5862
 
5747
5863
  // sx : http://en.wikipedia.org/wiki/.sx
5748
5864
  // Confirmed by registry <jcvignes@openregistry.com> 2012-05-31
@@ -5864,6 +5980,10 @@ org.to
5864
5980
  edu.to
5865
5981
  mil.to
5866
5982
 
5983
+ // tp : No registrations at this time.
5984
+ // Submitted by Ryan Sleevi <ryan.sleevi@gmail.com> 2014-01-03
5985
+ tp
5986
+
5867
5987
  // tr : http://en.wikipedia.org/wiki/.tr
5868
5988
  *.tr
5869
5989
  !nic.tr
@@ -5917,6 +6037,7 @@ club.tw
5917
6037
 
5918
6038
  // tz : http://www.tznic.or.tz/index.php/domains
5919
6039
  // Confirmed by registry <manager@tznic.or.tz> 2013-01-22
6040
+ tz
5920
6041
  ac.tz
5921
6042
  co.tz
5922
6043
  go.tz
@@ -6125,7 +6246,7 @@ k12.de.us
6125
6246
  k12.fl.us
6126
6247
  k12.ga.us
6127
6248
  k12.gu.us
6128
- // k12.hi.us Hawaii has a state-wide DOE login: bug 614565
6249
+ // k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
6129
6250
  k12.ia.us
6130
6251
  k12.id.us
6131
6252
  k12.il.us
@@ -6156,7 +6277,7 @@ k12.pa.us
6156
6277
  k12.pr.us
6157
6278
  k12.ri.us
6158
6279
  k12.sc.us
6159
- k12.sd.us
6280
+ // k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
6160
6281
  k12.tn.us
6161
6282
  k12.tx.us
6162
6283
  k12.ut.us
@@ -6165,7 +6286,7 @@ k12.vt.us
6165
6286
  k12.va.us
6166
6287
  k12.wa.us
6167
6288
  k12.wi.us
6168
- k12.wv.us
6289
+ // k12.wv.us Bug 947705 - Removed at request of Verne Britton <verne@wvnet.edu>
6169
6290
  k12.wy.us
6170
6291
 
6171
6292
  cc.ak.us
@@ -6277,296 +6398,1296 @@ lib.vt.us
6277
6398
  lib.va.us
6278
6399
  lib.wa.us
6279
6400
  lib.wi.us
6280
- lib.wv.us
6401
+ // lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold@wvlc.lib.wv.us>
6281
6402
  lib.wy.us
6282
6403
 
6283
- // k12.ma.us contains school districts in Massachusetts. The 4LDs are
6284
- // managed indepedently except for private (PVT), charter (CHTR) and
6285
- // parochial (PAROCH) schools. Those are delegated dorectly to the
6286
- // 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
6287
- pvt.k12.ma.us
6288
- chtr.k12.ma.us
6289
- paroch.k12.ma.us
6404
+ // k12.ma.us contains school districts in Massachusetts. The 4LDs are
6405
+ // managed indepedently except for private (PVT), charter (CHTR) and
6406
+ // parochial (PAROCH) schools. Those are delegated dorectly to the
6407
+ // 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
6408
+ pvt.k12.ma.us
6409
+ chtr.k12.ma.us
6410
+ paroch.k12.ma.us
6411
+
6412
+ // uy : http://www.nic.org.uy/
6413
+ uy
6414
+ com.uy
6415
+ edu.uy
6416
+ gub.uy
6417
+ mil.uy
6418
+ net.uy
6419
+ org.uy
6420
+
6421
+ // uz : http://www.reg.uz/
6422
+ uz
6423
+ co.uz
6424
+ com.uz
6425
+ net.uz
6426
+ org.uz
6427
+
6428
+ // va : http://en.wikipedia.org/wiki/.va
6429
+ va
6430
+
6431
+ // vc : http://en.wikipedia.org/wiki/.vc
6432
+ // Submitted by registry <kshah@ca.afilias.info> 2008-06-13
6433
+ vc
6434
+ com.vc
6435
+ net.vc
6436
+ org.vc
6437
+ gov.vc
6438
+ mil.vc
6439
+ edu.vc
6440
+
6441
+ // ve : https://registro.nic.ve/
6442
+ // Confirmed by registry 2012-10-04
6443
+ ve
6444
+ co.ve
6445
+ com.ve
6446
+ e12.ve
6447
+ edu.ve
6448
+ gov.ve
6449
+ info.ve
6450
+ mil.ve
6451
+ net.ve
6452
+ org.ve
6453
+ web.ve
6454
+
6455
+ // vg : http://en.wikipedia.org/wiki/.vg
6456
+ vg
6457
+
6458
+ // vi : http://www.nic.vi/newdomainform.htm
6459
+ // http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
6460
+ // TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
6461
+ // are available for registration (which they do not seem to be).
6462
+ vi
6463
+ co.vi
6464
+ com.vi
6465
+ k12.vi
6466
+ net.vi
6467
+ org.vi
6468
+
6469
+ // vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
6470
+ vn
6471
+ com.vn
6472
+ net.vn
6473
+ org.vn
6474
+ edu.vn
6475
+ gov.vn
6476
+ int.vn
6477
+ ac.vn
6478
+ biz.vn
6479
+ info.vn
6480
+ name.vn
6481
+ pro.vn
6482
+ health.vn
6483
+
6484
+ // vu : http://en.wikipedia.org/wiki/.vu
6485
+ // list of 2nd level tlds ?
6486
+ vu
6487
+
6488
+ // wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
6489
+ wf
6490
+
6491
+ // ws : http://en.wikipedia.org/wiki/.ws
6492
+ // http://samoanic.ws/index.dhtml
6493
+ ws
6494
+ com.ws
6495
+ net.ws
6496
+ org.ws
6497
+ gov.ws
6498
+ edu.ws
6499
+
6500
+ // yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
6501
+ yt
6502
+
6503
+ // IDN ccTLDs
6504
+ // Please sort by ISO 3166 ccTLD, then punicode string
6505
+ // when submitting patches and follow this format:
6506
+ // <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
6507
+ // [optional sponsoring org]
6508
+ // <URL>
6509
+
6510
+ // xn--mgbaam7a8h ("Emerat" Arabic) : AE
6511
+ // http://nic.ae/english/arabicdomain/rules.jsp
6512
+ امارات
6513
+
6514
+ // xn--54b7fta0cc ("Bangla" Bangla) : BD
6515
+ বাংলা
6516
+
6517
+ // xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhongguo>) : CN
6518
+ // CNNIC
6519
+ // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
6520
+ 中国
6521
+
6522
+ // xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhongguo>) : CN
6523
+ // CNNIC
6524
+ // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
6525
+ 中國
6526
+
6527
+ // xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
6528
+ الجزائر
6529
+
6530
+ // xn--wgbh1c ("Egypt" Arabic .masr) : EG
6531
+ // http://www.dotmasr.eg/
6532
+ مصر
6533
+
6534
+ // xn--node ("ge" Georgian (Mkhedruli)) : GE
6535
+ გე
6536
+
6537
+ // xn--j6w193g ("Hong Kong" Chinese-Han) : HK
6538
+ // https://www2.hkirc.hk/register/rules.jsp
6539
+ 香港
6540
+
6541
+ // xn--h2brj9c ("Bharat" Devanagari) : IN
6542
+ // India
6543
+ भारत
6544
+
6545
+ // xn--mgbbh1a71e ("Bharat" Arabic) : IN
6546
+ // India
6547
+ بھارت
6548
+
6549
+ // xn--fpcrj9c3d ("Bharat" Telugu) : IN
6550
+ // India
6551
+ భారత్
6552
+
6553
+ // xn--gecrj9c ("Bharat" Gujarati) : IN
6554
+ // India
6555
+ ભારત
6556
+
6557
+ // xn--s9brj9c ("Bharat" Gurmukhi) : IN
6558
+ // India
6559
+ ਭਾਰਤ
6560
+
6561
+ // xn--45brj9c ("Bharat" Bengali) : IN
6562
+ // India
6563
+ ভারত
6564
+
6565
+ // xn--xkc2dl3a5ee0h ("India" Tamil) : IN
6566
+ // India
6567
+ இந்தியா
6568
+
6569
+ // xn--mgba3a4f16a ("Iran" Persian) : IR
6570
+ ایران
6571
+
6572
+ // xn--mgba3a4fra ("Iran" Arabic) : IR
6573
+ ايران
6574
+
6575
+ // xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
6576
+ // National Information Technology Center (NITC)
6577
+ // Royal Scientific Society, Al-Jubeiha
6578
+ الاردن
6579
+
6580
+ // xn--3e0b707e ("Republic of Korea" Hangul) : KR
6581
+ 한국
6582
+
6583
+ // xn--80ao21a ("Kaz" Kazakh) : KZ
6584
+ қаз
6585
+
6586
+ // xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
6587
+ // http://nic.lk
6588
+ ලංකා
6589
+
6590
+ // xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
6591
+ // http://nic.lk
6592
+ இலங்கை
6593
+
6594
+ // xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
6595
+ المغرب
6596
+
6597
+ // xn--l1acc ("mon" Mongolian) : MN
6598
+ мон
6599
+
6600
+ // xn--mgbx4cd0ab ("Malaysia" Malay) : MY
6601
+ مليسيا
6602
+
6603
+ // xn--mgb9awbf ("Oman" Arabic) : OM
6604
+ عمان
6605
+
6606
+ // xn--ygbi2ammx ("Falasteen" Arabic) : PS
6607
+ // The Palestinian National Internet Naming Authority (PNINA)
6608
+ // http://www.pnina.ps
6609
+ فلسطين
6610
+
6611
+ // xn--90a3ac ("srb" Cyrillic) : RS
6612
+ срб
6613
+
6614
+ // xn--p1ai ("rf" Russian-Cyrillic) : RU
6615
+ // http://www.cctld.ru/en/docs/rulesrf.php
6616
+ рф
6617
+
6618
+ // xn--wgbl6a ("Qatar" Arabic) : QA
6619
+ // http://www.ict.gov.qa/
6620
+ قطر
6621
+
6622
+ // xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
6623
+ // http://www.nic.net.sa/
6624
+ السعودية
6625
+
6626
+ // xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
6627
+ السعودیة
6628
+
6629
+ // xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
6630
+ السعودیۃ
6631
+
6632
+ // xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
6633
+ السعوديه
6634
+
6635
+ // xn--ogbpf8fl ("Syria" Arabic) : SY
6636
+ سورية
6637
+
6638
+ // xn--mgbtf8fl ("Syria" Arabic) variant : SY
6639
+ سوريا
6640
+
6641
+ // xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
6642
+ 新加坡
6643
+
6644
+ // xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
6645
+ சிங்கப்பூர்
6646
+
6647
+ // xn--o3cw4h ("Thai" Thai) : TH
6648
+ // http://www.thnic.co.th
6649
+ ไทย
6650
+
6651
+ // xn--pgbs0dh ("Tunis") : TN
6652
+ // http://nic.tn
6653
+ تونس
6654
+
6655
+ // xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
6656
+ // http://www.twnic.net/english/dn/dn_07a.htm
6657
+ 台灣
6658
+
6659
+ // xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
6660
+ // http://www.twnic.net/english/dn/dn_07a.htm
6661
+ 台湾
6662
+
6663
+ // xn--nnx388a ("Taiwan") variant : TW
6664
+ 臺灣
6665
+
6666
+ // xn--j1amh ("ukr" Cyrillic) : UA
6667
+ укр
6668
+
6669
+ // xn--mgb2ddes ("AlYemen" Arabic) : YE
6670
+ اليمن
6671
+
6672
+ // xxx : http://icmregistry.com
6673
+ xxx
6674
+
6675
+ // ye : http://www.y.net.ye/services/domain_name.htm
6676
+ *.ye
6677
+
6678
+ // za : http://www.zadna.org.za/slds.html
6679
+ *.za
6680
+
6681
+ // zm : http://en.wikipedia.org/wiki/.zm
6682
+ *.zm
6683
+
6684
+ // zw : http://en.wikipedia.org/wiki/.zw
6685
+ *.zw
6686
+
6687
+
6688
+ // xn--80asehdb : 2013-07-14 CORE Association
6689
+ онлайн
6690
+
6691
+ // xn--80aswg : 2013-07-14 CORE Association
6692
+ сайт
6693
+
6694
+ // xn--ngbc5azd : 2013-07-14 International Domain Registry Pty. Ltd.
6695
+ شبكة
6696
+
6697
+ // xn--unup4y : 2013-07-14 Spring Fields, LLC
6698
+ 游戏
6699
+
6700
+ // xn--vhquv : 2013-08-28 Dash McCook, LLC
6701
+ 企业
6702
+
6703
+ // camera : 2013-08-28 Atomic Maple, LLC
6704
+ camera
6705
+
6706
+ // clothing : 2013-08-28 Steel Lake, LLC
6707
+ clothing
6708
+
6709
+ // lighting : 2013-08-28 John McCook, LLC
6710
+ lighting
6711
+
6712
+ // singles : 2013-08-28 Fern Madison, LLC
6713
+ singles
6714
+
6715
+ // ventures : 2013-08-28 Binky Lake, LLC
6716
+ ventures
6717
+
6718
+ // voyage : 2013-08-28 Ruby House, LLC
6719
+ voyage
6720
+
6721
+ // guru : 2013-08-28 Pioneer Cypress, LLC
6722
+ guru
6723
+
6724
+ // holdings : 2013-08-28 John Madison, LLC
6725
+ holdings
6726
+
6727
+ // equipment : 2013-08-28 Corn Station, LLC
6728
+ equipment
6729
+
6730
+ // bike : 2013-08-28 Grand Hollow, LLC
6731
+ bike
6732
+
6733
+ // estate : 2013-08-28 Trixy Park, LLC
6734
+ estate
6735
+
6736
+ // tattoo : 2013-08-30 Uniregistry,Corp.
6737
+ tattoo
6738
+
6739
+ // xn--3ds443g : 2013-09-09 TLD Registry Limited
6740
+ 在线
6741
+
6742
+ // xn--fiq228c5hs : 2013-09-09 TLD Registry Limited
6743
+ 中文网
6744
+
6745
+ // land : 2013-09-10 Pine Moon, LLC
6746
+ land
6747
+
6748
+ // plumbing : 2013-09-10 Spring Tigers, LLC
6749
+ plumbing
6750
+
6751
+ // contractors : 2013-09-10 Magic Woods, LLC
6752
+ contractors
6753
+
6754
+ // sexy : 2013-09-11 Uniregistry,Corp.
6755
+ sexy
6756
+
6757
+ // menu : 2013-09-11 Wedding TLD2, LLC
6758
+ menu
6759
+
6760
+ // xn--rhqv96g : 2013-09-11 Stable Tone Limited
6761
+ 世界
6762
+
6763
+ // uno : 2013-09-11 Dot Latin, LLC
6764
+ uno
6765
+
6766
+ // gallery : 2013-09-13 Sugar House, LLC
6767
+ gallery
6768
+
6769
+ // technology : 2013-09-13 Auburn Falls
6770
+ technology
6771
+
6772
+ // xn--3bst00m : 2013-09-13 Eagle Horizon Limited
6773
+ 集团
6774
+
6775
+ // reviews : 2013-09-13 Extra Cover, LLC
6776
+ reviews
6777
+
6778
+ // guide : 2013-09-13 Snow Moon, LLC
6779
+ guide
6780
+
6781
+ // xn--6qq986b3x1 : 2013-09-13 Tycoon Treasure Limited
6782
+ 我爱你
6783
+
6784
+ // graphics : 2013-09-13 Over Madison, LLC
6785
+ graphics
6786
+
6787
+ // construction : 2013-09-13 Fox Dynamite, LLC
6788
+ construction
6789
+
6790
+ // onl : 2013-09-16 I-Registry Ltd.
6791
+ onl
6792
+
6793
+ // xn--q9jyb4c : 2013-09-17 Charleston Road Registry
6794
+ みんな
6795
+
6796
+ // diamonds : 2013-09-23 John Edge, LLC
6797
+ diamonds
6798
+
6799
+ // kiwi : 2013-09-23 Dot Kiwi Limited
6800
+ kiwi
6801
+
6802
+ // enterprises : 2013-09-23 Snow Oaks LLC
6803
+ enterprises
6804
+
6805
+ // today : 2013-09-23 Pearl Woods, LLC
6806
+ today
6807
+
6808
+ // futbol : 2013-09-23 Atomic Falls, LLC
6809
+ futbol
6810
+
6811
+ // photography : 2013-09-23 Sugar Glen, LLC
6812
+ photography
6813
+
6814
+ // tips : 2013-09-23 Corn Willow, LLC
6815
+ tips
6816
+
6817
+ // directory : 2013-09-23 Extra Madison, LLC
6818
+ directory
6819
+
6820
+ // kitchen : 2013-09-23 Just Goodbye, LLC
6821
+ kitchen
6822
+
6823
+ // xn--6frz82g : 2013-09-24 Afilias Limited
6824
+ 移动
6825
+
6826
+ // kim : 2013-09-24 Afilias Limited
6827
+ kim
6828
+
6829
+ // xn--cg4bki : 2013-09-27 Samsung SDS Co., LTD
6830
+ 삼성
6831
+
6832
+ // monash : 2013-10-01 Monash University
6833
+ monash
6834
+
6835
+ // wed : 2013-10-02 Atgron, Inc.
6836
+ wed
6837
+
6838
+ // pink : 2013-10-02 Afilias Limited
6839
+ pink
6840
+
6841
+ // ruhr : 2013-10-02 regiodot GmbH & Co. KG
6842
+ ruhr
6843
+
6844
+ // buzz : 2013-10-03 DOTSTRATEGY CO.
6845
+ buzz
6846
+
6847
+ // careers : 2013-10-03 Wild Corner, LLC
6848
+ careers
6849
+
6850
+ // shoes : 2013-10-03 Binky Galley, LLC
6851
+ shoes
6852
+
6853
+ // xn--4gbrim : 2013-10-07 Suhub Electronic Establishment
6854
+ موقع
6855
+
6856
+ // career : 2013-10-09 dotCareer, LLC
6857
+ career
6858
+
6859
+ // otsuka : 2013-10-11 Otsuka Holdings Co. Ltd.
6860
+ otsuka
6861
+
6862
+ // xn--fiQ64b : 2013-10-14 CITIC Group Corporation
6863
+ 中信
6864
+
6865
+ // gift : 2013-10-18 Uniregistry Corp.
6866
+ gift
6867
+
6868
+ // recipes : 2013-10-18 Grand Island, LLC
6869
+ recipes
6870
+
6871
+ // coffee : 2013-10-18 Trixy Cover, LLC
6872
+ coffee
6873
+
6874
+ // luxury : 2013-10-18 Luxury Partners, LLC
6875
+ luxury
6876
+
6877
+ // domains : 2013-10-18 Sugar Cross, LLC
6878
+ domains
6879
+
6880
+ // photos : 2013-10-18 Sea Corner, LLC
6881
+ photos
6882
+
6883
+ // limo : 2013-10-18 Hidden Frostbite, LLC
6884
+ limo
6885
+
6886
+ // viajes : 2013-10-18 Black Madison, LLC
6887
+ viajes
6888
+
6889
+ // wang : 2013-10-24 Zodiac Leo Limited
6890
+ wang
6891
+
6892
+ // democrat : 2013-10-24 United TLD Holdco Ltd.
6893
+ democrat
6894
+
6895
+ // mango : 2013-10-25 PUNTO FA S.L.
6896
+ mango
6897
+
6898
+ // cab : 2013-10-25 Half Sunset, LLC
6899
+ cab
6900
+
6901
+ // support : 2013-10-25 Grand Orchard, LLC
6902
+ support
6903
+
6904
+ // dance : 2013-10-25 United TLD Holdco Ltd.
6905
+ dance
6906
+
6907
+ // nagoya : 2013-10-25 GMO Registry, Inc.
6908
+ nagoya
6909
+
6910
+ // computer : 2013-10-25 Pine Mill, LLC
6911
+ computer
6912
+
6913
+ // wien : 2013-10-28 punkt.wien GmbH
6914
+ wien
6915
+
6916
+ // berlin : 2013-10-31 dotBERLIN GmbH & Co. KG
6917
+ berlin
6918
+
6919
+ // codes : 2013-10-31 Puff Willow, LLC
6920
+ codes
6921
+
6922
+ // email : 2013-10-31 Spring Madison, LLC
6923
+ email
6924
+
6925
+ // xn--mgbab2bd : 2013-10-31 CORE Association
6926
+ بازار
6927
+
6928
+ // repair : 2013-11-07 Lone Sunset, LLC
6929
+ repair
6930
+
6931
+ // holiday : 2013-11-07 Goose Woods, LLC
6932
+ holiday
6933
+
6934
+ // center : 2013-11-07 Tin Mill, LLC
6935
+ center
6936
+
6937
+ // systems : 2013-11-07 Dash Cypress, LLC
6938
+ systems
6939
+
6940
+ // wiki : 2013-11-07 Top Level Design, LLC
6941
+ wiki
6942
+
6943
+ // ceo : 2013-11-07 CEOTLD Pty Ltd
6944
+ ceo
6945
+
6946
+ // international : 2013-11-07 Wild Way, LLC
6947
+ international
6948
+
6949
+ // solar : 2013-11-07 Ruby Town, LLC
6950
+ solar
6951
+
6952
+ // company : 2013-11-07 Silver Avenue, LLC
6953
+ company
6954
+
6955
+ // education : 2013-11-07 Brice Way, LLC
6956
+ education
6957
+
6958
+ // training : 2013-11-07 Wild Willow, LLC
6959
+ training
6960
+
6961
+ // academy : 2013-11-07 Half Oaks, LLC
6962
+ academy
6963
+
6964
+ // marketing : 2013-11-07 Fern Pass, LLC
6965
+ marketing
6966
+
6967
+ // florist : 2013-11-08 Half Cypress, LLC
6968
+ florist
6969
+
6970
+ // solutions : 2013-11-07 Silver Cover, LLC
6971
+ solutions
6972
+
6973
+ // build : 2013-11-07 Plan Bee LLC
6974
+ build
6975
+
6976
+ // institute : 2013-11-07 Outer Maple, LLC
6977
+ institute
6978
+
6979
+ // builders : 2013-11-07 Atomic Madison, LLC
6980
+ builders
6981
+
6982
+ // red : 2013-11-07 Afilias Limited
6983
+ red
6984
+
6985
+ // blue : 2013-11-07 Afilias Limited
6986
+ blue
6987
+
6988
+ // ninja : 2013-11-07 United TLD Holdco Ltd.
6989
+ ninja
6990
+
6991
+ // business : 2013-11-07 Spring Cross, LLC
6992
+ business
6993
+
6994
+ // gal : 2013-11-07 Asociación puntoGAL
6995
+ gal
6996
+
6997
+ // social : 2013-11-07 United TLD Holdco Ltd.
6998
+ social
6999
+
7000
+ // house : 2013-11-07 Sugar Park, LLC
7001
+ house
7002
+
7003
+ // camp : 2013-11-07 Delta Dynamite, LLC
7004
+ camp
7005
+
7006
+ // immobilien : 2013-11-07 United TLD Holdco Ltd.
7007
+ immobilien
7008
+
7009
+ // moda : 2013-11-07 United TLD Holdco Ltd.
7010
+ moda
7011
+
7012
+ // glass : 2013-11-07 Black Cover, LLC
7013
+ glass
7014
+
7015
+ // management : 2013-11-07 John Goodbye, LLC
7016
+ management
7017
+
7018
+ // kaufen : 2013-11-07 United TLD Holdco Ltd.
7019
+ kaufen
7020
+
7021
+ // farm : 2013-11-07 Just Maple, LLC
7022
+ farm
7023
+
7024
+ // xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
7025
+ 公益
7026
+
7027
+ // xn--zfr164b : 2013-11-08 China Organizational Name Administration Center
7028
+ 政务
7029
+
7030
+ // club : 2013-11-08 .CLUB DOMAINS, LLC
7031
+ club
7032
+
7033
+ // voting : 2013-11-13 Valuetainment Corp.
7034
+ voting
7035
+
7036
+ // TOKYO : 2013-11-13 GMO Registry, Inc.
7037
+ tokyo
7038
+
7039
+ // moe : 2013-11-13 Interlink Co., Ltd.
7040
+ moe
7041
+
7042
+ // guitars : 2013-11-14 Uniregistry, Corp.
7043
+ guitars
7044
+
7045
+ // bargains : 2013-11-14 Half Hallow, LLC
7046
+ bargains
7047
+
7048
+ // xn--nqv7fs00ema : 2013-11-14 Public Interest Registry
7049
+ 组织机构
7050
+
7051
+ // desi : 2013-11-14 Desi Networks LLC
7052
+ desi
7053
+
7054
+ // cool : 2013-11-14 Koko Lake, LLC
7055
+ cool
7056
+
7057
+ // boutique : 2013-11-14 Over Galley, LLC
7058
+ boutique
7059
+
7060
+ // pics : 2013-11-14 Uniregistry, Corp.
7061
+ pics
7062
+
7063
+ // xn--c1avg : 2013-11-14 Public Interest Registry
7064
+ орг
7065
+
7066
+ // xn--55qx5d : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
7067
+ 公司
7068
+
7069
+ // xn--io0a7i : 2013-11-14 Computer Network Information Center of Chinese Academy of Sciences (China Internet Network Information Center)
7070
+ 网络
7071
+
7072
+ // cheap : 2013-11-14 Sand Cover, LLC
7073
+ cheap
7074
+
7075
+ // xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd.
7076
+ 广东
7077
+
7078
+ // photo : 2013-11-14 Uniregistry, Corp.
7079
+ photo
7080
+
7081
+ // network : 2013-11-14 Trixy Manor, LLC
7082
+ network
7083
+
7084
+ // zone : 2013-11-14 Outer Falls, LLC
7085
+ zone
7086
+
7087
+ // xn--nqv7f : 2013-11-14 Public Interest Registry
7088
+ 机构
7089
+
7090
+ // link : 2013-11-14 Uniregistry, Corp.
7091
+ link
7092
+
7093
+ // QPON : 2013-11-14 dotCOOL, Inc.
7094
+ qpon
7095
+
7096
+ // xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
7097
+ संगठन
7098
+
7099
+ // agency : 2013-11-14 Steel Falls, LLC
7100
+ agency
7101
+
7102
+ // tienda : 2013-11-14 Victor Manor, LLC
7103
+ tienda
7104
+
7105
+ // works : 2013-11-14 Little Dynamite, LLC
7106
+ works
7107
+
7108
+ // london : 2013-11-14 Dot London Domains Limited
7109
+ london
7110
+
7111
+ // watch : 2013-11-14 Sand Shadow, LLC
7112
+ watch
7113
+
7114
+ // rocks : 2013-11-14 Ruby Moon, LLC
7115
+ rocks
7116
+
7117
+ // SHIKSHA : 2013-11-14 Afilias Limited
7118
+ shiksha
7119
+
7120
+ // xn--d1acj3b : 2013-11-21 The Foundation for Network Initiatives “The Smart Internet”
7121
+ дети
7122
+
7123
+ // budapest : 2013-11-21 Top Level Domain Holdings Limited
7124
+ budapest
7125
+
7126
+ // nrw : 2013-11-21 Minds + Machines GmbH
7127
+ nrw
7128
+
7129
+ // VOTE : 2013-11-21 Monolith Registry LLC
7130
+ vote
7131
+
7132
+ // fishing : 2013-11-21 Top Level Domain Holdings Limited
7133
+ fishing
7134
+
7135
+ // expert : 2013-11-21 Magic Pass, LLC
7136
+ expert
7137
+
7138
+ // horse : 2013-11-21 Top Level Domain Holdings Limited
7139
+ horse
7140
+
7141
+ // christmas : 2013-11-21 Uniregistry, Corp.
7142
+ christmas
7143
+
7144
+ // cooking : 2013-11-21 Top Level Domain Holdings Limited
7145
+ cooking
7146
+
7147
+ // xn--czru2d : 2013-11-21 Zodiac Capricorn Limited
7148
+ 商城
7149
+
7150
+ // casa : 2013-11-21 Top Level Domain Holdings Limited
7151
+ casa
7152
+
7153
+ // rich : 2013-11-21 I-REGISTRY Ltd., Niederlassung Deutschland
7154
+ rich
7155
+
7156
+ // VOTO : 2013-11-21 Monolith Registry LLC
7157
+ voto
7158
+
7159
+ // tools : 2013-11-21 Pioneer North, LLC
7160
+ tools
7161
+
7162
+ // xn--45q11c : 2013-11-21 Zodiac Scorpio Limited
7163
+ 八卦
7164
+
7165
+ // praxi : 2013-12-05 Praxi S.p.A.
7166
+ praxi
7167
+
7168
+ // events : 2013-12-05 Pioneer Maple, LLC
7169
+ events
7170
+
7171
+ // flights : 2013-12-05 Fox Station, LLC
7172
+ flights
7173
+
7174
+ // report : 2013-12-05 Binky Glen, LLC
7175
+ report
7176
+
7177
+ // partners : 2013-12-05 Magic Glen, LLC
7178
+ partners
7179
+
7180
+ // neustar : 2013-12-05 NeuStar, Inc.
7181
+ neustar
7182
+
7183
+ // rentals : 2013-12-05 Big Hollow,LLC
7184
+ rentals
7185
+
7186
+ // catering : 2013-12-05 New Falls. LLC
7187
+ catering
7188
+
7189
+ // community : 2013-12-05 Fox Orchard, LLC
7190
+ community
7191
+
7192
+ // maison : 2013-12-05 Victor Frostbite, LLC
7193
+ maison
7194
+
7195
+ // parts : 2013-12-05 Sea Goodbye, LLC
7196
+ parts
7197
+
7198
+ // cleaning : 2013-12-05 Fox Shadow, LLC
7199
+ cleaning
7200
+
7201
+ // okinawa : 2013-12-05 BusinessRalliart inc.
7202
+ okinawa
7203
+
7204
+ // foundation : 2013-12-05 John Dale, LLC
7205
+ foundation
7206
+
7207
+ // properties : 2013-12-05 Big Pass, LLC
7208
+ properties
7209
+
7210
+ // vacations : 2013-12-05 Atomic Tigers, LLC
7211
+ vacations
7212
+
7213
+ // productions : 2013-12-05 Magic Birch, LLC
7214
+ productions
7215
+
7216
+ // industries : 2013-12-05 Outer House, LLC
7217
+ industries
7218
+
7219
+ // haus : 2013-12-05 Pixie Edge, LLC
7220
+ haus
7221
+
7222
+ // vision : 2013-12-05 Koko Station, LLC
7223
+ vision
7224
+
7225
+ // mormon : 2013-12-05 IRI Domain Management, LLC (""Applicant"")
7226
+ mormon
7227
+
7228
+ // cards : 2013-12-05 Foggy Hollow, LLC
7229
+ cards
7230
+
7231
+ // ink : 2013-12-05 Top Level Design, LLC
7232
+ ink
7233
+
7234
+ // villas : 2013-12-05 New Sky, LLC
7235
+ villas
7236
+
7237
+ // consulting : 2013-12-05 Pixie Station, LLC
7238
+ consulting
7239
+
7240
+ // cruises : 2013-12-05 Spring Way, LLC
7241
+ cruises
7242
+
7243
+ // krd : 2013-12-05 KRG Department of Information Technology
7244
+ krd
7245
+
7246
+ // xyz : 2013-12-05 XYZ.COM LLC
7247
+ xyz
7248
+
7249
+ // dating : 2013-12-05 Pine Fest, LLC
7250
+ dating
7251
+
7252
+ // exposed : 2013-12-05 Victor Beach, LLC
7253
+ exposed
7254
+
7255
+ // condos : 2013-12-05 Pine House, LLC
7256
+ condos
7257
+
7258
+ // eus : 2013-12-12 Puntueus Fundazioa
7259
+ eus
7260
+
7261
+ // Caravan : 2013-12-12 Caravan International, Inc.
7262
+ caravan
7263
+
7264
+ // actor : 2013-12-12 United TLD Holdco Ltd.
7265
+ actor
7266
+
7267
+ // saarland : 2013-12-12 dotSaarland GmbH
7268
+ saarland
7269
+
7270
+ // yokohama : 2013-12-12 GMO Registry, Inc.
7271
+ yokohama
7272
+
7273
+ // pub : 2013-12-12 United TLD Holdco Ltd.
7274
+ pub
7275
+
7276
+ // xn--p1acf : 2013-12-12 Rusnames Limited
7277
+ рус
7278
+
7279
+ // ren : 2013-12-12 Beijing Qianxiang Wangjing Technology Development Co., Ltd.
7280
+ ren
7281
+
7282
+ // fish : 2013-12-12 Fox Woods, LLC
7283
+ fish
7284
+
7285
+ // BAR : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
7286
+ bar
7287
+
7288
+ // DNP : 2013-12-13 Dai Nippon Printing Co., Ltd.
7289
+ dnp
7290
+
7291
+ // bid : 2013-12-19 dot Bid Limited
7292
+ bid
7293
+
7294
+ // supply : 2013-12-19 Half Falls, LLC
7295
+ supply
7296
+
7297
+ // Miami : 2013-12-19 Top Level Domain Holdings Limited
7298
+ miami
7299
+
7300
+ // supplies : 2013-12-19 Atomic Fields, LLC
7301
+ supplies
7302
+
7303
+ // quebec : 2013-12-19 PointQuébec Inc
7304
+ quebec
7305
+
7306
+ // MOSCOW : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
7307
+ moscow
7308
+
7309
+ // globo : 2013-12-19 Globo Comunicação e Participações S.A
7310
+ globo
7311
+
7312
+ // AXA : 2013-12-19 AXA SA
7313
+ axa
7314
+
7315
+ // xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
7316
+ москва
7317
+
7318
+ // xn--czrs0t : 2013-12-19 Wild Island, LLC
7319
+ 商店
7320
+
7321
+ // vodka : 2013-12-19 Top Level Domain Holdings Limited
7322
+ vodka
7323
+
7324
+ // REST : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
7325
+ rest
7326
+
7327
+ // frogans : 2013-12-19 OP3FT
7328
+ frogans
7329
+
7330
+ // WTC : 2013-12-19 World Trade Centers Association, Inc.
7331
+ wtc
7332
+
7333
+ // rodeo : 2013-12-19 Top Level Domain Holdings Limited
7334
+ rodeo
7335
+
7336
+ // sohu : 2013-12-19 Sohu.com Limited
7337
+ sohu
7338
+
7339
+ // BEST : 2013-12-19 BestTLD Pty Ltd
7340
+ best
7341
+
7342
+ // country : 2013-12-19 Top Level Domain Holdings Limited
7343
+ country
7344
+
7345
+ // KRED : 2013-12-19 KredTLD Pty Ltd
7346
+ kred
7347
+
7348
+ // feedback : 2013-12-19 Top Level Spectrum, Inc.
7349
+ feedback
7350
+
7351
+ // work : 2013-12-19 Top Level Domain Holdings Limited
7352
+ work
7353
+
7354
+ // luxe : 2014-01-09 Top Level Domain Holdings Limited
7355
+ luxe
7356
+
7357
+ // ryukyu : 2014-01-09 BusinessRalliart inc.
7358
+ ryukyu
7359
+
7360
+ // autos : 2014-01-09 DERAutos, LLC
7361
+ autos
7362
+
7363
+ // homes : 2014-01-09 DERHomes, LLC
7364
+ homes
7365
+
7366
+ // jetzt : 2014-01-09 New TLD Company AB
7367
+ jetzt
7368
+
7369
+ // yachts : 2014-01-09 DERYachts, LLC
7370
+ yachts
7371
+
7372
+ // motorcycles : 2014-01-09 DERMotorcycles, LLC
7373
+ motorcycles
7374
+
7375
+ // mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
7376
+ mini
7377
+
7378
+ // ggee : 2014-01-09 GMO Internet, Inc.
7379
+ ggee
7380
+
7381
+ // beer : 2014-01-09 Top Level Domain Holdings Limited
7382
+ beer
7383
+
7384
+ // xn--1qqw23a : 2014-01-13 Guangzhou YU Wei Information Technology Co., Ltd.
7385
+ 佛山
7386
+
7387
+ // college : 2014-01-16 XYZ.COM LLC
7388
+ college
7389
+
7390
+ // ovh : 2014-01-16 OVH SAS
7391
+ ovh
7392
+
7393
+ // meet : 2014-01-16 Afilias Limited
7394
+ meet
7395
+
7396
+ // xn--ses554g : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES (HOLDING) COMPANY. HONGKONG LIMITED
7397
+ 网址
6290
7398
 
6291
- // uy : http://www.nic.org.uy/
6292
- uy
6293
- com.uy
6294
- edu.uy
6295
- gub.uy
6296
- mil.uy
6297
- net.uy
6298
- org.uy
7399
+ // gop : 2014-01-16 Republican State Leadership Committee, Inc.
7400
+ gop
6299
7401
 
6300
- // uz : http://www.reg.uz/
6301
- uz
6302
- co.uz
6303
- com.uz
6304
- net.uz
6305
- org.uz
7402
+ // blackfriday : 2014-01-16 Uniregistry, Corp.
7403
+ blackfriday
6306
7404
 
6307
- // va : http://en.wikipedia.org/wiki/.va
6308
- va
7405
+ // lacaixa : 2014-01-16 CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
7406
+ lacaixa
6309
7407
 
6310
- // vc : http://en.wikipedia.org/wiki/.vc
6311
- // Submitted by registry <kshah@ca.afilias.info> 2008-06-13
6312
- vc
6313
- com.vc
6314
- net.vc
6315
- org.vc
6316
- gov.vc
6317
- mil.vc
6318
- edu.vc
7408
+ // xn--czr694b : 2014-01-16 HU YI GLOBAL INFORMATION RESOURCES(HOLDING) COMPANY.HONGKONG LIMITED
7409
+ 商标
6319
7410
 
6320
- // ve : https://registro.nic.ve/
6321
- // Confirmed by registry 2012-10-04
6322
- ve
6323
- co.ve
6324
- com.ve
6325
- e12.ve
6326
- edu.ve
6327
- gov.ve
6328
- info.ve
6329
- mil.ve
6330
- net.ve
6331
- org.ve
6332
- web.ve
7411
+ // vegas : 2014-01-16 Dot Vegas, Inc.
7412
+ vegas
6333
7413
 
6334
- // vg : http://en.wikipedia.org/wiki/.vg
6335
- vg
7414
+ // black : 2014-01-16 Afilias Limited
7415
+ black
6336
7416
 
6337
- // vi : http://www.nic.vi/newdomainform.htm
6338
- // http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
6339
- // TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
6340
- // are available for registration (which they do not seem to be).
6341
- vi
6342
- co.vi
6343
- com.vi
6344
- k12.vi
6345
- net.vi
6346
- org.vi
7417
+ // soy : 2014-01-23 Charleston Road Registry Inc.
7418
+ soy
6347
7419
 
6348
- // vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
6349
- vn
6350
- com.vn
6351
- net.vn
6352
- org.vn
6353
- edu.vn
6354
- gov.vn
6355
- int.vn
6356
- ac.vn
6357
- biz.vn
6358
- info.vn
6359
- name.vn
6360
- pro.vn
6361
- health.vn
7420
+ // trade : 2014-01-23 Elite Registry Limited
7421
+ trade
6362
7422
 
6363
- // vu : http://en.wikipedia.org/wiki/.vu
6364
- // list of 2nd level tlds ?
6365
- vu
7423
+ // gent : 2014-01-23 COMBELL GROUP NV/SA
7424
+ gent
6366
7425
 
6367
- // wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
6368
- wf
7426
+ // ing : 2014-01-23 Charleston Road Registry Inc.
7427
+ ing
6369
7428
 
6370
- // ws : http://en.wikipedia.org/wiki/.ws
6371
- // http://samoanic.ws/index.dhtml
6372
- ws
6373
- com.ws
6374
- net.ws
6375
- org.ws
6376
- gov.ws
6377
- edu.ws
7429
+ // dad : 2014-01-23 Charleston Road Registry Inc.
7430
+ dad
6378
7431
 
6379
- // yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
6380
- yt
7432
+ // shriram : 2014-01-23 Shriram Capital Ltd.
7433
+ shriram
6381
7434
 
6382
- // IDN ccTLDs
6383
- // Please sort by ISO 3166 ccTLD, then punicode string
6384
- // when submitting patches and follow this format:
6385
- // <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD>
6386
- // [optional sponsoring org]
6387
- // <URL>
7435
+ // bayern : 2014-01-23 Bayern Connect GmbH
7436
+ bayern
6388
7437
 
6389
- // xn--mgbaam7a8h ("Emerat" Arabic) : AE
6390
- // http://nic.ae/english/arabicdomain/rules.jsp
6391
- امارات
7438
+ // scot : 2014-01-23 Dot Scot Registry Limited
7439
+ scot
6392
7440
 
6393
- // xn--54b7fta0cc ("Bangla" Bangla) : BD
6394
- বাংলা
7441
+ // webcam : 2014-01-23 dot Webcam Limited
7442
+ webcam
6395
7443
 
6396
- // xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhonggou>) : CN
6397
- // CNNIC
6398
- // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
6399
- 中国
7444
+ // foo : 2014-01-23 Charleston Road Registry Inc.
7445
+ foo
6400
7446
 
6401
- // xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhonggou>) : CN
6402
- // CNNIC
6403
- // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
6404
- 中國
7447
+ // eat : 2014-01-23 Charleston Road Registry Inc.
7448
+ eat
6405
7449
 
6406
- // xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ
6407
- الجزائر
7450
+ // nyc : 2014-01-23 The City of New York
7451
+ nyc
6408
7452
 
6409
- // xn--wgbh1c ("Egypt" Arabic .masr) : EG
6410
- // http://www.dotmasr.eg/
6411
- مصر
7453
+ // prod : 2014-01-23 Charleston Road Registry Inc.
7454
+ prod
6412
7455
 
6413
- // xn--node ("ge" Georgian (Mkhedruli)) : GE
6414
- გე
7456
+ // how : 2014-01-23 Charleston Road Registry Inc.
7457
+ how
6415
7458
 
6416
- // xn--j6w193g ("Hong Kong" Chinese-Han) : HK
6417
- // https://www2.hkirc.hk/register/rules.jsp
6418
- 香港
7459
+ // day : 2014-01-30 Charleston Road Registry Inc.
7460
+ day
6419
7461
 
6420
- // xn--h2brj9c ("Bharat" Devanagari) : IN
6421
- // India
6422
- भारत
7462
+ // meme : 2014-01-30 Charleston Road Registry Inc.
7463
+ meme
6423
7464
 
6424
- // xn--mgbbh1a71e ("Bharat" Arabic) : IN
6425
- // India
6426
- بھارت
7465
+ // mov : 2014-01-30 Charleston Road Registry Inc.
7466
+ mov
6427
7467
 
6428
- // xn--fpcrj9c3d ("Bharat" Telugu) : IN
6429
- // India
6430
- భారత్
7468
+ // paris : 2014-01-30 City of Paris
7469
+ paris
6431
7470
 
6432
- // xn--gecrj9c ("Bharat" Gujarati) : IN
6433
- // India
6434
- ભારત
7471
+ // boo : 2014-01-30 Charleston Road Registry Inc.
7472
+ boo
6435
7473
 
6436
- // xn--s9brj9c ("Bharat" Gurmukhi) : IN
6437
- // India
6438
- ਭਾਰਤ
7474
+ // new : 2014-01-30 Charleston Road Registry Inc.
7475
+ new
6439
7476
 
6440
- // xn--45brj9c ("Bharat" Bengali) : IN
6441
- // India
6442
- ভারত
7477
+ // ifm : 2014-01-30 ifm electronic gmbh
7478
+ ifm
6443
7479
 
6444
- // xn--xkc2dl3a5ee0h ("India" Tamil) : IN
6445
- // India
6446
- இந்தியா
7480
+ // life : 2014-02-06 Trixy Oaks, LLC
7481
+ life
6447
7482
 
6448
- // xn--mgba3a4f16a ("Iran" Persian) : IR
6449
- ایران
7483
+ // archi : 2014-02-06 STARTING DOT LIMITED
7484
+ archi
6450
7485
 
6451
- // xn--mgba3a4fra ("Iran" Arabic) : IR
6452
- ايران
7486
+ // spiegel : 2014-02-06 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
7487
+ spiegel
6453
7488
 
6454
- // xn--mgbayh7gpa ("al-Ordon" Arabic) : JO
6455
- // National Information Technology Center (NITC)
6456
- // Royal Scientific Society, Al-Jubeiha
6457
- الاردن
7489
+ // brussels : 2014-02-06 DNS.be vzw
7490
+ brussels
6458
7491
 
6459
- // xn--3e0b707e ("Republic of Korea" Hangul) : KR
6460
- 한국
7492
+ // church : 2014-02-06 Holly Fileds, LLC
7493
+ church
6461
7494
 
6462
- // xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK
6463
- // http://nic.lk
6464
- ලංකා
7495
+ // here : 2014-02-06 Charleston Road Registry Inc.
7496
+ here
6465
7497
 
6466
- // xn--xkc2al3hye2a ("Ilangai" Tamil) : LK
6467
- // http://nic.lk
6468
- இலங்கை
7498
+ // dabur : 2014-02-06 Dabur India Limited
7499
+ dabur
6469
7500
 
6470
- // xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA
6471
- المغرب
7501
+ // vlaanderen : 2014-02-06 DNS.be vzw
7502
+ vlaanderen
6472
7503
 
6473
- // xn--mgb9awbf ("Oman" Arabic) : OM
6474
- عمان
7504
+ // cologne : 2014-02-06 NetCologne Gesellschaft für Telekommunikation mbH
7505
+ cologne
6475
7506
 
6476
- // xn--ygbi2ammx ("Falasteen" Arabic) : PS
6477
- // The Palestinian National Internet Naming Authority (PNINA)
6478
- // http://www.pnina.ps
6479
- فلسطين
7507
+ // xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
7508
+ 手机
6480
7509
 
6481
- // xn--90a3ac ("srb" Cyrillic) : RS
6482
- срб
7510
+ // wme : 2014-02-13 William Morris Endeavor Entertainment, LLC
7511
+ wme
6483
7512
 
6484
- // xn--p1ai ("rf" Russian-Cyrillic) : RU
6485
- // http://www.cctld.ru/en/docs/rulesrf.php
6486
- рф
7513
+ // nhk : 2014-02-13 Japan Broadcasting Corporation (NHK)
7514
+ nhk
6487
7515
 
6488
- // xn--wgbl6a ("Qatar" Arabic) : QA
6489
- // http://www.ict.gov.qa/
6490
- قطر
7516
+ // suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
7517
+ suzuki
6491
7518
 
6492
- // xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA
6493
- // http://www.nic.net.sa/
6494
- السعودية
7519
+ // whoswho : 2014-02-20 Who's Who Registry
7520
+ whoswho
6495
7521
 
6496
- // xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA
6497
- السعودیة
7522
+ // scb : 2014-02-20 The Siam Commercial Bank Public Company Limited ("SCB""\)
7523
+ scb
6498
7524
 
6499
- // xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA
6500
- السعودیۃ
7525
+ // hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
7526
+ hamburg
6501
7527
 
6502
- // xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA
6503
- السعوديه
7528
+ // services : 2014-02-27 Fox Castle, LLC
7529
+ services
6504
7530
 
6505
- // xn--ogbpf8fl ("Syria" Arabic) : SY
6506
- سورية
7531
+ // bzh : 2014-02-27 Association www.bzh
7532
+ bzh
6507
7533
 
6508
- // xn--mgbtf8fl ("Syria" Arabic) variant : SY
6509
- سوريا
7534
+ // rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
7535
+ rio
6510
7536
 
6511
- // xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG
6512
- 新加坡
7537
+ // cash : 2014-03-07 Delta Lake, LLC
7538
+ cash
6513
7539
 
6514
- // xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG
6515
- சிங்கப்பூர்
7540
+ // gives : 2014-03-07 United TLD Holdco Ltd.
7541
+ gives
6516
7542
 
6517
- // xn--o3cw4h ("Thai" Thai) : TH
6518
- // http://www.thnic.co.th
6519
- ไทย
7543
+ // hiphop : 2014-03-07 Uniregistry, Corp.
7544
+ hiphop
6520
7545
 
6521
- // xn--pgbs0dh ("Tunis") : TN
6522
- // http://nic.tn
6523
- تونس
7546
+ // degree : 2014-03-07 Puff House, LLC
7547
+ degree
6524
7548
 
6525
- // xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW
6526
- // http://www.twnic.net/english/dn/dn_07a.htm
6527
- 台灣
7549
+ // digital : 2014-03-07 Dash Park, LLC
7550
+ digital
6528
7551
 
6529
- // xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW
6530
- // http://www.twnic.net/english/dn/dn_07a.htm
6531
- 台湾
7552
+ // rehab : 2014-03-07 United TLD Holdco Ltd.
7553
+ rehab
6532
7554
 
6533
- // xn--nnx388a ("Taiwan") variant : TW
6534
- 臺灣
7555
+ // wtf : 2014-03-07 Hidden Way, LLC
7556
+ wtf
6535
7557
 
6536
- // xn--j1amh ("ukr" Cyrillic) : UA
6537
- укр
7558
+ // financial : 2014-03-07 Just Cover, LLC
7559
+ financial
6538
7560
 
6539
- // xn--mgb2ddes ("AlYemen" Arabic) : YE
6540
- اليمن
7561
+ // limited : 2014-03-07 Big Fest, LLC
7562
+ limited
6541
7563
 
6542
- // xxx : http://icmregistry.com
6543
- xxx
7564
+ // discount : 2014-03-07 Holly Hill, LLC
7565
+ discount
6544
7566
 
6545
- // ye : http://www.y.net.ye/services/domain_name.htm
6546
- *.ye
7567
+ // fail : 2014-03-07 Atomic Pipe, LLC
7568
+ fail
6547
7569
 
6548
- // za : http://www.zadna.org.za/slds.html
6549
- *.za
7570
+ // vet : 2014-03-07 Wild Dale, LLC
7571
+ vet
6550
7572
 
6551
- // zm : http://en.wikipedia.org/wiki/.zm
6552
- *.zm
7573
+ // ngo : 2014-03-07 Public Interest Registry
7574
+ ngo
7575
+
7576
+ // fitness : 2014-03-07 Brice Orchard, LLC
7577
+ fitness
7578
+
7579
+ // schule : 2014-03-07 Outer Moon, LLC
7580
+ schule
7581
+
7582
+ // navy : 2014-03-07 United TLD Holdco Ltd.
7583
+ navy
7584
+
7585
+ // bio : 2014-03-07 STARTING DOT LIMITED
7586
+ bio
7587
+
7588
+ // ong : 2014-03-07 Public Interest Registry
7589
+ ong
7590
+
7591
+ // town : 2014-03-07 Koko Moon, LLC
7592
+ town
7593
+
7594
+ // toys : 2014-03-07 Pioneer Orchard, LLC
7595
+ toys
7596
+
7597
+ // army : 2014-03-07 United TLD Holdco Ltd.
7598
+ army
7599
+
7600
+ // engineering : 2014-03-07 Romeo Canyon
7601
+ engineering
7602
+
7603
+ // capital : 2014-03-07 Delta Mill, LLC
7604
+ capital
7605
+
7606
+ // exchange : 2014-03-07 Spring Falls, LLC
7607
+ exchange
7608
+
7609
+ // fan : 2014-03-07 Goose Glen, LLC
7610
+ fan
7611
+
7612
+ // market : 2014-03-07 Victor Way, LLC
7613
+ market
7614
+
7615
+ // media : 2014-03-07 Grand Glen, LLC
7616
+ media
7617
+
7618
+ // lease : 2014-03-07 Victor Trail, LLC
7619
+ lease
7620
+
7621
+ // university : 2014-03-07 Little Station, LLC
7622
+ university
7623
+
7624
+ // reisen : 2014-03-07 New Cypress, LLC
7625
+ reisen
7626
+
7627
+ // airforce : 2014-03-07 United TLD Holdco Ltd.
7628
+ airforce
7629
+
7630
+ // pictures : 2014-03-07 Foggy Sky, LLC
7631
+ pictures
7632
+
7633
+ // gripe : 2014-03-07 Corn Sunset, LLC
7634
+ gripe
7635
+
7636
+ // engineering : 2014-03-07 United TLD Holdco Ltd.
7637
+ engineering
7638
+
7639
+ // associates : 2014-03-07 Baxter Hill, LLC
7640
+ associates
7641
+
7642
+ // xn--mxtq1m : 2014-03-07 Net-Chinese Co., Ltd.
7643
+ 政府
7644
+
7645
+ // williamhill : 2014-03-13 William Hill Organization Limited
7646
+ williamhill
7647
+
7648
+ // hiv : 2014-03-13 dotHIV gemeinnuetziger e.V.
7649
+ hiv
7650
+
7651
+ // sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)
7652
+ sca
7653
+
7654
+ // reise : 2014-03-13 dotreise GmbH
7655
+ reise
6553
7656
 
6554
- // zw : http://en.wikipedia.org/wiki/.zw
6555
- *.zw
6556
7657
 
6557
7658
  // ===END ICANN DOMAINS===
6558
7659
  // ===BEGIN PRIVATE DOMAINS===
6559
7660
 
6560
7661
  // Amazon CloudFront : https://aws.amazon.com/cloudfront/
6561
- // Requested by Donavan Miller <donavanm@amazon.com> 2013-03-22
7662
+ // Submitted by Donavan Miller <donavanm@amazon.com> 2013-03-22
6562
7663
  cloudfront.net
6563
7664
 
7665
+ // Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
7666
+ // Submitted by Osman Surkatty <osmans@amazon.com> 2013-04-02
7667
+ compute.amazonaws.com
7668
+ us-east-1.amazonaws.com
7669
+ compute-1.amazonaws.com
7670
+ z-1.compute-1.amazonaws.com
7671
+ z-2.compute-1.amazonaws.com
7672
+ ap-northeast-1.compute.amazonaws.com
7673
+ ap-southeast-1.compute.amazonaws.com
7674
+ ap-southeast-2.compute.amazonaws.com
7675
+ eu-west-1.compute.amazonaws.com
7676
+ sa-east-1.compute.amazonaws.com
7677
+ us-gov-west-1.compute.amazonaws.com
7678
+ us-west-1.compute.amazonaws.com
7679
+ us-west-2.compute.amazonaws.com
7680
+
7681
+ // Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
7682
+ // Submitted by Adam Stein <astein@amazon.com> 2013-04-02
7683
+ elasticbeanstalk.com
7684
+
6564
7685
  // Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
6565
- // Requested by Scott Vidmar <svidmar@amazon.com> 2013-03-27
7686
+ // Submitted by Scott Vidmar <svidmar@amazon.com> 2013-03-27
6566
7687
  elb.amazonaws.com
6567
7688
 
6568
7689
  // Amazon S3 : https://aws.amazon.com/s3/
6569
- // Requested by Courtney Eckhardt <coec@amazon.com> 2013-03-22
7690
+ // Submitted by Courtney Eckhardt <coec@amazon.com> 2013-03-22
6570
7691
  s3.amazonaws.com
6571
7692
  s3-us-west-2.amazonaws.com
6572
7693
  s3-us-west-1.amazonaws.com
@@ -6588,11 +7709,11 @@ s3-website-sa-east-1.amazonaws.com
6588
7709
  s3-website-us-gov-west-1.amazonaws.com
6589
7710
 
6590
7711
  // BetaInABox
6591
- // Requested by adrian@betainabox.com 2012-09-13
7712
+ // Submitted by adrian@betainabox.com 2012-09-13
6592
7713
  betainabox.com
6593
7714
 
6594
7715
  // CentralNic : http://www.centralnic.com/names/domains
6595
- // Requested by registry <gavin.brown@centralnic.com> 2012-09-27
7716
+ // Submitted by registry <gavin.brown@centralnic.com> 2012-09-27
6596
7717
  ae.org
6597
7718
  ar.com
6598
7719
  br.com
@@ -6602,12 +7723,12 @@ de.com
6602
7723
  eu.com
6603
7724
  gb.com
6604
7725
  gb.net
6605
- gr.com
6606
7726
  hu.com
6607
7727
  hu.net
6608
7728
  jp.net
6609
7729
  jpn.com
6610
7730
  kr.com
7731
+ mex.com
6611
7732
  no.com
6612
7733
  qc.com
6613
7734
  ru.com
@@ -6617,13 +7738,38 @@ se.net
6617
7738
  uk.com
6618
7739
  uk.net
6619
7740
  us.com
6620
- us.org
6621
7741
  uy.com
7742
+ za.bz
6622
7743
  za.com
6623
7744
 
7745
+ // Africa.com Web Solutions Ltd : https://registry.africa.com
7746
+ // Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
7747
+ africa.com
7748
+
7749
+ // iDOT Services Limited : http://www.domain.gr.com
7750
+ // Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
7751
+ gr.com
7752
+
7753
+ // Radix FZC : http://domains.in.net
7754
+ // Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
7755
+ in.net
7756
+
7757
+ // US REGISTRY LLC : http://us.org
7758
+ // Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
7759
+ us.org
7760
+
7761
+ // co.com Registry, LLC : https://registry.co.com
7762
+ // Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
7763
+ co.com
7764
+
6624
7765
  // c.la : http://www.c.la/
6625
7766
  c.la
6626
7767
 
7768
+ // cloudControl : https://www.cloudcontrol.com/
7769
+ // Submitted by Tobias Wilken <tw@cloudcontrol.com> 2013-07-23
7770
+ cloudcontrolled.com
7771
+ cloudcontrolapp.com
7772
+
6627
7773
  // co.ca : http://registry.co.ca/
6628
7774
  co.ca
6629
7775
 
@@ -6631,8 +7777,12 @@ co.ca
6631
7777
  co.nl
6632
7778
  co.no
6633
7779
 
7780
+ // Cupcake : https://cupcake.io/
7781
+ // Submitted by Jonathan Rudenberg <jonathan@cupcake.io> 2013-10-08
7782
+ cupcake.is
7783
+
6634
7784
  // DreamHost : http://www.dreamhost.com/
6635
- // Requested by Andrew Farmer <andrew.farmer@dreamhost.com> 2012-10-02
7785
+ // Submitted by Andrew Farmer <andrew.farmer@dreamhost.com> 2012-10-02
6636
7786
  dreamhosters.com
6637
7787
 
6638
7788
  // DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
@@ -6916,8 +8066,25 @@ webhop.org
6916
8066
  worse-than.tv
6917
8067
  writesthisblog.com
6918
8068
 
8069
+ // Fastly Inc. http://www.fastly.com/
8070
+ // Submitted by Vladimir Vuksan <vladimir@fastly.com> 2013-05-31
8071
+ a.ssl.fastly.net
8072
+ b.ssl.fastly.net
8073
+ global.ssl.fastly.net
8074
+ a.prod.fastly.net
8075
+ global.prod.fastly.net
8076
+
8077
+ // GitHub, Inc.
8078
+ // Submitted by Ben Toews <btoews@github.com> 2014-02-06
8079
+ github.io
8080
+ githubusercontent.com
8081
+
8082
+ // GlobeHosting, Inc.
8083
+ // Submitted by Zoltan Egresi <egresi@globehosting.com> 2013-07-12
8084
+ ro.com
8085
+
6919
8086
  // Google, Inc.
6920
- // Requested by Eduardo Vela <evn@google.com> 2012-10-24
8087
+ // Submitted by Eduardo Vela <evn@google.com> 2012-10-24
6921
8088
  appspot.com
6922
8089
  blogspot.be
6923
8090
  blogspot.bj
@@ -6962,9 +8129,15 @@ blogspot.tw
6962
8129
  codespot.com
6963
8130
  googleapis.com
6964
8131
  googlecode.com
8132
+ withgoogle.com
8133
+
8134
+ // Heroku : https://www.heroku.com/
8135
+ // Submitted by Tom Maher <tmaher@heroku.com> 2013-05-02
8136
+ herokuapp.com
8137
+ herokussl.com
6965
8138
 
6966
8139
  // iki.fi
6967
- // Requested by Hannu Aronsson <haa@iki.fi> 2009-11-05
8140
+ // Submitted by Hannu Aronsson <haa@iki.fi> 2009-11-05
6968
8141
  iki.fi
6969
8142
 
6970
8143
  // info.at : http://www.info.at/
@@ -6974,24 +8147,34 @@ info.at
6974
8147
  // Michau Enterprises Limited : http://www.co.pl/
6975
8148
  co.pl
6976
8149
 
8150
+ // Microsoft : http://microsoft.com
8151
+ // Submitted by Barry Dorrans <bdorrans@microsoft.com> 2014-01-24
8152
+ azurewebsites.net
8153
+ azure-mobile.net
8154
+ cloudapp.net
8155
+
6977
8156
  // NYC.mn : http://www.information.nyc.mn
6978
- // Requested by Matthew Brown <mattbrown@nyc.mn> 2013-03-11
8157
+ // Submitted by Matthew Brown <mattbrown@nyc.mn> 2013-03-11
6979
8158
  nyc.mn
6980
8159
 
6981
8160
  // Opera Software, A.S.A.
6982
- // Requested by Yngve Pettersen <yngve@opera.com> 2009-11-26
8161
+ // Submitted by Yngve Pettersen <yngve@opera.com> 2009-11-26
6983
8162
  operaunite.com
6984
8163
 
8164
+ // OutSystems
8165
+ // Submitted by Duarte Santos <domain-admin@outsystemscloud.com> 2014-03-11
8166
+ outsystemscloud.com
8167
+
6985
8168
  // Red Hat, Inc. OpenShift : https://openshift.redhat.com/
6986
- // Requested by Tim Kramer <tkramer@rhcloud.com> 2012-10-24
8169
+ // Submitted by Tim Kramer <tkramer@rhcloud.com> 2012-10-24
6987
8170
  rhcloud.com
6988
8171
 
6989
8172
  // priv.at : http://www.nic.priv.at/
6990
- // Requested by registry <lendl@nic.at> 2008-06-09
8173
+ // Submitted by registry <lendl@nic.at> 2008-06-09
6991
8174
  priv.at
6992
8175
 
6993
8176
  // ZaNiC : http://www.za.net/
6994
- // Requested by registry <hostmaster@nic.za.net> 2009-10-03
8177
+ // Submitted by registry <hostmaster@nic.za.net> 2009-10-03
6995
8178
  za.net
6996
8179
  za.org
6997
8180