public_suffix 3.0.3 → 4.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +12 -0
- data/.github/workflows/tests.yml +36 -0
- data/.gitignore +5 -8
- data/.rubocop.yml +2 -2
- data/{.rubocop_defaults.yml → .rubocop_opinionated.yml} +12 -39
- data/.travis.yml +5 -7
- data/CHANGELOG.md +116 -50
- data/Gemfile +9 -4
- data/LICENSE.txt +1 -1
- data/README.md +20 -15
- data/Rakefile +3 -1
- data/SECURITY.md +104 -0
- data/bin/console +1 -0
- data/codecov.yml +12 -0
- data/data/list.txt +1097 -376
- data/lib/public_suffix.rb +8 -4
- data/lib/public_suffix/domain.rb +4 -2
- data/lib/public_suffix/errors.rb +3 -1
- data/lib/public_suffix/list.rb +12 -8
- data/lib/public_suffix/rule.rb +4 -2
- data/lib/public_suffix/version.rb +5 -2
- data/public_suffix.gemspec +9 -5
- data/test/acceptance_test.rb +33 -29
- data/test/psl_test.rb +4 -1
- data/test/test_helper.rb +9 -4
- data/test/unit/domain_test.rb +2 -0
- data/test/unit/errors_test.rb +2 -0
- data/test/unit/list_test.rb +2 -0
- data/test/unit/public_suffix_test.rb +13 -11
- data/test/unit/rule_test.rb +32 -30
- metadata +16 -51
- data/.ruby-gemset +0 -1
data/Gemfile
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
source "https://rubygems.org"
|
2
4
|
|
3
5
|
gemspec
|
4
6
|
|
5
|
-
gem "
|
6
|
-
gem "minitest"
|
7
|
-
gem "minitest-reporters"
|
8
|
-
gem "rubocop", require: false
|
7
|
+
gem "rake"
|
9
8
|
|
9
|
+
gem "codecov", require: false
|
10
10
|
gem "memory_profiler", require: false
|
11
|
+
gem "minitest"
|
12
|
+
gem "minitest-reporters"
|
13
|
+
gem "mocha"
|
14
|
+
gem "rubocop", "~>0.90", require: false
|
15
|
+
gem "yard"
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -2,14 +2,21 @@
|
|
2
2
|
|
3
3
|
<tt>PublicSuffix</tt> is a Ruby domain name parser based on the [Public Suffix List](https://publicsuffix.org/).
|
4
4
|
|
5
|
-
[![Build Status](https://travis-ci.
|
5
|
+
[![Build Status](https://travis-ci.com/weppos/publicsuffix-ruby.svg?branch=master)](https://travis-ci.com/weppos/publicsuffix-ruby)
|
6
|
+
[![Tidelift dependencies](https://tidelift.com/badges/package/rubygems/public_suffix)](https://tidelift.com/subscription/pkg/rubygems-public-suffix?utm_source=rubygems-public-suffix&utm_medium=referral&utm_campaign=enterprise)
|
6
7
|
|
7
8
|
|
8
|
-
##
|
9
|
+
## Links
|
10
|
+
|
11
|
+
- [Homepage](https://simonecarletti.com/code/publicsuffix-ruby)
|
12
|
+
- [Repository](https://github.com/weppos/publicsuffix-ruby)
|
13
|
+
- [API Documentation](https://rubydoc.info/gems/public_suffix)
|
14
|
+
- [Introducing the Public Suffix List library for Ruby](https://simonecarletti.com/blog/2010/06/public-suffix-list-library-for-ruby/)
|
9
15
|
|
10
|
-
- Ruby >= 2.1
|
11
16
|
|
12
|
-
|
17
|
+
## Requirements
|
18
|
+
|
19
|
+
<tt>PublicSuffix</tt> requires **Ruby >= 2.3**. For an older versions of Ruby use a previous release.
|
13
20
|
|
14
21
|
|
15
22
|
## Installation
|
@@ -17,7 +24,7 @@ For an older versions of Ruby use a previous release.
|
|
17
24
|
You can install the gem manually:
|
18
25
|
|
19
26
|
```shell
|
20
|
-
|
27
|
+
gem install public_suffix
|
21
28
|
```
|
22
29
|
|
23
30
|
Or use Bundler and define it as a dependency in your `Gemfile`:
|
@@ -173,21 +180,19 @@ Not convinced yet? Check out [this real world example](https://stackoverflow.com
|
|
173
180
|
No. <tt>PublicSuffix</tt> comes with a bundled list. It does not make any HTTP requests to parse or validate a domain.
|
174
181
|
|
175
182
|
|
176
|
-
##
|
183
|
+
## Support
|
177
184
|
|
178
|
-
|
185
|
+
Library documentation is auto-generated from the [README](https://github.com/weppos/publicsuffix-ruby/blob/master/README.md) and the source code, and it's available at https://rubydoc.info/gems/public_suffix.
|
179
186
|
|
180
|
-
|
187
|
+
- The PublicSuffix bug tracker is here: https://github.com/weppos/publicsuffix-ruby/issues
|
188
|
+
- The PublicSuffix code repository is here: https://github.com/weppos/publicsuffix-ruby. Contributions are welcome! Please include tests and/or feature coverage for every patch, and create a topic branch for every separate change you make.
|
181
189
|
|
182
|
-
|
190
|
+
[Consider subscribing to Tidelift which provides Enterprise support for this project](https://tidelift.com/subscription/pkg/rubygems-public-suffix?utm_source=rubygems-public-suffix&utm_medium=referral&utm_campaign=readme) as part of the Tidelift Subscription. Tidelift subscriptions also help the maintainers by funding the project, which in turn allows us to ship releases, bugfixes, and security updates more often.
|
183
191
|
|
184
192
|
|
185
|
-
##
|
193
|
+
## Security and Vulnerability Reporting
|
186
194
|
|
187
|
-
|
188
|
-
- [Repository](https://github.com/weppos/publicsuffix-ruby)
|
189
|
-
- [API Documentation](http://rubydoc.info/gems/public_suffix)
|
190
|
-
- [Introducing the Public Suffix List library for Ruby](https://simonecarletti.com/blog/2010/06/public-suffix-list-library-for-ruby/)
|
195
|
+
Full information and description of our security policy please visit [`SECURITY.md`](SECURITY.md)
|
191
196
|
|
192
197
|
|
193
198
|
## Changelog
|
@@ -197,6 +202,6 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
|
|
197
202
|
|
198
203
|
## License
|
199
204
|
|
200
|
-
Copyright (c) 2009-
|
205
|
+
Copyright (c) 2009-2020 Simone Carletti. This is Free Software distributed under the MIT license.
|
201
206
|
|
202
207
|
The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
|
data/Rakefile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "bundler/gem_tasks"
|
2
4
|
|
3
5
|
# By default, run tests and linter.
|
@@ -39,7 +41,7 @@ desc "Downloads the Public Suffix List file from the repository and stores it lo
|
|
39
41
|
task :"update-list" do
|
40
42
|
require "net/http"
|
41
43
|
|
42
|
-
DEFINITION_URL = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat"
|
44
|
+
DEFINITION_URL = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat"
|
43
45
|
|
44
46
|
File.open("data/list.txt", "w+") do |f|
|
45
47
|
response = Net::HTTP.get_response(URI.parse(DEFINITION_URL))
|
data/SECURITY.md
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
# Security Policy
|
2
|
+
|
3
|
+
## Supported Versions
|
4
|
+
|
5
|
+
Security updates are provided only for the current minor version.
|
6
|
+
|
7
|
+
If you are using a previous minor version, we recommend to upgrade to the current minor version.
|
8
|
+
This project uses [semantic versioning](https://semver.org/), therefore you can upgrade to a more recent minor version without incurring into breaking changes.
|
9
|
+
|
10
|
+
Exceptionally, we may support previous minor versions upon request if there are significant reasons preventing to immediately switch the latest minor version.
|
11
|
+
|
12
|
+
Older major versions are no longer supported.
|
13
|
+
|
14
|
+
|
15
|
+
## Reporting a Vulnerability
|
16
|
+
|
17
|
+
To make a report, please email weppos@weppos.net.
|
18
|
+
|
19
|
+
Please consider encrypting your report with GPG using the key [0x420da82a989398df](https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x420da82a989398df).
|
20
|
+
|
21
|
+
```
|
22
|
+
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
23
|
+
|
24
|
+
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
|
97
|
+
=j6Xr
|
98
|
+
-----END PGP PUBLIC KEY BLOCK-----
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
## Tracking Security Updates
|
103
|
+
|
104
|
+
Information about security vulnerabilities are published in the [Security Advisories](https://github.com/weppos/publicsuffix-ruby/security/advisories) page.
|
data/bin/console
CHANGED
data/codecov.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# https://docs.codecov.io/docs/coverage-configuration
|
2
|
+
coverage:
|
3
|
+
precision: 1
|
4
|
+
round: down
|
5
|
+
status:
|
6
|
+
project:
|
7
|
+
default: false
|
8
|
+
patch:
|
9
|
+
default: false
|
10
|
+
|
11
|
+
# https://docs.codecov.io/docs/pull-request-comments#section-requiring-changes
|
12
|
+
comment: off
|
data/data/list.txt
CHANGED
@@ -79,7 +79,6 @@ exchange.aero
|
|
79
79
|
express.aero
|
80
80
|
federation.aero
|
81
81
|
flight.aero
|
82
|
-
freight.aero
|
83
82
|
fuel.aero
|
84
83
|
gliding.aero
|
85
84
|
government.aero
|
@@ -155,8 +154,13 @@ mil.al
|
|
155
154
|
net.al
|
156
155
|
org.al
|
157
156
|
|
158
|
-
// am : https://
|
157
|
+
// am : https://www.amnic.net/policy/en/Policy_EN.pdf
|
159
158
|
am
|
159
|
+
co.am
|
160
|
+
com.am
|
161
|
+
commune.am
|
162
|
+
net.am
|
163
|
+
org.am
|
160
164
|
|
161
165
|
// ao : https://en.wikipedia.org/wiki/.ao
|
162
166
|
// http://www.dns.ao/REGISTR.DOC
|
@@ -208,6 +212,7 @@ ac.at
|
|
208
212
|
co.at
|
209
213
|
gv.at
|
210
214
|
or.at
|
215
|
+
sth.ac.at
|
211
216
|
|
212
217
|
// au : https://en.wikipedia.org/wiki/.au
|
213
218
|
// http://www.auda.org.au/
|
@@ -235,6 +240,8 @@ vic.au
|
|
235
240
|
wa.au
|
236
241
|
// 3LDs
|
237
242
|
act.edu.au
|
243
|
+
catholic.edu.au
|
244
|
+
// eq.edu.au - Removed at the request of the Queensland Department of Education
|
238
245
|
nsw.edu.au
|
239
246
|
nt.edu.au
|
240
247
|
qld.edu.au
|
@@ -250,6 +257,9 @@ sa.gov.au
|
|
250
257
|
tas.gov.au
|
251
258
|
vic.gov.au
|
252
259
|
wa.gov.au
|
260
|
+
// 4LDs
|
261
|
+
// education.tas.edu.au - Removed at the request of the Department of Education Tasmania
|
262
|
+
schools.nsw.edu.au
|
253
263
|
|
254
264
|
// aw : https://en.wikipedia.org/wiki/.aw
|
255
265
|
aw
|
@@ -446,6 +456,7 @@ aju.br
|
|
446
456
|
am.br
|
447
457
|
anani.br
|
448
458
|
aparecida.br
|
459
|
+
app.br
|
449
460
|
arq.br
|
450
461
|
art.br
|
451
462
|
ato.br
|
@@ -453,6 +464,7 @@ b.br
|
|
453
464
|
barueri.br
|
454
465
|
belem.br
|
455
466
|
bhz.br
|
467
|
+
bib.br
|
456
468
|
bio.br
|
457
469
|
blog.br
|
458
470
|
bmd.br
|
@@ -467,14 +479,19 @@ cnt.br
|
|
467
479
|
com.br
|
468
480
|
contagem.br
|
469
481
|
coop.br
|
482
|
+
coz.br
|
470
483
|
cri.br
|
471
484
|
cuiaba.br
|
472
485
|
curitiba.br
|
473
486
|
def.br
|
487
|
+
des.br
|
488
|
+
det.br
|
489
|
+
dev.br
|
474
490
|
ecn.br
|
475
491
|
eco.br
|
476
492
|
edu.br
|
477
493
|
emp.br
|
494
|
+
enf.br
|
478
495
|
eng.br
|
479
496
|
esp.br
|
480
497
|
etc.br
|
@@ -490,6 +507,7 @@ fot.br
|
|
490
507
|
foz.br
|
491
508
|
fst.br
|
492
509
|
g12.br
|
510
|
+
geo.br
|
493
511
|
ggf.br
|
494
512
|
goiania.br
|
495
513
|
gov.br
|
@@ -533,6 +551,7 @@ jor.br
|
|
533
551
|
jus.br
|
534
552
|
leg.br
|
535
553
|
lel.br
|
554
|
+
log.br
|
536
555
|
londrina.br
|
537
556
|
macapa.br
|
538
557
|
maceio.br
|
@@ -551,6 +570,7 @@ niteroi.br
|
|
551
570
|
not.br
|
552
571
|
ntr.br
|
553
572
|
odo.br
|
573
|
+
ong.br
|
554
574
|
org.br
|
555
575
|
osasco.br
|
556
576
|
palmas.br
|
@@ -564,6 +584,7 @@ qsl.br
|
|
564
584
|
radio.br
|
565
585
|
rec.br
|
566
586
|
recife.br
|
587
|
+
rep.br
|
567
588
|
ribeirao.br
|
568
589
|
rio.br
|
569
590
|
riobranco.br
|
@@ -574,12 +595,15 @@ santamaria.br
|
|
574
595
|
santoandre.br
|
575
596
|
saobernardo.br
|
576
597
|
saogonca.br
|
598
|
+
seg.br
|
577
599
|
sjc.br
|
578
600
|
slg.br
|
579
601
|
slz.br
|
580
602
|
sorocaba.br
|
581
603
|
srv.br
|
582
604
|
taxi.br
|
605
|
+
tc.br
|
606
|
+
tec.br
|
583
607
|
teo.br
|
584
608
|
the.br
|
585
609
|
tmp.br
|
@@ -707,11 +731,13 @@ gouv.ci
|
|
707
731
|
*.ck
|
708
732
|
!www.ck
|
709
733
|
|
710
|
-
// cl : https://
|
734
|
+
// cl : https://www.nic.cl
|
735
|
+
// Confirmed by .CL registry <hsalgado@nic.cl>
|
711
736
|
cl
|
712
|
-
|
713
|
-
gob.cl
|
737
|
+
aprendemas.cl
|
714
738
|
co.cl
|
739
|
+
gob.cl
|
740
|
+
gov.cl
|
715
741
|
mil.cl
|
716
742
|
|
717
743
|
// cm : https://en.wikipedia.org/wiki/.cm plus bug 981927
|
@@ -970,30 +996,44 @@ fi
|
|
970
996
|
// TODO: Check for updates (expected to be phased out around Q1/2009)
|
971
997
|
aland.fi
|
972
998
|
|
973
|
-
// fj :
|
974
|
-
|
999
|
+
// fj : http://domains.fj/
|
1000
|
+
// Submitted by registry <garth.miller@cocca.org.nz> 2020-02-11
|
1001
|
+
fj
|
1002
|
+
ac.fj
|
1003
|
+
biz.fj
|
1004
|
+
com.fj
|
1005
|
+
gov.fj
|
1006
|
+
info.fj
|
1007
|
+
mil.fj
|
1008
|
+
name.fj
|
1009
|
+
net.fj
|
1010
|
+
org.fj
|
1011
|
+
pro.fj
|
975
1012
|
|
976
1013
|
// fk : https://en.wikipedia.org/wiki/.fk
|
977
1014
|
*.fk
|
978
1015
|
|
979
1016
|
// fm : https://en.wikipedia.org/wiki/.fm
|
1017
|
+
com.fm
|
1018
|
+
edu.fm
|
1019
|
+
net.fm
|
1020
|
+
org.fm
|
980
1021
|
fm
|
981
1022
|
|
982
1023
|
// fo : https://en.wikipedia.org/wiki/.fo
|
983
1024
|
fo
|
984
1025
|
|
985
1026
|
// fr : http://www.afnic.fr/
|
986
|
-
// domaines descriptifs :
|
1027
|
+
// domaines descriptifs : https://www.afnic.fr/medias/documents/Cadre_legal/Afnic_Naming_Policy_12122016_VEN.pdf
|
987
1028
|
fr
|
988
|
-
com.fr
|
989
1029
|
asso.fr
|
1030
|
+
com.fr
|
1031
|
+
gouv.fr
|
990
1032
|
nom.fr
|
991
1033
|
prd.fr
|
992
|
-
presse.fr
|
993
1034
|
tm.fr
|
994
|
-
// domaines sectoriels :
|
1035
|
+
// domaines sectoriels : https://www.afnic.fr/en/products-and-services/the-fr-tld/sector-based-fr-domains-4.html
|
995
1036
|
aeroport.fr
|
996
|
-
assedic.fr
|
997
1037
|
avocat.fr
|
998
1038
|
avoues.fr
|
999
1039
|
cci.fr
|
@@ -1001,7 +1041,6 @@ chambagri.fr
|
|
1001
1041
|
chirurgiens-dentistes.fr
|
1002
1042
|
experts-comptables.fr
|
1003
1043
|
geometre-expert.fr
|
1004
|
-
gouv.fr
|
1005
1044
|
greta.fr
|
1006
1045
|
huissier-justice.fr
|
1007
1046
|
medecin.fr
|
@@ -1018,6 +1057,8 @@ ga
|
|
1018
1057
|
gb
|
1019
1058
|
|
1020
1059
|
// gd : https://en.wikipedia.org/wiki/.gd
|
1060
|
+
edu.gd
|
1061
|
+
gov.gd
|
1021
1062
|
gd
|
1022
1063
|
|
1023
1064
|
// ge : http://www.nic.net.ge/policy_en.pdf
|
@@ -1358,7 +1399,7 @@ it
|
|
1358
1399
|
gov.it
|
1359
1400
|
edu.it
|
1360
1401
|
// Reserved geo-names (regions and provinces):
|
1361
|
-
//
|
1402
|
+
// https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
|
1362
1403
|
// Regions
|
1363
1404
|
abr.it
|
1364
1405
|
abruzzo.it
|
@@ -1413,9 +1454,9 @@ taa.it
|
|
1413
1454
|
tos.it
|
1414
1455
|
toscana.it
|
1415
1456
|
trentin-sud-tirol.it
|
1416
|
-
trentin-
|
1457
|
+
trentin-süd-tirol.it
|
1417
1458
|
trentin-sudtirol.it
|
1418
|
-
trentin-
|
1459
|
+
trentin-südtirol.it
|
1419
1460
|
trentin-sued-tirol.it
|
1420
1461
|
trentin-suedtirol.it
|
1421
1462
|
trentino-a-adige.it
|
@@ -1425,9 +1466,9 @@ trentino-altoadige.it
|
|
1425
1466
|
trentino-s-tirol.it
|
1426
1467
|
trentino-stirol.it
|
1427
1468
|
trentino-sud-tirol.it
|
1428
|
-
trentino-
|
1469
|
+
trentino-süd-tirol.it
|
1429
1470
|
trentino-sudtirol.it
|
1430
|
-
trentino-
|
1471
|
+
trentino-südtirol.it
|
1431
1472
|
trentino-sued-tirol.it
|
1432
1473
|
trentino-suedtirol.it
|
1433
1474
|
trentino.it
|
@@ -1438,15 +1479,15 @@ trentinoaltoadige.it
|
|
1438
1479
|
trentinos-tirol.it
|
1439
1480
|
trentinostirol.it
|
1440
1481
|
trentinosud-tirol.it
|
1441
|
-
|
1482
|
+
trentinosüd-tirol.it
|
1442
1483
|
trentinosudtirol.it
|
1443
|
-
|
1484
|
+
trentinosüdtirol.it
|
1444
1485
|
trentinosued-tirol.it
|
1445
1486
|
trentinosuedtirol.it
|
1446
1487
|
trentinsud-tirol.it
|
1447
|
-
|
1488
|
+
trentinsüd-tirol.it
|
1448
1489
|
trentinsudtirol.it
|
1449
|
-
|
1490
|
+
trentinsüdtirol.it
|
1450
1491
|
trentinsued-tirol.it
|
1451
1492
|
trentinsuedtirol.it
|
1452
1493
|
tuscany.it
|
@@ -1463,13 +1504,13 @@ valleaosta.it
|
|
1463
1504
|
valled-aosta.it
|
1464
1505
|
valledaosta.it
|
1465
1506
|
vallee-aoste.it
|
1466
|
-
|
1507
|
+
vallée-aoste.it
|
1467
1508
|
vallee-d-aoste.it
|
1468
|
-
|
1509
|
+
vallée-d-aoste.it
|
1469
1510
|
valleeaoste.it
|
1470
|
-
|
1511
|
+
valléeaoste.it
|
1471
1512
|
valleedaoste.it
|
1472
|
-
|
1513
|
+
valléedaoste.it
|
1473
1514
|
vao.it
|
1474
1515
|
vda.it
|
1475
1516
|
ven.it
|
@@ -1503,7 +1544,7 @@ av.it
|
|
1503
1544
|
avellino.it
|
1504
1545
|
ba.it
|
1505
1546
|
balsan-sudtirol.it
|
1506
|
-
balsan-
|
1547
|
+
balsan-südtirol.it
|
1507
1548
|
balsan-suedtirol.it
|
1508
1549
|
balsan.it
|
1509
1550
|
bari.it
|
@@ -1522,7 +1563,7 @@ bologna.it
|
|
1522
1563
|
bolzano-altoadige.it
|
1523
1564
|
bolzano.it
|
1524
1565
|
bozen-sudtirol.it
|
1525
|
-
bozen-
|
1566
|
+
bozen-südtirol.it
|
1526
1567
|
bozen-suedtirol.it
|
1527
1568
|
bozen.it
|
1528
1569
|
br.it
|
@@ -1531,7 +1572,7 @@ brindisi.it
|
|
1531
1572
|
bs.it
|
1532
1573
|
bt.it
|
1533
1574
|
bulsan-sudtirol.it
|
1534
|
-
bulsan-
|
1575
|
+
bulsan-südtirol.it
|
1535
1576
|
bulsan-suedtirol.it
|
1536
1577
|
bulsan.it
|
1537
1578
|
bz.it
|
@@ -1551,9 +1592,9 @@ catanzaro.it
|
|
1551
1592
|
cb.it
|
1552
1593
|
ce.it
|
1553
1594
|
cesena-forli.it
|
1554
|
-
cesena-
|
1595
|
+
cesena-forlì.it
|
1555
1596
|
cesenaforli.it
|
1556
|
-
|
1597
|
+
cesenaforlì.it
|
1557
1598
|
ch.it
|
1558
1599
|
chieti.it
|
1559
1600
|
ci.it
|
@@ -1584,9 +1625,9 @@ florence.it
|
|
1584
1625
|
fm.it
|
1585
1626
|
foggia.it
|
1586
1627
|
forli-cesena.it
|
1587
|
-
|
1628
|
+
forlì-cesena.it
|
1588
1629
|
forlicesena.it
|
1589
|
-
|
1630
|
+
forlìcesena.it
|
1590
1631
|
fr.it
|
1591
1632
|
frosinone.it
|
1592
1633
|
ge.it
|
@@ -1717,7 +1758,7 @@ sp.it
|
|
1717
1758
|
sr.it
|
1718
1759
|
ss.it
|
1719
1760
|
suedtirol.it
|
1720
|
-
|
1761
|
+
südtirol.it
|
1721
1762
|
sv.it
|
1722
1763
|
ta.it
|
1723
1764
|
taranto.it
|
@@ -3762,7 +3803,7 @@ gov.lc
|
|
3762
3803
|
// li : https://en.wikipedia.org/wiki/.li
|
3763
3804
|
li
|
3764
3805
|
|
3765
|
-
// lk :
|
3806
|
+
// lk : https://www.nic.lk/index.php/domain-registration/lk-domain-naming-structure
|
3766
3807
|
lk
|
3767
3808
|
gov.lk
|
3768
3809
|
sch.lk
|
@@ -3789,10 +3830,18 @@ gov.lr
|
|
3789
3830
|
org.lr
|
3790
3831
|
net.lr
|
3791
3832
|
|
3792
|
-
// ls :
|
3833
|
+
// ls : http://www.nic.ls/
|
3834
|
+
// Confirmed by registry <lsadmin@nic.ls>
|
3793
3835
|
ls
|
3836
|
+
ac.ls
|
3837
|
+
biz.ls
|
3794
3838
|
co.ls
|
3839
|
+
edu.ls
|
3840
|
+
gov.ls
|
3841
|
+
info.ls
|
3842
|
+
net.ls
|
3795
3843
|
org.ls
|
3844
|
+
sc.ls
|
3796
3845
|
|
3797
3846
|
// lt : https://en.wikipedia.org/wiki/.lt
|
3798
3847
|
lt
|
@@ -4321,8 +4370,6 @@ niepce.museum
|
|
4321
4370
|
norfolk.museum
|
4322
4371
|
north.museum
|
4323
4372
|
nrw.museum
|
4324
|
-
nuernberg.museum
|
4325
|
-
nuremberg.museum
|
4326
4373
|
nyc.museum
|
4327
4374
|
nyny.museum
|
4328
4375
|
oceanographic.museum
|
@@ -4650,9 +4697,6 @@ web.ni
|
|
4650
4697
|
// ccTLD for the Netherlands
|
4651
4698
|
nl
|
4652
4699
|
|
4653
|
-
// BV.nl will be a registry for dutch BV's (besloten vennootschap)
|
4654
|
-
bv.nl
|
4655
|
-
|
4656
4700
|
// no : http://www.norid.no/regelverk/index.en.html
|
4657
4701
|
// The Norwegian registry has declined to notify us of updates. The web pages
|
4658
4702
|
// referenced below are the official source of the data. There is also an
|
@@ -5873,26 +5917,19 @@ gov.rs
|
|
5873
5917
|
in.rs
|
5874
5918
|
org.rs
|
5875
5919
|
|
5876
|
-
// ru : https://cctld.ru/
|
5920
|
+
// ru : https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
|
5921
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
5877
5922
|
ru
|
5878
|
-
ac.ru
|
5879
|
-
edu.ru
|
5880
|
-
gov.ru
|
5881
|
-
int.ru
|
5882
|
-
mil.ru
|
5883
|
-
test.ru
|
5884
5923
|
|
5885
|
-
// rw :
|
5924
|
+
// rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
|
5886
5925
|
rw
|
5887
|
-
gov.rw
|
5888
|
-
net.rw
|
5889
|
-
edu.rw
|
5890
5926
|
ac.rw
|
5891
|
-
com.rw
|
5892
5927
|
co.rw
|
5893
|
-
|
5928
|
+
coop.rw
|
5929
|
+
gov.rw
|
5894
5930
|
mil.rw
|
5895
|
-
|
5931
|
+
net.rw
|
5932
|
+
org.rw
|
5896
5933
|
|
5897
5934
|
// sa : http://www.nic.net.sa/
|
5898
5935
|
sa
|
@@ -6027,15 +6064,28 @@ org.sn
|
|
6027
6064
|
perso.sn
|
6028
6065
|
univ.sn
|
6029
6066
|
|
6030
|
-
// so : http://
|
6067
|
+
// so : http://sonic.so/policies/
|
6031
6068
|
so
|
6032
6069
|
com.so
|
6070
|
+
edu.so
|
6071
|
+
gov.so
|
6072
|
+
me.so
|
6033
6073
|
net.so
|
6034
6074
|
org.so
|
6035
6075
|
|
6036
6076
|
// sr : https://en.wikipedia.org/wiki/.sr
|
6037
6077
|
sr
|
6038
6078
|
|
6079
|
+
// ss : https://registry.nic.ss/
|
6080
|
+
// Submitted by registry <technical@nic.ss>
|
6081
|
+
ss
|
6082
|
+
biz.ss
|
6083
|
+
com.ss
|
6084
|
+
edu.ss
|
6085
|
+
gov.ss
|
6086
|
+
net.ss
|
6087
|
+
org.ss
|
6088
|
+
|
6039
6089
|
// st : http://www.nic.st/html/policyrules/
|
6040
6090
|
st
|
6041
6091
|
co.st
|
@@ -6182,34 +6232,33 @@ org.to
|
|
6182
6232
|
edu.to
|
6183
6233
|
mil.to
|
6184
6234
|
|
6185
|
-
//
|
6186
|
-
//
|
6187
|
-
//
|
6235
|
+
// tr : https://nic.tr/
|
6236
|
+
// https://nic.tr/forms/eng/policies.pdf
|
6237
|
+
// https://nic.tr/index.php?USRACTN=PRICELST
|
6188
6238
|
tr
|
6189
|
-
com.tr
|
6190
|
-
info.tr
|
6191
|
-
biz.tr
|
6192
|
-
net.tr
|
6193
|
-
org.tr
|
6194
|
-
web.tr
|
6195
|
-
gen.tr
|
6196
|
-
tv.tr
|
6197
6239
|
av.tr
|
6198
|
-
dr.tr
|
6199
6240
|
bbs.tr
|
6200
|
-
name.tr
|
6201
|
-
tel.tr
|
6202
|
-
gov.tr
|
6203
6241
|
bel.tr
|
6204
|
-
|
6242
|
+
biz.tr
|
6243
|
+
com.tr
|
6244
|
+
dr.tr
|
6245
|
+
edu.tr
|
6246
|
+
gen.tr
|
6247
|
+
gov.tr
|
6248
|
+
info.tr
|
6205
6249
|
mil.tr
|
6206
6250
|
k12.tr
|
6207
|
-
edu.tr
|
6208
6251
|
kep.tr
|
6209
|
-
|
6252
|
+
name.tr
|
6253
|
+
net.tr
|
6254
|
+
org.tr
|
6255
|
+
pol.tr
|
6256
|
+
tel.tr
|
6257
|
+
tsk.tr
|
6258
|
+
tv.tr
|
6259
|
+
web.tr
|
6210
6260
|
// Used by Northern Cyprus
|
6211
6261
|
nc.tr
|
6212
|
-
|
6213
6262
|
// Used by government agencies of Northern Cyprus
|
6214
6263
|
gov.nc.tr
|
6215
6264
|
|
@@ -6296,7 +6345,6 @@ cv.ua
|
|
6296
6345
|
dn.ua
|
6297
6346
|
dnepropetrovsk.ua
|
6298
6347
|
dnipropetrovsk.ua
|
6299
|
-
dominic.ua
|
6300
6348
|
donetsk.ua
|
6301
6349
|
dp.ua
|
6302
6350
|
if.ua
|
@@ -6490,7 +6538,7 @@ k12.ok.us
|
|
6490
6538
|
k12.or.us
|
6491
6539
|
k12.pa.us
|
6492
6540
|
k12.pr.us
|
6493
|
-
k12.ri.us
|
6541
|
+
// k12.ri.us Removed at request of Kim Cournoyer <netsupport@staff.ri.net>
|
6494
6542
|
k12.sc.us
|
6495
6543
|
// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
|
6496
6544
|
k12.tn.us
|
@@ -6777,8 +6825,16 @@ yt
|
|
6777
6825
|
مصر
|
6778
6826
|
|
6779
6827
|
// xn--e1a4c ("eu", Cyrillic) : EU
|
6828
|
+
// https://eurid.eu
|
6780
6829
|
ею
|
6781
6830
|
|
6831
|
+
// xn--qxa6a ("eu", Greek) : EU
|
6832
|
+
// https://eurid.eu
|
6833
|
+
ευ
|
6834
|
+
|
6835
|
+
// xn--mgbah1a3hjkrd ("Mauritania", Arabic) : MR
|
6836
|
+
موريتانيا
|
6837
|
+
|
6782
6838
|
// xn--node ("ge", Georgian Mkhedruli) : GE
|
6783
6839
|
გე
|
6784
6840
|
|
@@ -6880,11 +6936,11 @@ yt
|
|
6880
6936
|
қаз
|
6881
6937
|
|
6882
6938
|
// xn--fzc2c9e2c ("Lanka", Sinhalese-Sinhala) : LK
|
6883
|
-
//
|
6939
|
+
// https://nic.lk
|
6884
6940
|
ලංකා
|
6885
6941
|
|
6886
6942
|
// xn--xkc2al3hye2a ("Ilangai", Tamil) : LK
|
6887
|
-
//
|
6943
|
+
// https://nic.lk
|
6888
6944
|
இலங்கை
|
6889
6945
|
|
6890
6946
|
// xn--mgbc0a9azcg ("Morocco/al-Maghrib", Arabic) : MA
|
@@ -6932,7 +6988,8 @@ yt
|
|
6932
6988
|
ак.срб
|
6933
6989
|
|
6934
6990
|
// xn--p1ai ("rf", Russian-Cyrillic) : RU
|
6935
|
-
//
|
6991
|
+
// https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
|
6992
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
6936
6993
|
рф
|
6937
6994
|
|
6938
6995
|
// xn--wgbl6a ("Qatar", Arabic) : QA
|
@@ -7005,7 +7062,7 @@ xxx
|
|
7005
7062
|
// ye : http://www.y.net.ye/services/domain_name.htm
|
7006
7063
|
*.ye
|
7007
7064
|
|
7008
|
-
// za :
|
7065
|
+
// za : https://www.zadna.org.za/content/page/domain-information/
|
7009
7066
|
ac.za
|
7010
7067
|
agric.za
|
7011
7068
|
alt.za
|
@@ -7017,6 +7074,7 @@ law.za
|
|
7017
7074
|
mil.za
|
7018
7075
|
net.za
|
7019
7076
|
ngo.za
|
7077
|
+
nic.za
|
7020
7078
|
nis.za
|
7021
7079
|
nom.za
|
7022
7080
|
org.za
|
@@ -7050,9 +7108,9 @@ org.zw
|
|
7050
7108
|
|
7051
7109
|
|
7052
7110
|
// newGTLDs
|
7053
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2018-05-08T19:40:37Z
|
7054
|
-
// This list is auto-generated, don't edit it manually.
|
7055
7111
|
|
7112
|
+
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-08-07T17:16:50Z
|
7113
|
+
// This list is auto-generated, don't edit it manually.
|
7056
7114
|
// aaa : 2015-02-26 American Automobile Association, Inc.
|
7057
7115
|
aaa
|
7058
7116
|
|
@@ -7098,10 +7156,7 @@ accountants
|
|
7098
7156
|
// aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
|
7099
7157
|
aco
|
7100
7158
|
|
7101
|
-
//
|
7102
|
-
active
|
7103
|
-
|
7104
|
-
// actor : 2013-12-12 United TLD Holdco Ltd.
|
7159
|
+
// actor : 2013-12-12 Dog Beach, LLC
|
7105
7160
|
actor
|
7106
7161
|
|
7107
7162
|
// adac : 2015-07-16 Allgemeiner Deutscher Automobil-Club e.V. (ADAC)
|
@@ -7137,13 +7192,10 @@ agency
|
|
7137
7192
|
// aig : 2014-12-18 American International Group, Inc.
|
7138
7193
|
aig
|
7139
7194
|
|
7140
|
-
// aigo : 2015-08-06 aigo Digital Technology Co,Ltd.
|
7141
|
-
aigo
|
7142
|
-
|
7143
7195
|
// airbus : 2015-07-30 Airbus S.A.S.
|
7144
7196
|
airbus
|
7145
7197
|
|
7146
|
-
// airforce : 2014-03-06
|
7198
|
+
// airforce : 2014-03-06 Dog Beach, LLC
|
7147
7199
|
airforce
|
7148
7200
|
|
7149
7201
|
// airtel : 2014-10-24 Bharti Airtel Limited
|
@@ -7176,6 +7228,9 @@ alsace
|
|
7176
7228
|
// alstom : 2015-07-30 ALSTOM
|
7177
7229
|
alstom
|
7178
7230
|
|
7231
|
+
// amazon : 2019-12-19 Amazon Registry Services, Inc.
|
7232
|
+
amazon
|
7233
|
+
|
7179
7234
|
// americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc.
|
7180
7235
|
americanexpress
|
7181
7236
|
|
@@ -7200,7 +7255,7 @@ analytics
|
|
7200
7255
|
// android : 2014-08-07 Charleston Road Registry Inc.
|
7201
7256
|
android
|
7202
7257
|
|
7203
|
-
// anquan : 2015-01-08
|
7258
|
+
// anquan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
7204
7259
|
anquan
|
7205
7260
|
|
7206
7261
|
// anz : 2015-07-31 Australia and New Zealand Banking Group Limited
|
@@ -7227,10 +7282,10 @@ arab
|
|
7227
7282
|
// aramco : 2014-11-20 Aramco Services Company
|
7228
7283
|
aramco
|
7229
7284
|
|
7230
|
-
// archi : 2014-02-06 Afilias
|
7285
|
+
// archi : 2014-02-06 Afilias Limited
|
7231
7286
|
archi
|
7232
7287
|
|
7233
|
-
// army : 2014-03-06
|
7288
|
+
// army : 2014-03-06 Dog Beach, LLC
|
7234
7289
|
army
|
7235
7290
|
|
7236
7291
|
// art : 2016-03-24 UK Creative Ideas Limited
|
@@ -7248,10 +7303,10 @@ associates
|
|
7248
7303
|
// athleta : 2015-07-30 The Gap, Inc.
|
7249
7304
|
athleta
|
7250
7305
|
|
7251
|
-
// attorney : 2014-03-20
|
7306
|
+
// attorney : 2014-03-20 Dog Beach, LLC
|
7252
7307
|
attorney
|
7253
7308
|
|
7254
|
-
// auction : 2014-03-20
|
7309
|
+
// auction : 2014-03-20 Dog Beach, LLC
|
7255
7310
|
auction
|
7256
7311
|
|
7257
7312
|
// audi : 2015-05-21 AUDI Aktiengesellschaft
|
@@ -7260,7 +7315,7 @@ audi
|
|
7260
7315
|
// audible : 2015-06-25 Amazon Registry Services, Inc.
|
7261
7316
|
audible
|
7262
7317
|
|
7263
|
-
// audio : 2014-03-20
|
7318
|
+
// audio : 2014-03-20 UNR Corp.
|
7264
7319
|
audio
|
7265
7320
|
|
7266
7321
|
// auspost : 2015-08-13 Australian Postal Corporation
|
@@ -7269,13 +7324,13 @@ auspost
|
|
7269
7324
|
// author : 2014-12-18 Amazon Registry Services, Inc.
|
7270
7325
|
author
|
7271
7326
|
|
7272
|
-
// auto : 2014-11-13
|
7327
|
+
// auto : 2014-11-13 XYZ.COM LLC
|
7273
7328
|
auto
|
7274
7329
|
|
7275
7330
|
// autos : 2014-01-09 DERAutos, LLC
|
7276
7331
|
autos
|
7277
7332
|
|
7278
|
-
// avianca : 2015-01-08
|
7333
|
+
// avianca : 2015-01-08 Avianca Holdings S.A.
|
7279
7334
|
avianca
|
7280
7335
|
|
7281
7336
|
// aws : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -7287,7 +7342,7 @@ axa
|
|
7287
7342
|
// azure : 2014-12-18 Microsoft Corporation
|
7288
7343
|
azure
|
7289
7344
|
|
7290
|
-
// baby : 2015-04-09
|
7345
|
+
// baby : 2015-04-09 XYZ.COM LLC
|
7291
7346
|
baby
|
7292
7347
|
|
7293
7348
|
// baidu : 2015-01-08 Baidu, Inc.
|
@@ -7299,7 +7354,7 @@ banamex
|
|
7299
7354
|
// bananarepublic : 2015-07-31 The Gap, Inc.
|
7300
7355
|
bananarepublic
|
7301
7356
|
|
7302
|
-
// band : 2014-06-12
|
7357
|
+
// band : 2014-06-12 Dog Beach, LLC
|
7303
7358
|
band
|
7304
7359
|
|
7305
7360
|
// bank : 2014-09-25 fTLD Registry Services LLC
|
@@ -7353,7 +7408,7 @@ bcn
|
|
7353
7408
|
// beats : 2015-05-14 Beats Electronics, LLC
|
7354
7409
|
beats
|
7355
7410
|
|
7356
|
-
// beauty : 2015-12-03
|
7411
|
+
// beauty : 2015-12-03 XYZ.COM LLC
|
7357
7412
|
beauty
|
7358
7413
|
|
7359
7414
|
// beer : 2014-01-09 Minds + Machines Group Limited
|
@@ -7371,7 +7426,7 @@ best
|
|
7371
7426
|
// bestbuy : 2015-07-31 BBY Solutions, Inc.
|
7372
7427
|
bestbuy
|
7373
7428
|
|
7374
|
-
// bet : 2015-05-07 Afilias
|
7429
|
+
// bet : 2015-05-07 Afilias Limited
|
7375
7430
|
bet
|
7376
7431
|
|
7377
7432
|
// bharti : 2014-01-09 Bharti Enterprises (Holding) Private Limited
|
@@ -7392,18 +7447,15 @@ bing
|
|
7392
7447
|
// bingo : 2014-12-04 Binky Moon, LLC
|
7393
7448
|
bingo
|
7394
7449
|
|
7395
|
-
// bio : 2014-03-06 Afilias
|
7450
|
+
// bio : 2014-03-06 Afilias Limited
|
7396
7451
|
bio
|
7397
7452
|
|
7398
|
-
// black : 2014-01-16 Afilias
|
7453
|
+
// black : 2014-01-16 Afilias Limited
|
7399
7454
|
black
|
7400
7455
|
|
7401
|
-
// blackfriday : 2014-01-16
|
7456
|
+
// blackfriday : 2014-01-16 UNR Corp.
|
7402
7457
|
blackfriday
|
7403
7458
|
|
7404
|
-
// blanco : 2015-07-16 BLANCO GmbH + Co KG
|
7405
|
-
blanco
|
7406
|
-
|
7407
7459
|
// blockbuster : 2015-07-30 Dish DBS Corporation
|
7408
7460
|
blockbuster
|
7409
7461
|
|
@@ -7413,7 +7465,7 @@ blog
|
|
7413
7465
|
// bloomberg : 2014-07-17 Bloomberg IP Holdings LLC
|
7414
7466
|
bloomberg
|
7415
7467
|
|
7416
|
-
// blue : 2013-11-07 Afilias
|
7468
|
+
// blue : 2013-11-07 Afilias Limited
|
7417
7469
|
blue
|
7418
7470
|
|
7419
7471
|
// bms : 2014-10-30 Bristol-Myers Squibb Company
|
@@ -7422,9 +7474,6 @@ bms
|
|
7422
7474
|
// bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
7423
7475
|
bmw
|
7424
7476
|
|
7425
|
-
// bnl : 2014-07-24 Banca Nazionale del Lavoro
|
7426
|
-
bnl
|
7427
|
-
|
7428
7477
|
// bnpparibas : 2014-05-29 BNP Paribas
|
7429
7478
|
bnpparibas
|
7430
7479
|
|
@@ -7440,7 +7489,7 @@ bofa
|
|
7440
7489
|
// bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br
|
7441
7490
|
bom
|
7442
7491
|
|
7443
|
-
// bond : 2014-06-05
|
7492
|
+
// bond : 2014-06-05 ShortDot SA
|
7444
7493
|
bond
|
7445
7494
|
|
7446
7495
|
// boo : 2014-01-30 Charleston Road Registry Inc.
|
@@ -7467,7 +7516,7 @@ bot
|
|
7467
7516
|
// boutique : 2013-11-14 Binky Moon, LLC
|
7468
7517
|
boutique
|
7469
7518
|
|
7470
|
-
// box : 2015-11-12
|
7519
|
+
// box : 2015-11-12 .BOX INC.
|
7471
7520
|
box
|
7472
7521
|
|
7473
7522
|
// bradesco : 2014-12-18 Banco Bradesco S.A.
|
@@ -7551,7 +7600,7 @@ capital
|
|
7551
7600
|
// capitalone : 2015-08-06 Capital One Financial Corporation
|
7552
7601
|
capitalone
|
7553
7602
|
|
7554
|
-
// car : 2015-01-22
|
7603
|
+
// car : 2015-01-22 XYZ.COM LLC
|
7555
7604
|
car
|
7556
7605
|
|
7557
7606
|
// caravan : 2013-12-12 Caravan International, Inc.
|
@@ -7569,12 +7618,9 @@ career
|
|
7569
7618
|
// careers : 2013-10-02 Binky Moon, LLC
|
7570
7619
|
careers
|
7571
7620
|
|
7572
|
-
// cars : 2014-11-13
|
7621
|
+
// cars : 2014-11-13 XYZ.COM LLC
|
7573
7622
|
cars
|
7574
7623
|
|
7575
|
-
// cartier : 2014-06-23 Richemont DNS Inc.
|
7576
|
-
cartier
|
7577
|
-
|
7578
7624
|
// casa : 2013-11-21 Minds + Machines Group Limited
|
7579
7625
|
casa
|
7580
7626
|
|
@@ -7632,7 +7678,7 @@ chanel
|
|
7632
7678
|
// channel : 2014-05-08 Charleston Road Registry Inc.
|
7633
7679
|
channel
|
7634
7680
|
|
7635
|
-
// charity : 2018-04-11
|
7681
|
+
// charity : 2018-04-11 Binky Moon, LLC
|
7636
7682
|
charity
|
7637
7683
|
|
7638
7684
|
// chase : 2015-04-30 JPMorgan Chase Bank, National Association
|
@@ -7647,15 +7693,12 @@ cheap
|
|
7647
7693
|
// chintai : 2015-06-11 CHINTAI Corporation
|
7648
7694
|
chintai
|
7649
7695
|
|
7650
|
-
// christmas : 2013-11-21
|
7696
|
+
// christmas : 2013-11-21 UNR Corp.
|
7651
7697
|
christmas
|
7652
7698
|
|
7653
7699
|
// chrome : 2014-07-24 Charleston Road Registry Inc.
|
7654
7700
|
chrome
|
7655
7701
|
|
7656
|
-
// chrysler : 2015-07-30 FCA US LLC.
|
7657
|
-
chrysler
|
7658
|
-
|
7659
7702
|
// church : 2014-02-06 Binky Moon, LLC
|
7660
7703
|
church
|
7661
7704
|
|
@@ -7689,7 +7732,7 @@ claims
|
|
7689
7732
|
// cleaning : 2013-12-05 Binky Moon, LLC
|
7690
7733
|
cleaning
|
7691
7734
|
|
7692
|
-
// click : 2014-06-05
|
7735
|
+
// click : 2014-06-05 UNR Corp.
|
7693
7736
|
click
|
7694
7737
|
|
7695
7738
|
// clinic : 2014-03-20 Binky Moon, LLC
|
@@ -7722,7 +7765,7 @@ coffee
|
|
7722
7765
|
// college : 2014-01-16 XYZ.COM LLC
|
7723
7766
|
college
|
7724
7767
|
|
7725
|
-
// cologne : 2014-02-05
|
7768
|
+
// cologne : 2014-02-05 dotKoeln GmbH
|
7726
7769
|
cologne
|
7727
7770
|
|
7728
7771
|
// comcast : 2015-07-23 Comcast IP Holdings I, LLC
|
@@ -7737,7 +7780,7 @@ community
|
|
7737
7780
|
// company : 2013-11-07 Binky Moon, LLC
|
7738
7781
|
company
|
7739
7782
|
|
7740
|
-
// compare : 2015-10-08
|
7783
|
+
// compare : 2015-10-08 Registry Services, LLC
|
7741
7784
|
compare
|
7742
7785
|
|
7743
7786
|
// computer : 2013-10-24 Binky Moon, LLC
|
@@ -7752,10 +7795,10 @@ condos
|
|
7752
7795
|
// construction : 2013-09-16 Binky Moon, LLC
|
7753
7796
|
construction
|
7754
7797
|
|
7755
|
-
// consulting : 2013-12-05
|
7798
|
+
// consulting : 2013-12-05 Dog Beach, LLC
|
7756
7799
|
consulting
|
7757
7800
|
|
7758
|
-
// contact : 2015-01-08
|
7801
|
+
// contact : 2015-01-08 Dog Beach, LLC
|
7759
7802
|
contact
|
7760
7803
|
|
7761
7804
|
// contractors : 2013-09-10 Binky Moon, LLC
|
@@ -7785,6 +7828,9 @@ coupons
|
|
7785
7828
|
// courses : 2014-12-04 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
7786
7829
|
courses
|
7787
7830
|
|
7831
|
+
// cpa : 2019-06-10 American Institute of Certified Public Accountants
|
7832
|
+
cpa
|
7833
|
+
|
7788
7834
|
// credit : 2014-03-20 Binky Moon, LLC
|
7789
7835
|
credit
|
7790
7836
|
|
@@ -7812,13 +7858,13 @@ cruises
|
|
7812
7858
|
// csc : 2014-09-25 Alliance-One Services, Inc.
|
7813
7859
|
csc
|
7814
7860
|
|
7815
|
-
// cuisinella : 2014-04-03
|
7861
|
+
// cuisinella : 2014-04-03 SCHMIDT GROUPE S.A.S.
|
7816
7862
|
cuisinella
|
7817
7863
|
|
7818
7864
|
// cymru : 2014-05-08 Nominet UK
|
7819
7865
|
cymru
|
7820
7866
|
|
7821
|
-
// cyou : 2015-01-22
|
7867
|
+
// cyou : 2015-01-22 ShortDot SA
|
7822
7868
|
cyou
|
7823
7869
|
|
7824
7870
|
// dabur : 2014-02-06 Dabur India Limited
|
@@ -7827,7 +7873,7 @@ dabur
|
|
7827
7873
|
// dad : 2014-01-23 Charleston Road Registry Inc.
|
7828
7874
|
dad
|
7829
7875
|
|
7830
|
-
// dance : 2013-10-24
|
7876
|
+
// dance : 2013-10-24 Dog Beach, LLC
|
7831
7877
|
dance
|
7832
7878
|
|
7833
7879
|
// data : 2016-06-02 Dish DBS Corporation
|
@@ -7854,13 +7900,13 @@ dds
|
|
7854
7900
|
// deal : 2015-06-25 Amazon Registry Services, Inc.
|
7855
7901
|
deal
|
7856
7902
|
|
7857
|
-
// dealer : 2014-12-22
|
7903
|
+
// dealer : 2014-12-22 Intercap Registry Inc.
|
7858
7904
|
dealer
|
7859
7905
|
|
7860
7906
|
// deals : 2014-05-22 Binky Moon, LLC
|
7861
7907
|
deals
|
7862
7908
|
|
7863
|
-
// degree : 2014-03-06
|
7909
|
+
// degree : 2014-03-06 Dog Beach, LLC
|
7864
7910
|
degree
|
7865
7911
|
|
7866
7912
|
// delivery : 2014-09-11 Binky Moon, LLC
|
@@ -7875,13 +7921,13 @@ deloitte
|
|
7875
7921
|
// delta : 2015-02-19 Delta Air Lines, Inc.
|
7876
7922
|
delta
|
7877
7923
|
|
7878
|
-
// democrat : 2013-10-24
|
7924
|
+
// democrat : 2013-10-24 Dog Beach, LLC
|
7879
7925
|
democrat
|
7880
7926
|
|
7881
7927
|
// dental : 2014-03-20 Binky Moon, LLC
|
7882
7928
|
dental
|
7883
7929
|
|
7884
|
-
// dentist : 2014-03-20
|
7930
|
+
// dentist : 2014-03-20 Dog Beach, LLC
|
7885
7931
|
dentist
|
7886
7932
|
|
7887
7933
|
// desi : 2013-11-14 Desi Networks LLC
|
@@ -7899,7 +7945,7 @@ dhl
|
|
7899
7945
|
// diamonds : 2013-09-22 Binky Moon, LLC
|
7900
7946
|
diamonds
|
7901
7947
|
|
7902
|
-
// diet : 2014-06-26
|
7948
|
+
// diet : 2014-06-26 UNR Corp.
|
7903
7949
|
diet
|
7904
7950
|
|
7905
7951
|
// digital : 2014-03-06 Binky Moon, LLC
|
@@ -7932,15 +7978,9 @@ docs
|
|
7932
7978
|
// doctor : 2016-06-02 Binky Moon, LLC
|
7933
7979
|
doctor
|
7934
7980
|
|
7935
|
-
// dodge : 2015-07-30 FCA US LLC.
|
7936
|
-
dodge
|
7937
|
-
|
7938
7981
|
// dog : 2014-12-04 Binky Moon, LLC
|
7939
7982
|
dog
|
7940
7983
|
|
7941
|
-
// doha : 2014-09-18 Communications Regulatory Authority (CRA)
|
7942
|
-
doha
|
7943
|
-
|
7944
7984
|
// domains : 2013-10-17 Binky Moon, LLC
|
7945
7985
|
domains
|
7946
7986
|
|
@@ -7965,9 +8005,6 @@ duck
|
|
7965
8005
|
// dunlop : 2015-07-02 The Goodyear Tire & Rubber Company
|
7966
8006
|
dunlop
|
7967
8007
|
|
7968
|
-
// duns : 2015-08-06 The Dun & Bradstreet Corporation
|
7969
|
-
duns
|
7970
|
-
|
7971
8008
|
// dupont : 2015-06-25 E. I. du Pont de Nemours and Company
|
7972
8009
|
dupont
|
7973
8010
|
|
@@ -7977,7 +8014,7 @@ durban
|
|
7977
8014
|
// dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
7978
8015
|
dvag
|
7979
8016
|
|
7980
|
-
// dvr : 2016-05-26
|
8017
|
+
// dvr : 2016-05-26 DISH Technologies L.L.C.
|
7981
8018
|
dvr
|
7982
8019
|
|
7983
8020
|
// earth : 2014-12-04 Interlink Co., Ltd.
|
@@ -8004,7 +8041,7 @@ emerck
|
|
8004
8041
|
// energy : 2014-09-11 Binky Moon, LLC
|
8005
8042
|
energy
|
8006
8043
|
|
8007
|
-
// engineer : 2014-03-06
|
8044
|
+
// engineer : 2014-03-06 Dog Beach, LLC
|
8008
8045
|
engineer
|
8009
8046
|
|
8010
8047
|
// engineering : 2014-03-06 Binky Moon, LLC
|
@@ -8013,9 +8050,6 @@ engineering
|
|
8013
8050
|
// enterprises : 2013-09-20 Binky Moon, LLC
|
8014
8051
|
enterprises
|
8015
8052
|
|
8016
|
-
// epost : 2015-07-23 Deutsche Post AG
|
8017
|
-
epost
|
8018
|
-
|
8019
8053
|
// epson : 2014-12-04 Seiko Epson Corporation
|
8020
8054
|
epson
|
8021
8055
|
|
@@ -8034,9 +8068,6 @@ esq
|
|
8034
8068
|
// estate : 2013-08-27 Binky Moon, LLC
|
8035
8069
|
estate
|
8036
8070
|
|
8037
|
-
// esurance : 2015-07-23 Esurance Insurance Company
|
8038
|
-
esurance
|
8039
|
-
|
8040
8071
|
// etisalat : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat)
|
8041
8072
|
etisalat
|
8042
8073
|
|
@@ -8049,9 +8080,6 @@ eus
|
|
8049
8080
|
// events : 2013-12-05 Binky Moon, LLC
|
8050
8081
|
events
|
8051
8082
|
|
8052
|
-
// everbank : 2014-05-15 EverBank
|
8053
|
-
everbank
|
8054
|
-
|
8055
8083
|
// exchange : 2014-03-06 Binky Moon, LLC
|
8056
8084
|
exchange
|
8057
8085
|
|
@@ -8079,13 +8107,13 @@ fairwinds
|
|
8079
8107
|
// faith : 2014-11-20 dot Faith Limited
|
8080
8108
|
faith
|
8081
8109
|
|
8082
|
-
// family : 2015-04-02
|
8110
|
+
// family : 2015-04-02 Dog Beach, LLC
|
8083
8111
|
family
|
8084
8112
|
|
8085
|
-
// fan : 2014-03-06
|
8113
|
+
// fan : 2014-03-06 Dog Beach, LLC
|
8086
8114
|
fan
|
8087
8115
|
|
8088
|
-
// fans : 2014-11-07
|
8116
|
+
// fans : 2014-11-07 ZDNS International Limited
|
8089
8117
|
fans
|
8090
8118
|
|
8091
8119
|
// farm : 2013-11-07 Binky Moon, LLC
|
@@ -8154,7 +8182,7 @@ fit
|
|
8154
8182
|
// fitness : 2014-03-06 Binky Moon, LLC
|
8155
8183
|
fitness
|
8156
8184
|
|
8157
|
-
// flickr : 2015-04-02
|
8185
|
+
// flickr : 2015-04-02 Flickr, Inc.
|
8158
8186
|
flickr
|
8159
8187
|
|
8160
8188
|
// flights : 2013-12-05 Binky Moon, LLC
|
@@ -8166,7 +8194,7 @@ flir
|
|
8166
8194
|
// florist : 2013-11-07 Binky Moon, LLC
|
8167
8195
|
florist
|
8168
8196
|
|
8169
|
-
// flowers : 2014-10-09
|
8197
|
+
// flowers : 2014-10-09 UNR Corp.
|
8170
8198
|
flowers
|
8171
8199
|
|
8172
8200
|
// fly : 2014-05-08 Charleston Road Registry Inc.
|
@@ -8190,7 +8218,7 @@ ford
|
|
8190
8218
|
// forex : 2014-12-11 Dotforex Registry Limited
|
8191
8219
|
forex
|
8192
8220
|
|
8193
|
-
// forsale : 2014-05-22
|
8221
|
+
// forsale : 2014-05-22 Dog Beach, LLC
|
8194
8222
|
forsale
|
8195
8223
|
|
8196
8224
|
// forum : 2015-04-02 Fegistry, LLC
|
@@ -8238,7 +8266,7 @@ fund
|
|
8238
8266
|
// furniture : 2014-03-20 Binky Moon, LLC
|
8239
8267
|
furniture
|
8240
8268
|
|
8241
|
-
// futbol : 2013-09-20
|
8269
|
+
// futbol : 2013-09-20 Dog Beach, LLC
|
8242
8270
|
futbol
|
8243
8271
|
|
8244
8272
|
// fyi : 2015-04-02 Binky Moon, LLC
|
@@ -8256,10 +8284,10 @@ gallo
|
|
8256
8284
|
// gallup : 2015-02-19 Gallup, Inc.
|
8257
8285
|
gallup
|
8258
8286
|
|
8259
|
-
// game : 2015-05-28
|
8287
|
+
// game : 2015-05-28 UNR Corp.
|
8260
8288
|
game
|
8261
8289
|
|
8262
|
-
// games : 2015-05-28
|
8290
|
+
// games : 2015-05-28 Dog Beach, LLC
|
8263
8291
|
games
|
8264
8292
|
|
8265
8293
|
// gap : 2015-07-31 The Gap, Inc.
|
@@ -8268,6 +8296,9 @@ gap
|
|
8268
8296
|
// garden : 2014-06-26 Minds + Machines Group Limited
|
8269
8297
|
garden
|
8270
8298
|
|
8299
|
+
// gay : 2019-05-23 Top Level Design, LLC
|
8300
|
+
gay
|
8301
|
+
|
8271
8302
|
// gbiz : 2014-07-17 Charleston Road Registry Inc.
|
8272
8303
|
gbiz
|
8273
8304
|
|
@@ -8295,7 +8326,7 @@ gift
|
|
8295
8326
|
// gifts : 2014-07-03 Binky Moon, LLC
|
8296
8327
|
gifts
|
8297
8328
|
|
8298
|
-
// gives : 2014-03-06
|
8329
|
+
// gives : 2014-03-06 Dog Beach, LLC
|
8299
8330
|
gives
|
8300
8331
|
|
8301
8332
|
// giving : 2014-11-13 Giving Limited
|
@@ -8322,7 +8353,7 @@ gmail
|
|
8322
8353
|
// gmbh : 2016-01-29 Binky Moon, LLC
|
8323
8354
|
gmbh
|
8324
8355
|
|
8325
|
-
// gmo : 2014-01-09 GMO Internet
|
8356
|
+
// gmo : 2014-01-09 GMO Internet, Inc.
|
8326
8357
|
gmo
|
8327
8358
|
|
8328
8359
|
// gmx : 2014-04-24 1&1 Mail & Media GmbH
|
@@ -8343,9 +8374,6 @@ golf
|
|
8343
8374
|
// goo : 2014-12-18 NTT Resonant Inc.
|
8344
8375
|
goo
|
8345
8376
|
|
8346
|
-
// goodhands : 2015-07-31 Allstate Fire and Casualty Insurance Company
|
8347
|
-
goodhands
|
8348
|
-
|
8349
8377
|
// goodyear : 2015-07-02 The Goodyear Tire & Rubber Company
|
8350
8378
|
goodyear
|
8351
8379
|
|
@@ -8370,7 +8398,7 @@ graphics
|
|
8370
8398
|
// gratis : 2014-03-20 Binky Moon, LLC
|
8371
8399
|
gratis
|
8372
8400
|
|
8373
|
-
// green : 2014-05-08 Afilias
|
8401
|
+
// green : 2014-05-08 Afilias Limited
|
8374
8402
|
green
|
8375
8403
|
|
8376
8404
|
// gripe : 2014-03-06 Binky Moon, LLC
|
@@ -8394,13 +8422,13 @@ guge
|
|
8394
8422
|
// guide : 2013-09-13 Binky Moon, LLC
|
8395
8423
|
guide
|
8396
8424
|
|
8397
|
-
// guitars : 2013-11-14
|
8425
|
+
// guitars : 2013-11-14 UNR Corp.
|
8398
8426
|
guitars
|
8399
8427
|
|
8400
8428
|
// guru : 2013-08-27 Binky Moon, LLC
|
8401
8429
|
guru
|
8402
8430
|
|
8403
|
-
// hair : 2015-12-03
|
8431
|
+
// hair : 2015-12-03 XYZ.COM LLC
|
8404
8432
|
hair
|
8405
8433
|
|
8406
8434
|
// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
|
@@ -8409,7 +8437,7 @@ hamburg
|
|
8409
8437
|
// hangout : 2014-11-13 Charleston Road Registry Inc.
|
8410
8438
|
hangout
|
8411
8439
|
|
8412
|
-
// haus : 2013-12-05
|
8440
|
+
// haus : 2013-12-05 Dog Beach, LLC
|
8413
8441
|
haus
|
8414
8442
|
|
8415
8443
|
// hbo : 2015-07-30 HBO Registry Services, Inc.
|
@@ -8427,7 +8455,7 @@ health
|
|
8427
8455
|
// healthcare : 2014-06-12 Binky Moon, LLC
|
8428
8456
|
healthcare
|
8429
8457
|
|
8430
|
-
// help : 2014-06-26
|
8458
|
+
// help : 2014-06-26 UNR Corp.
|
8431
8459
|
help
|
8432
8460
|
|
8433
8461
|
// helsinki : 2015-02-05 City of Helsinki
|
@@ -8442,7 +8470,7 @@ hermes
|
|
8442
8470
|
// hgtv : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
8443
8471
|
hgtv
|
8444
8472
|
|
8445
|
-
// hiphop : 2014-03-06
|
8473
|
+
// hiphop : 2014-03-06 UNR Corp.
|
8446
8474
|
hiphop
|
8447
8475
|
|
8448
8476
|
// hisamitsu : 2015-07-16 Hisamitsu Pharmaceutical Co.,Inc.
|
@@ -8451,7 +8479,7 @@ hisamitsu
|
|
8451
8479
|
// hitachi : 2014-10-31 Hitachi, Ltd.
|
8452
8480
|
hitachi
|
8453
8481
|
|
8454
|
-
// hiv : 2014-03-13
|
8482
|
+
// hiv : 2014-03-13 UNR Corp.
|
8455
8483
|
hiv
|
8456
8484
|
|
8457
8485
|
// hkt : 2015-05-14 PCCW-HKT DataCom Services Limited
|
@@ -8481,9 +8509,6 @@ homesense
|
|
8481
8509
|
// honda : 2014-12-18 Honda Motor Co., Ltd.
|
8482
8510
|
honda
|
8483
8511
|
|
8484
|
-
// honeywell : 2015-07-23 Honeywell GTLD LLC
|
8485
|
-
honeywell
|
8486
|
-
|
8487
8512
|
// horse : 2013-11-21 Minds + Machines Group Limited
|
8488
8513
|
horse
|
8489
8514
|
|
@@ -8493,7 +8518,7 @@ hospital
|
|
8493
8518
|
// host : 2014-04-17 DotHost Inc.
|
8494
8519
|
host
|
8495
8520
|
|
8496
|
-
// hosting : 2014-05-29
|
8521
|
+
// hosting : 2014-05-29 UNR Corp.
|
8497
8522
|
hosting
|
8498
8523
|
|
8499
8524
|
// hot : 2015-08-27 Amazon Registry Services, Inc.
|
@@ -8556,10 +8581,10 @@ imdb
|
|
8556
8581
|
// immo : 2014-07-10 Binky Moon, LLC
|
8557
8582
|
immo
|
8558
8583
|
|
8559
|
-
// immobilien : 2013-11-07
|
8584
|
+
// immobilien : 2013-11-07 Dog Beach, LLC
|
8560
8585
|
immobilien
|
8561
8586
|
|
8562
|
-
// inc : 2018-03-10
|
8587
|
+
// inc : 2018-03-10 Intercap Registry Inc.
|
8563
8588
|
inc
|
8564
8589
|
|
8565
8590
|
// industries : 2013-12-05 Binky Moon, LLC
|
@@ -8601,9 +8626,6 @@ ipiranga
|
|
8601
8626
|
// irish : 2014-08-07 Binky Moon, LLC
|
8602
8627
|
irish
|
8603
8628
|
|
8604
|
-
// iselect : 2015-02-11 iSelect Ltd
|
8605
|
-
iselect
|
8606
|
-
|
8607
8629
|
// ismaili : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation)
|
8608
8630
|
ismaili
|
8609
8631
|
|
@@ -8646,9 +8668,6 @@ jewelry
|
|
8646
8668
|
// jio : 2015-04-02 Reliance Industries Limited
|
8647
8669
|
jio
|
8648
8670
|
|
8649
|
-
// jlc : 2014-12-04 Richemont DNS Inc.
|
8650
|
-
jlc
|
8651
|
-
|
8652
8671
|
// jll : 2015-04-02 Jones Lang LaSalle Incorporated
|
8653
8672
|
jll
|
8654
8673
|
|
@@ -8673,13 +8692,13 @@ jpmorgan
|
|
8673
8692
|
// jprs : 2014-09-18 Japan Registry Services Co., Ltd.
|
8674
8693
|
jprs
|
8675
8694
|
|
8676
|
-
// juegos : 2014-03-20
|
8695
|
+
// juegos : 2014-03-20 UNR Corp.
|
8677
8696
|
juegos
|
8678
8697
|
|
8679
8698
|
// juniper : 2015-07-30 JUNIPER NETWORKS, INC.
|
8680
8699
|
juniper
|
8681
8700
|
|
8682
|
-
// kaufen : 2013-11-07
|
8701
|
+
// kaufen : 2013-11-07 Dog Beach, LLC
|
8683
8702
|
kaufen
|
8684
8703
|
|
8685
8704
|
// kddi : 2014-09-12 KDDI CORPORATION
|
@@ -8700,7 +8719,7 @@ kfh
|
|
8700
8719
|
// kia : 2015-07-09 KIA MOTORS CORPORATION
|
8701
8720
|
kia
|
8702
8721
|
|
8703
|
-
// kim : 2013-09-23 Afilias
|
8722
|
+
// kim : 2013-09-23 Afilias Limited
|
8704
8723
|
kim
|
8705
8724
|
|
8706
8725
|
// kinder : 2014-11-07 Ferrero Trading Lux S.A.
|
@@ -8715,7 +8734,7 @@ kitchen
|
|
8715
8734
|
// kiwi : 2013-09-20 DOT KIWI LIMITED
|
8716
8735
|
kiwi
|
8717
8736
|
|
8718
|
-
// koeln : 2014-01-09
|
8737
|
+
// koeln : 2014-01-09 dotKoeln GmbH
|
8719
8738
|
koeln
|
8720
8739
|
|
8721
8740
|
// komatsu : 2015-01-08 Komatsu Ltd.
|
@@ -8745,9 +8764,6 @@ kyoto
|
|
8745
8764
|
// lacaixa : 2014-01-09 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”
|
8746
8765
|
lacaixa
|
8747
8766
|
|
8748
|
-
// ladbrokes : 2015-08-06 LADBROKES INTERNATIONAL PLC
|
8749
|
-
ladbrokes
|
8750
|
-
|
8751
8767
|
// lamborghini : 2015-06-04 Automobili Lamborghini S.p.A.
|
8752
8768
|
lamborghini
|
8753
8769
|
|
@@ -8760,9 +8776,6 @@ lancaster
|
|
8760
8776
|
// lancia : 2015-07-31 Fiat Chrysler Automobiles N.V.
|
8761
8777
|
lancia
|
8762
8778
|
|
8763
|
-
// lancome : 2015-07-23 L'Oréal
|
8764
|
-
lancome
|
8765
|
-
|
8766
8779
|
// land : 2013-09-10 Binky Moon, LLC
|
8767
8780
|
land
|
8768
8781
|
|
@@ -8784,13 +8797,13 @@ latino
|
|
8784
8797
|
// latrobe : 2014-06-16 La Trobe University
|
8785
8798
|
latrobe
|
8786
8799
|
|
8787
|
-
// law : 2015-01-22
|
8800
|
+
// law : 2015-01-22 LW TLD Limited
|
8788
8801
|
law
|
8789
8802
|
|
8790
|
-
// lawyer : 2014-03-20
|
8803
|
+
// lawyer : 2014-03-20 Dog Beach, LLC
|
8791
8804
|
lawyer
|
8792
8805
|
|
8793
|
-
// lds : 2014-03-20 IRI Domain Management, LLC
|
8806
|
+
// lds : 2014-03-20 IRI Domain Management, LLC
|
8794
8807
|
lds
|
8795
8808
|
|
8796
8809
|
// lease : 2014-03-06 Binky Moon, LLC
|
@@ -8811,12 +8824,9 @@ lego
|
|
8811
8824
|
// lexus : 2015-04-23 TOYOTA MOTOR CORPORATION
|
8812
8825
|
lexus
|
8813
8826
|
|
8814
|
-
// lgbt : 2014-05-08 Afilias
|
8827
|
+
// lgbt : 2014-05-08 Afilias Limited
|
8815
8828
|
lgbt
|
8816
8829
|
|
8817
|
-
// liaison : 2014-10-02 Liaison Technologies, Incorporated
|
8818
|
-
liaison
|
8819
|
-
|
8820
8830
|
// lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
8821
8831
|
lidl
|
8822
8832
|
|
@@ -8850,13 +8860,13 @@ lincoln
|
|
8850
8860
|
// linde : 2014-12-04 Linde Aktiengesellschaft
|
8851
8861
|
linde
|
8852
8862
|
|
8853
|
-
// link : 2013-11-14
|
8863
|
+
// link : 2013-11-14 UNR Corp.
|
8854
8864
|
link
|
8855
8865
|
|
8856
8866
|
// lipsy : 2015-06-25 Lipsy Ltd
|
8857
8867
|
lipsy
|
8858
8868
|
|
8859
|
-
// live : 2014-12-04
|
8869
|
+
// live : 2014-12-04 Dog Beach, LLC
|
8860
8870
|
live
|
8861
8871
|
|
8862
8872
|
// living : 2015-07-30 Lifestyle Domain Holdings, Inc.
|
@@ -8865,9 +8875,12 @@ living
|
|
8865
8875
|
// lixil : 2015-03-19 LIXIL Group Corporation
|
8866
8876
|
lixil
|
8867
8877
|
|
8868
|
-
// llc : 2017-12-14 Afilias
|
8878
|
+
// llc : 2017-12-14 Afilias Limited
|
8869
8879
|
llc
|
8870
8880
|
|
8881
|
+
// llp : 2019-08-26 UNR Corp.
|
8882
|
+
llp
|
8883
|
+
|
8871
8884
|
// loan : 2014-11-20 dot Loan Limited
|
8872
8885
|
loan
|
8873
8886
|
|
@@ -8883,7 +8896,7 @@ locus
|
|
8883
8896
|
// loft : 2015-07-30 Annco, Inc.
|
8884
8897
|
loft
|
8885
8898
|
|
8886
|
-
// lol : 2015-01-30
|
8899
|
+
// lol : 2015-01-30 UNR Corp.
|
8887
8900
|
lol
|
8888
8901
|
|
8889
8902
|
// london : 2013-11-14 Dot London Domains Limited
|
@@ -8892,7 +8905,7 @@ london
|
|
8892
8905
|
// lotte : 2014-11-07 Lotte Holdings Co., Ltd.
|
8893
8906
|
lotte
|
8894
8907
|
|
8895
|
-
// lotto : 2014-04-10 Afilias
|
8908
|
+
// lotto : 2014-04-10 Afilias Limited
|
8896
8909
|
lotto
|
8897
8910
|
|
8898
8911
|
// love : 2014-12-22 Merchant Law Group LLP
|
@@ -8934,7 +8947,7 @@ maif
|
|
8934
8947
|
// maison : 2013-12-05 Binky Moon, LLC
|
8935
8948
|
maison
|
8936
8949
|
|
8937
|
-
// makeup : 2015-01-15
|
8950
|
+
// makeup : 2015-01-15 XYZ.COM LLC
|
8938
8951
|
makeup
|
8939
8952
|
|
8940
8953
|
// man : 2014-12-04 MAN SE
|
@@ -8949,7 +8962,7 @@ mango
|
|
8949
8962
|
// map : 2016-06-09 Charleston Road Registry Inc.
|
8950
8963
|
map
|
8951
8964
|
|
8952
|
-
// market : 2014-03-06
|
8965
|
+
// market : 2014-03-06 Dog Beach, LLC
|
8953
8966
|
market
|
8954
8967
|
|
8955
8968
|
// marketing : 2013-11-07 Binky Moon, LLC
|
@@ -8997,7 +9010,7 @@ memorial
|
|
8997
9010
|
// men : 2015-02-26 Exclusive Registry Limited
|
8998
9011
|
men
|
8999
9012
|
|
9000
|
-
// menu : 2013-09-11
|
9013
|
+
// menu : 2013-09-11 Dot Menu Registry, LLC
|
9001
9014
|
menu
|
9002
9015
|
|
9003
9016
|
// merckmsd : 2016-07-14 MSD Registry Holdings, Inc.
|
@@ -9036,10 +9049,7 @@ mma
|
|
9036
9049
|
// mobile : 2016-06-02 Dish DBS Corporation
|
9037
9050
|
mobile
|
9038
9051
|
|
9039
|
-
//
|
9040
|
-
mobily
|
9041
|
-
|
9042
|
-
// moda : 2013-11-07 United TLD Holdco Ltd.
|
9052
|
+
// moda : 2013-11-07 Dog Beach, LLC
|
9043
9053
|
moda
|
9044
9054
|
|
9045
9055
|
// moe : 2013-11-13 Interlink Co., Ltd.
|
@@ -9048,7 +9058,7 @@ moe
|
|
9048
9058
|
// moi : 2014-12-18 Amazon Registry Services, Inc.
|
9049
9059
|
moi
|
9050
9060
|
|
9051
|
-
// mom : 2015-04-16
|
9061
|
+
// mom : 2015-04-16 UNR Corp.
|
9052
9062
|
mom
|
9053
9063
|
|
9054
9064
|
// monash : 2013-09-30 Monash University
|
@@ -9057,16 +9067,13 @@ monash
|
|
9057
9067
|
// money : 2014-10-16 Binky Moon, LLC
|
9058
9068
|
money
|
9059
9069
|
|
9060
|
-
// monster : 2015-09-11
|
9070
|
+
// monster : 2015-09-11 XYZ.COM LLC
|
9061
9071
|
monster
|
9062
9072
|
|
9063
|
-
//
|
9064
|
-
mopar
|
9065
|
-
|
9066
|
-
// mormon : 2013-12-05 IRI Domain Management, LLC ("Applicant")
|
9073
|
+
// mormon : 2013-12-05 IRI Domain Management, LLC
|
9067
9074
|
mormon
|
9068
9075
|
|
9069
|
-
// mortgage : 2014-03-20
|
9076
|
+
// mortgage : 2014-03-20 Dog Beach, LLC
|
9070
9077
|
mortgage
|
9071
9078
|
|
9072
9079
|
// moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
|
@@ -9084,9 +9091,6 @@ mov
|
|
9084
9091
|
// movie : 2015-02-05 Binky Moon, LLC
|
9085
9092
|
movie
|
9086
9093
|
|
9087
|
-
// movistar : 2014-10-16 Telefónica S.A.
|
9088
|
-
movistar
|
9089
|
-
|
9090
9094
|
// msd : 2015-07-23 MSD Registry Holdings, Inc.
|
9091
9095
|
msd
|
9092
9096
|
|
@@ -9102,9 +9106,6 @@ mutual
|
|
9102
9106
|
// nab : 2015-08-20 National Australia Bank Limited
|
9103
9107
|
nab
|
9104
9108
|
|
9105
|
-
// nadex : 2014-12-11 Nadex Domains, Inc.
|
9106
|
-
nadex
|
9107
|
-
|
9108
9109
|
// nagoya : 2013-10-24 GMO Registry, Inc.
|
9109
9110
|
nagoya
|
9110
9111
|
|
@@ -9114,7 +9115,7 @@ nationwide
|
|
9114
9115
|
// natura : 2015-03-12 NATURA COSMÉTICOS S.A.
|
9115
9116
|
natura
|
9116
9117
|
|
9117
|
-
// navy : 2014-03-06
|
9118
|
+
// navy : 2014-03-06 Dog Beach, LLC
|
9118
9119
|
navy
|
9119
9120
|
|
9120
9121
|
// nba : 2015-07-31 NBA REGISTRY, LLC
|
@@ -9132,7 +9133,7 @@ netflix
|
|
9132
9133
|
// network : 2013-11-14 Binky Moon, LLC
|
9133
9134
|
network
|
9134
9135
|
|
9135
|
-
// neustar : 2013-12-05
|
9136
|
+
// neustar : 2013-12-05 NeuStar, Inc.
|
9136
9137
|
neustar
|
9137
9138
|
|
9138
9139
|
// new : 2014-01-30 Charleston Road Registry Inc.
|
@@ -9141,7 +9142,7 @@ new
|
|
9141
9142
|
// newholland : 2015-09-03 CNH Industrial N.V.
|
9142
9143
|
newholland
|
9143
9144
|
|
9144
|
-
// news : 2014-12-18
|
9145
|
+
// news : 2014-12-18 Dog Beach, LLC
|
9145
9146
|
news
|
9146
9147
|
|
9147
9148
|
// next : 2015-06-18 Next plc
|
@@ -9171,7 +9172,7 @@ nike
|
|
9171
9172
|
// nikon : 2015-05-21 NIKON CORPORATION
|
9172
9173
|
nikon
|
9173
9174
|
|
9174
|
-
// ninja : 2013-11-07
|
9175
|
+
// ninja : 2013-11-07 Dog Beach, LLC
|
9175
9176
|
ninja
|
9176
9177
|
|
9177
9178
|
// nissan : 2014-03-27 NISSAN MOTOR CO., LTD.
|
@@ -9255,7 +9256,7 @@ online
|
|
9255
9256
|
// onyourside : 2015-07-23 Nationwide Mutual Insurance Company
|
9256
9257
|
onyourside
|
9257
9258
|
|
9258
|
-
// ooo : 2014-01-09 INFIBEAM
|
9259
|
+
// ooo : 2014-01-09 INFIBEAM AVENUES LIMITED
|
9259
9260
|
ooo
|
9260
9261
|
|
9261
9262
|
// open : 2015-07-31 American Express Travel Related Services Company, Inc.
|
@@ -9267,7 +9268,7 @@ oracle
|
|
9267
9268
|
// orange : 2015-03-12 Orange Brand Services Limited
|
9268
9269
|
orange
|
9269
9270
|
|
9270
|
-
// organic : 2014-03-27 Afilias
|
9271
|
+
// organic : 2014-03-27 Afilias Limited
|
9271
9272
|
organic
|
9272
9273
|
|
9273
9274
|
// origins : 2015-10-01 The Estée Lauder Companies Inc.
|
@@ -9282,7 +9283,7 @@ otsuka
|
|
9282
9283
|
// ott : 2015-06-04 Dish DBS Corporation
|
9283
9284
|
ott
|
9284
9285
|
|
9285
|
-
// ovh : 2014-01-16
|
9286
|
+
// ovh : 2014-01-16 MédiaBC
|
9286
9287
|
ovh
|
9287
9288
|
|
9288
9289
|
// page : 2014-12-04 Charleston Road Registry Inc.
|
@@ -9291,9 +9292,6 @@ page
|
|
9291
9292
|
// panasonic : 2015-07-30 Panasonic Corporation
|
9292
9293
|
panasonic
|
9293
9294
|
|
9294
|
-
// panerai : 2014-11-07 Richemont DNS Inc.
|
9295
|
-
panerai
|
9296
|
-
|
9297
9295
|
// paris : 2014-01-30 City of Paris
|
9298
9296
|
paris
|
9299
9297
|
|
@@ -9318,7 +9316,7 @@ pay
|
|
9318
9316
|
// pccw : 2015-05-14 PCCW Enterprises Limited
|
9319
9317
|
pccw
|
9320
9318
|
|
9321
|
-
// pet : 2015-05-07 Afilias
|
9319
|
+
// pet : 2015-05-07 Afilias Limited
|
9322
9320
|
pet
|
9323
9321
|
|
9324
9322
|
// pfizer : 2015-09-11 Pfizer Inc.
|
@@ -9336,7 +9334,7 @@ philips
|
|
9336
9334
|
// phone : 2016-06-02 Dish DBS Corporation
|
9337
9335
|
phone
|
9338
9336
|
|
9339
|
-
// photo : 2013-11-14
|
9337
|
+
// photo : 2013-11-14 UNR Corp.
|
9340
9338
|
photo
|
9341
9339
|
|
9342
9340
|
// photography : 2013-09-20 Binky Moon, LLC
|
@@ -9348,10 +9346,7 @@ photos
|
|
9348
9346
|
// physio : 2014-05-01 PhysBiz Pty Ltd
|
9349
9347
|
physio
|
9350
9348
|
|
9351
|
-
//
|
9352
|
-
piaget
|
9353
|
-
|
9354
|
-
// pics : 2013-11-14 Uniregistry, Corp.
|
9349
|
+
// pics : 2013-11-14 UNR Corp.
|
9355
9350
|
pics
|
9356
9351
|
|
9357
9352
|
// pictet : 2014-06-26 Pictet Europe S.A.
|
@@ -9369,7 +9364,7 @@ pin
|
|
9369
9364
|
// ping : 2015-06-11 Ping Registry Provider, Inc.
|
9370
9365
|
ping
|
9371
9366
|
|
9372
|
-
// pink : 2013-10-01 Afilias
|
9367
|
+
// pink : 2013-10-01 Afilias Limited
|
9373
9368
|
pink
|
9374
9369
|
|
9375
9370
|
// pioneer : 2015-07-16 Pioneer Corporation
|
@@ -9384,7 +9379,7 @@ place
|
|
9384
9379
|
// play : 2015-03-05 Charleston Road Registry Inc.
|
9385
9380
|
play
|
9386
9381
|
|
9387
|
-
// playstation : 2015-07-02 Sony
|
9382
|
+
// playstation : 2015-07-02 Sony Interactive Entertainment Inc.
|
9388
9383
|
playstation
|
9389
9384
|
|
9390
9385
|
// plumbing : 2013-09-10 Binky Moon, LLC
|
@@ -9399,7 +9394,7 @@ pnc
|
|
9399
9394
|
// pohl : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
9400
9395
|
pohl
|
9401
9396
|
|
9402
|
-
// poker : 2014-07-03 Afilias
|
9397
|
+
// poker : 2014-07-03 Afilias Limited
|
9403
9398
|
poker
|
9404
9399
|
|
9405
9400
|
// politie : 2015-08-20 Politie Nederland
|
@@ -9432,13 +9427,13 @@ prof
|
|
9432
9427
|
// progressive : 2015-07-23 Progressive Casualty Insurance Company
|
9433
9428
|
progressive
|
9434
9429
|
|
9435
|
-
// promo : 2014-12-18 Afilias
|
9430
|
+
// promo : 2014-12-18 Afilias Limited
|
9436
9431
|
promo
|
9437
9432
|
|
9438
9433
|
// properties : 2013-12-05 Binky Moon, LLC
|
9439
9434
|
properties
|
9440
9435
|
|
9441
|
-
// property : 2014-05-22
|
9436
|
+
// property : 2014-05-22 UNR Corp.
|
9442
9437
|
property
|
9443
9438
|
|
9444
9439
|
// protection : 2015-04-23 XYZ.COM LLC
|
@@ -9450,7 +9445,7 @@ pru
|
|
9450
9445
|
// prudential : 2015-07-30 Prudential Financial, Inc.
|
9451
9446
|
prudential
|
9452
9447
|
|
9453
|
-
// pub : 2013-12-12
|
9448
|
+
// pub : 2013-12-12 Dog Beach, LLC
|
9454
9449
|
pub
|
9455
9450
|
|
9456
9451
|
// pwc : 2015-10-29 PricewaterhouseCoopers LLP
|
@@ -9462,7 +9457,7 @@ qpon
|
|
9462
9457
|
// quebec : 2013-12-19 PointQuébec Inc
|
9463
9458
|
quebec
|
9464
9459
|
|
9465
|
-
// quest : 2015-03-26
|
9460
|
+
// quest : 2015-03-26 XYZ.COM LLC
|
9466
9461
|
quest
|
9467
9462
|
|
9468
9463
|
// qvc : 2015-07-30 QVC, Inc.
|
@@ -9492,7 +9487,7 @@ realty
|
|
9492
9487
|
// recipes : 2013-10-17 Binky Moon, LLC
|
9493
9488
|
recipes
|
9494
9489
|
|
9495
|
-
// red : 2013-11-07 Afilias
|
9490
|
+
// red : 2013-11-07 Afilias Limited
|
9496
9491
|
red
|
9497
9492
|
|
9498
9493
|
// redstone : 2014-10-31 Redstone Haute Couture Co., Ltd.
|
@@ -9501,7 +9496,7 @@ redstone
|
|
9501
9496
|
// redumbrella : 2015-03-26 Travelers TLD, LLC
|
9502
9497
|
redumbrella
|
9503
9498
|
|
9504
|
-
// rehab : 2014-03-06
|
9499
|
+
// rehab : 2014-03-06 Dog Beach, LLC
|
9505
9500
|
rehab
|
9506
9501
|
|
9507
9502
|
// reise : 2014-03-13 Binky Moon, LLC
|
@@ -9516,7 +9511,7 @@ reit
|
|
9516
9511
|
// reliance : 2015-04-02 Reliance Industries Limited
|
9517
9512
|
reliance
|
9518
9513
|
|
9519
|
-
// ren : 2013-12-12
|
9514
|
+
// ren : 2013-12-12 ZDNS International Limited
|
9520
9515
|
ren
|
9521
9516
|
|
9522
9517
|
// rent : 2014-12-04 XYZ.COM LLC
|
@@ -9531,7 +9526,7 @@ repair
|
|
9531
9526
|
// report : 2013-12-05 Binky Moon, LLC
|
9532
9527
|
report
|
9533
9528
|
|
9534
|
-
// republican : 2014-03-20
|
9529
|
+
// republican : 2014-03-20 Dog Beach, LLC
|
9535
9530
|
republican
|
9536
9531
|
|
9537
9532
|
// rest : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
|
@@ -9543,7 +9538,7 @@ restaurant
|
|
9543
9538
|
// review : 2014-11-20 dot Review Limited
|
9544
9539
|
review
|
9545
9540
|
|
9546
|
-
// reviews : 2013-09-13
|
9541
|
+
// reviews : 2013-09-13 Dog Beach, LLC
|
9547
9542
|
reviews
|
9548
9543
|
|
9549
9544
|
// rexroth : 2015-06-18 Robert Bosch GMBH
|
@@ -9558,16 +9553,13 @@ richardli
|
|
9558
9553
|
// ricoh : 2014-11-20 Ricoh Company, Ltd.
|
9559
9554
|
ricoh
|
9560
9555
|
|
9561
|
-
// rightathome : 2015-07-23 Johnson Shareholdings, Inc.
|
9562
|
-
rightathome
|
9563
|
-
|
9564
9556
|
// ril : 2015-04-02 Reliance Industries Limited
|
9565
9557
|
ril
|
9566
9558
|
|
9567
9559
|
// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO
|
9568
9560
|
rio
|
9569
9561
|
|
9570
|
-
// rip : 2014-07-10
|
9562
|
+
// rip : 2014-07-10 Dog Beach, LLC
|
9571
9563
|
rip
|
9572
9564
|
|
9573
9565
|
// rmit : 2015-11-19 Royal Melbourne Institute of Technology
|
@@ -9576,7 +9568,7 @@ rmit
|
|
9576
9568
|
// rocher : 2014-12-18 Ferrero Trading Lux S.A.
|
9577
9569
|
rocher
|
9578
9570
|
|
9579
|
-
// rocks : 2013-11-14
|
9571
|
+
// rocks : 2013-11-14 Dog Beach, LLC
|
9580
9572
|
rocks
|
9581
9573
|
|
9582
9574
|
// rodeo : 2013-12-19 Minds + Machines Group Limited
|
@@ -9618,7 +9610,7 @@ safety
|
|
9618
9610
|
// sakura : 2014-12-18 SAKURA Internet Inc.
|
9619
9611
|
sakura
|
9620
9612
|
|
9621
|
-
// sale : 2014-10-16
|
9613
|
+
// sale : 2014-10-16 Dog Beach, LLC
|
9622
9614
|
sale
|
9623
9615
|
|
9624
9616
|
// salon : 2014-12-11 Binky Moon, LLC
|
@@ -9669,7 +9661,7 @@ scb
|
|
9669
9661
|
// schaeffler : 2015-08-06 Schaeffler Technologies AG & Co. KG
|
9670
9662
|
schaeffler
|
9671
9663
|
|
9672
|
-
// schmidt : 2014-04-03
|
9664
|
+
// schmidt : 2014-04-03 SCHMIDT GROUPE S.A.S.
|
9673
9665
|
schmidt
|
9674
9666
|
|
9675
9667
|
// scholarships : 2014-04-24 Scholarships.com, LLC
|
@@ -9690,9 +9682,6 @@ science
|
|
9690
9682
|
// scjohnson : 2015-07-23 Johnson Shareholdings, Inc.
|
9691
9683
|
scjohnson
|
9692
9684
|
|
9693
|
-
// scor : 2014-10-31 SCOR SE
|
9694
|
-
scor
|
9695
|
-
|
9696
9685
|
// scot : 2014-01-23 Dot Scot Registry Limited
|
9697
9686
|
scot
|
9698
9687
|
|
@@ -9711,7 +9700,7 @@ security
|
|
9711
9700
|
// seek : 2014-12-04 Seek Limited
|
9712
9701
|
seek
|
9713
9702
|
|
9714
|
-
// select : 2015-10-08
|
9703
|
+
// select : 2015-10-08 Registry Services, LLC
|
9715
9704
|
select
|
9716
9705
|
|
9717
9706
|
// sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A.
|
@@ -9732,7 +9721,7 @@ sew
|
|
9732
9721
|
// sex : 2014-11-13 ICM Registry SX LLC
|
9733
9722
|
sex
|
9734
9723
|
|
9735
|
-
// sexy : 2013-09-11
|
9724
|
+
// sexy : 2013-09-11 UNR Corp.
|
9736
9725
|
sexy
|
9737
9726
|
|
9738
9727
|
// sfr : 2015-08-13 Societe Francaise du Radiotelephone - SFR
|
@@ -9753,7 +9742,7 @@ shell
|
|
9753
9742
|
// shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
|
9754
9743
|
shia
|
9755
9744
|
|
9756
|
-
// shiksha : 2013-11-14 Afilias
|
9745
|
+
// shiksha : 2013-11-14 Afilias Limited
|
9757
9746
|
shiksha
|
9758
9747
|
|
9759
9748
|
// shoes : 2013-10-02 Binky Moon, LLC
|
@@ -9765,7 +9754,7 @@ shop
|
|
9765
9754
|
// shopping : 2016-03-31 Binky Moon, LLC
|
9766
9755
|
shopping
|
9767
9756
|
|
9768
|
-
// shouji : 2015-01-08
|
9757
|
+
// shouji : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
9769
9758
|
shouji
|
9770
9759
|
|
9771
9760
|
// show : 2015-03-05 Binky Moon, LLC
|
@@ -9789,10 +9778,10 @@ singles
|
|
9789
9778
|
// site : 2015-01-15 DotSite Inc.
|
9790
9779
|
site
|
9791
9780
|
|
9792
|
-
// ski : 2015-04-09 Afilias
|
9781
|
+
// ski : 2015-04-09 Afilias Limited
|
9793
9782
|
ski
|
9794
9783
|
|
9795
|
-
// skin : 2015-01-15
|
9784
|
+
// skin : 2015-01-15 XYZ.COM LLC
|
9796
9785
|
skin
|
9797
9786
|
|
9798
9787
|
// sky : 2014-06-19 Sky International AG
|
@@ -9801,7 +9790,7 @@ sky
|
|
9801
9790
|
// skype : 2014-12-18 Microsoft Corporation
|
9802
9791
|
skype
|
9803
9792
|
|
9804
|
-
// sling : 2015-07-30
|
9793
|
+
// sling : 2015-07-30 DISH Technologies L.L.C.
|
9805
9794
|
sling
|
9806
9795
|
|
9807
9796
|
// smart : 2015-07-09 Smart Communications, Inc. (SMART)
|
@@ -9816,13 +9805,13 @@ sncf
|
|
9816
9805
|
// soccer : 2015-03-26 Binky Moon, LLC
|
9817
9806
|
soccer
|
9818
9807
|
|
9819
|
-
// social : 2013-11-07
|
9808
|
+
// social : 2013-11-07 Dog Beach, LLC
|
9820
9809
|
social
|
9821
9810
|
|
9822
|
-
// softbank : 2015-07-02 SoftBank Corp.
|
9811
|
+
// softbank : 2015-07-02 SoftBank Group Corp.
|
9823
9812
|
softbank
|
9824
9813
|
|
9825
|
-
// software : 2014-03-20
|
9814
|
+
// software : 2014-03-20 Dog Beach, LLC
|
9826
9815
|
software
|
9827
9816
|
|
9828
9817
|
// sohu : 2013-12-19 Sohu.com Limited
|
@@ -9843,12 +9832,12 @@ sony
|
|
9843
9832
|
// soy : 2014-01-23 Charleston Road Registry Inc.
|
9844
9833
|
soy
|
9845
9834
|
|
9835
|
+
// spa : 2019-09-19 Asia Spa and Wellness Promotion Council Limited
|
9836
|
+
spa
|
9837
|
+
|
9846
9838
|
// space : 2014-04-03 DotSpace Inc.
|
9847
9839
|
space
|
9848
9840
|
|
9849
|
-
// spiegel : 2014-02-05 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
|
9850
|
-
spiegel
|
9851
|
-
|
9852
9841
|
// sport : 2017-11-16 Global Association of International Sports Federations (GAISF)
|
9853
9842
|
sport
|
9854
9843
|
|
@@ -9861,9 +9850,6 @@ spreadbetting
|
|
9861
9850
|
// srl : 2015-05-07 InterNetX, Corp
|
9862
9851
|
srl
|
9863
9852
|
|
9864
|
-
// srt : 2015-07-30 FCA US LLC.
|
9865
|
-
srt
|
9866
|
-
|
9867
9853
|
// stada : 2014-11-13 STADA Arzneimittel AG
|
9868
9854
|
stada
|
9869
9855
|
|
@@ -9873,18 +9859,12 @@ staples
|
|
9873
9859
|
// star : 2015-01-08 Star India Private Limited
|
9874
9860
|
star
|
9875
9861
|
|
9876
|
-
// starhub : 2015-02-05 StarHub Ltd
|
9877
|
-
starhub
|
9878
|
-
|
9879
9862
|
// statebank : 2015-03-12 STATE BANK OF INDIA
|
9880
9863
|
statebank
|
9881
9864
|
|
9882
9865
|
// statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
|
9883
9866
|
statefarm
|
9884
9867
|
|
9885
|
-
// statoil : 2014-12-04 Statoil ASA
|
9886
|
-
statoil
|
9887
|
-
|
9888
9868
|
// stc : 2014-10-09 Saudi Telecom Company
|
9889
9869
|
stc
|
9890
9870
|
|
@@ -9903,7 +9883,7 @@ store
|
|
9903
9883
|
// stream : 2016-01-08 dot Stream Limited
|
9904
9884
|
stream
|
9905
9885
|
|
9906
|
-
// studio : 2015-02-11
|
9886
|
+
// studio : 2015-02-11 Dog Beach, LLC
|
9907
9887
|
studio
|
9908
9888
|
|
9909
9889
|
// study : 2014-12-11 OPEN UNIVERSITIES AUSTRALIA PTY LTD
|
@@ -9945,9 +9925,6 @@ swiss
|
|
9945
9925
|
// sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
|
9946
9926
|
sydney
|
9947
9927
|
|
9948
|
-
// symantec : 2014-12-04 Symantec Corporation
|
9949
|
-
symantec
|
9950
|
-
|
9951
9928
|
// systems : 2013-11-07 Binky Moon, LLC
|
9952
9929
|
systems
|
9953
9930
|
|
@@ -9972,7 +9949,7 @@ tatamotors
|
|
9972
9949
|
// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
|
9973
9950
|
tatar
|
9974
9951
|
|
9975
|
-
// tattoo : 2013-08-30
|
9952
|
+
// tattoo : 2013-08-30 UNR Corp.
|
9976
9953
|
tattoo
|
9977
9954
|
|
9978
9955
|
// tax : 2014-03-20 Binky Moon, LLC
|
@@ -9996,12 +9973,6 @@ tech
|
|
9996
9973
|
// technology : 2013-09-13 Binky Moon, LLC
|
9997
9974
|
technology
|
9998
9975
|
|
9999
|
-
// telecity : 2015-02-19 TelecityGroup International Limited
|
10000
|
-
telecity
|
10001
|
-
|
10002
|
-
// telefonica : 2014-10-16 Telefónica S.A.
|
10003
|
-
telefonica
|
10004
|
-
|
10005
9976
|
// temasek : 2014-08-07 Temasek Holdings (Private) Limited
|
10006
9977
|
temasek
|
10007
9978
|
|
@@ -10095,7 +10066,7 @@ trading
|
|
10095
10066
|
// training : 2013-11-07 Binky Moon, LLC
|
10096
10067
|
training
|
10097
10068
|
|
10098
|
-
// travel :
|
10069
|
+
// travel : 2015-10-09 Dog Beach, LLC
|
10099
10070
|
travel
|
10100
10071
|
|
10101
10072
|
// travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
@@ -10107,7 +10078,7 @@ travelers
|
|
10107
10078
|
// travelersinsurance : 2015-03-26 Travelers TLD, LLC
|
10108
10079
|
travelersinsurance
|
10109
10080
|
|
10110
|
-
// trust : 2014-10-16 NCC Group Inc.
|
10081
|
+
// trust : 2014-10-16 NCC Group Domain Services, Inc.
|
10111
10082
|
trust
|
10112
10083
|
|
10113
10084
|
// trv : 2015-03-26 Travelers TLD, LLC
|
@@ -10134,16 +10105,13 @@ ubank
|
|
10134
10105
|
// ubs : 2014-12-11 UBS AG
|
10135
10106
|
ubs
|
10136
10107
|
|
10137
|
-
// uconnect : 2015-07-30 FCA US LLC.
|
10138
|
-
uconnect
|
10139
|
-
|
10140
10108
|
// unicom : 2015-10-15 China United Network Communications Corporation Limited
|
10141
10109
|
unicom
|
10142
10110
|
|
10143
10111
|
// university : 2014-03-06 Binky Moon, LLC
|
10144
10112
|
university
|
10145
10113
|
|
10146
|
-
// uno : 2013-09-11
|
10114
|
+
// uno : 2013-09-11 DotSite Inc.
|
10147
10115
|
uno
|
10148
10116
|
|
10149
10117
|
// uol : 2014-05-01 UBN INTERNET LTDA.
|
@@ -10170,16 +10138,16 @@ ventures
|
|
10170
10138
|
// verisign : 2015-08-13 VeriSign, Inc.
|
10171
10139
|
verisign
|
10172
10140
|
|
10173
|
-
// versicherung : 2014-03-20
|
10141
|
+
// versicherung : 2014-03-20 tldbox GmbH
|
10174
10142
|
versicherung
|
10175
10143
|
|
10176
|
-
// vet : 2014-03-06
|
10144
|
+
// vet : 2014-03-06 Dog Beach, LLC
|
10177
10145
|
vet
|
10178
10146
|
|
10179
10147
|
// viajes : 2013-10-17 Binky Moon, LLC
|
10180
10148
|
viajes
|
10181
10149
|
|
10182
|
-
// video : 2014-10-16
|
10150
|
+
// video : 2014-10-16 Dog Beach, LLC
|
10183
10151
|
video
|
10184
10152
|
|
10185
10153
|
// vig : 2015-05-14 VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe
|
@@ -10206,12 +10174,6 @@ visa
|
|
10206
10174
|
// vision : 2013-12-05 Binky Moon, LLC
|
10207
10175
|
vision
|
10208
10176
|
|
10209
|
-
// vista : 2014-09-18 Vistaprint Limited
|
10210
|
-
vista
|
10211
|
-
|
10212
|
-
// vistaprint : 2014-09-18 Vistaprint Limited
|
10213
|
-
vistaprint
|
10214
|
-
|
10215
10177
|
// viva : 2014-11-07 Saudi Telecom Company
|
10216
10178
|
viva
|
10217
10179
|
|
@@ -10260,9 +10222,6 @@ wang
|
|
10260
10222
|
// wanggou : 2014-12-18 Amazon Registry Services, Inc.
|
10261
10223
|
wanggou
|
10262
10224
|
|
10263
|
-
// warman : 2015-06-18 Weir Group IP Limited
|
10264
|
-
warman
|
10265
|
-
|
10266
10225
|
// watch : 2013-11-14 Binky Moon, LLC
|
10267
10226
|
watch
|
10268
10227
|
|
@@ -10356,7 +10315,7 @@ xerox
|
|
10356
10315
|
// xfinity : 2015-07-09 Comcast IP Holdings I, LLC
|
10357
10316
|
xfinity
|
10358
10317
|
|
10359
|
-
// xihuan : 2015-01-08
|
10318
|
+
// xihuan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
10360
10319
|
xihuan
|
10361
10320
|
|
10362
10321
|
// xin : 2014-12-11 Elegant Leader Limited
|
@@ -10377,7 +10336,7 @@ xin
|
|
10377
10336
|
// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
|
10378
10337
|
集团
|
10379
10338
|
|
10380
|
-
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED
|
10339
|
+
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED OY
|
10381
10340
|
在线
|
10382
10341
|
|
10383
10342
|
// xn--3oq18vl8pn36a : 2015-07-02 Volkswagen (China) Investment Co., Ltd.
|
@@ -10392,7 +10351,7 @@ xin
|
|
10392
10351
|
// xn--45q11c : 2013-11-21 Zodiac Gemini Ltd
|
10393
10352
|
八卦
|
10394
10353
|
|
10395
|
-
// xn--4gbrim : 2013-10-04
|
10354
|
+
// xn--4gbrim : 2013-10-04 Fans TLD Limited
|
10396
10355
|
موقع
|
10397
10356
|
|
10398
10357
|
// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
|
@@ -10407,7 +10366,7 @@ xin
|
|
10407
10366
|
// xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited
|
10408
10367
|
网站
|
10409
10368
|
|
10410
|
-
// xn--6frz82g : 2013-09-23 Afilias
|
10369
|
+
// xn--6frz82g : 2013-09-23 Afilias Limited
|
10411
10370
|
移动
|
10412
10371
|
|
10413
10372
|
// xn--6qq986b3xl : 2013-09-13 Tycoon Treasure Limited
|
@@ -10452,10 +10411,13 @@ xin
|
|
10452
10411
|
// xn--cck2b3b : 2015-02-26 Amazon Registry Services, Inc.
|
10453
10412
|
ストア
|
10454
10413
|
|
10414
|
+
// xn--cckwcxetd : 2019-12-19 Amazon Registry Services, Inc.
|
10415
|
+
アマゾン
|
10416
|
+
|
10455
10417
|
// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
|
10456
10418
|
삼성
|
10457
10419
|
|
10458
|
-
// xn--czr694b : 2014-01-16
|
10420
|
+
// xn--czr694b : 2014-01-16 Internet DotTrademark Organisation Limited
|
10459
10421
|
商标
|
10460
10422
|
|
10461
10423
|
// xn--czrs0t : 2013-12-19 Binky Moon, LLC
|
@@ -10473,16 +10435,13 @@ xin
|
|
10473
10435
|
// xn--efvy88h : 2014-08-22 Guangzhou YU Wei Information Technology Co., Ltd.
|
10474
10436
|
新闻
|
10475
10437
|
|
10476
|
-
// xn--estv75g : 2015-02-19 Industrial and Commercial Bank of China Limited
|
10477
|
-
工行
|
10478
|
-
|
10479
10438
|
// xn--fct429k : 2015-04-09 Amazon Registry Services, Inc.
|
10480
10439
|
家電
|
10481
10440
|
|
10482
10441
|
// xn--fhbei : 2015-01-15 VeriSign Sarl
|
10483
10442
|
كوم
|
10484
10443
|
|
10485
|
-
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED
|
10444
|
+
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED OY
|
10486
10445
|
中文网
|
10487
10446
|
|
10488
10447
|
// xn--fiq64b : 2013-10-14 CITIC Group Corporation
|
@@ -10512,7 +10471,7 @@ xin
|
|
10512
10471
|
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
10513
10472
|
संगठन
|
10514
10473
|
|
10515
|
-
// xn--imr513n : 2014-12-11
|
10474
|
+
// xn--imr513n : 2014-12-11 Internet DotTrademark Organisation Limited
|
10516
10475
|
餐厅
|
10517
10476
|
|
10518
10477
|
// xn--io0a7i : 2013-11-14 China Internet Network Information Center (CNNIC)
|
@@ -10521,6 +10480,9 @@ xin
|
|
10521
10480
|
// xn--j1aef : 2015-01-15 VeriSign Sarl
|
10522
10481
|
ком
|
10523
10482
|
|
10483
|
+
// xn--jlq480n2rg : 2019-12-19 Amazon Registry Services, Inc.
|
10484
|
+
亚马逊
|
10485
|
+
|
10524
10486
|
// xn--jlq61u9w7b : 2015-01-08 Nokia Corporation
|
10525
10487
|
诺基亚
|
10526
10488
|
|
@@ -10530,9 +10492,6 @@ xin
|
|
10530
10492
|
// xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V.
|
10531
10493
|
飞利浦
|
10532
10494
|
|
10533
|
-
// xn--kpu716f : 2014-12-22 Richemont DNS Inc.
|
10534
|
-
手表
|
10535
|
-
|
10536
10495
|
// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
|
10537
10496
|
手机
|
10538
10497
|
|
@@ -10548,9 +10507,6 @@ xin
|
|
10548
10507
|
// xn--mgbab2bd : 2013-10-31 CORE Association
|
10549
10508
|
بازار
|
10550
10509
|
|
10551
|
-
// xn--mgbb9fbpob : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
10552
|
-
موبايلي
|
10553
|
-
|
10554
10510
|
// xn--mgbca7dzdo : 2015-07-30 Abu Dhabi Systems and Information Centre
|
10555
10511
|
ابوظبي
|
10556
10512
|
|
@@ -10584,15 +10540,12 @@ xin
|
|
10584
10540
|
// xn--nyqy26a : 2014-11-07 Stable Tone Limited
|
10585
10541
|
健康
|
10586
10542
|
|
10587
|
-
// xn--otu796d : 2017-08-06
|
10543
|
+
// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited
|
10588
10544
|
招聘
|
10589
10545
|
|
10590
10546
|
// xn--p1acf : 2013-12-12 Rusnames Limited
|
10591
10547
|
рус
|
10592
10548
|
|
10593
|
-
// xn--pbt977c : 2014-12-22 Richemont DNS Inc.
|
10594
|
-
珠宝
|
10595
|
-
|
10596
10549
|
// xn--pssy2u : 2015-01-15 VeriSign Sarl
|
10597
10550
|
大拿
|
10598
10551
|
|
@@ -10659,7 +10612,7 @@ yahoo
|
|
10659
10612
|
// yamaxun : 2014-12-18 Amazon Registry Services, Inc.
|
10660
10613
|
yamaxun
|
10661
10614
|
|
10662
|
-
// yandex : 2014-04-10
|
10615
|
+
// yandex : 2014-04-10 Yandex Europe B.V.
|
10663
10616
|
yandex
|
10664
10617
|
|
10665
10618
|
// yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
@@ -10677,7 +10630,7 @@ you
|
|
10677
10630
|
// youtube : 2014-05-01 Charleston Road Registry Inc.
|
10678
10631
|
youtube
|
10679
10632
|
|
10680
|
-
// yun : 2015-01-08
|
10633
|
+
// yun : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
10681
10634
|
yun
|
10682
10635
|
|
10683
10636
|
// zappos : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -10692,9 +10645,6 @@ zero
|
|
10692
10645
|
// zip : 2014-05-08 Charleston Road Registry Inc.
|
10693
10646
|
zip
|
10694
10647
|
|
10695
|
-
// zippo : 2015-07-02 Zadco Company
|
10696
|
-
zippo
|
10697
|
-
|
10698
10648
|
// zone : 2013-11-14 Binky Moon, LLC
|
10699
10649
|
zone
|
10700
10650
|
|
@@ -10712,15 +10662,42 @@ cc.ua
|
|
10712
10662
|
inf.ua
|
10713
10663
|
ltd.ua
|
10714
10664
|
|
10665
|
+
// 611coin : https://611project.org/
|
10666
|
+
611.to
|
10667
|
+
|
10668
|
+
// Adobe : https://www.adobe.com/
|
10669
|
+
// Submitted by Ian Boston <boston@adobe.com>
|
10670
|
+
adobeaemcloud.com
|
10671
|
+
adobeaemcloud.net
|
10672
|
+
*.dev.adobeaemcloud.com
|
10673
|
+
|
10715
10674
|
// Agnat sp. z o.o. : https://domena.pl
|
10716
10675
|
// Submitted by Przemyslaw Plewa <it-admin@domena.pl>
|
10717
10676
|
beep.pl
|
10718
10677
|
|
10678
|
+
// alboto.ca : http://alboto.ca
|
10679
|
+
// Submitted by Anton Avramov <avramov@alboto.ca>
|
10680
|
+
barsy.ca
|
10681
|
+
|
10719
10682
|
// Alces Software Ltd : http://alces-software.com
|
10720
10683
|
// Submitted by Mark J. Titorenko <mark.titorenko@alces-software.com>
|
10721
10684
|
*.compute.estate
|
10722
10685
|
*.alces.network
|
10723
10686
|
|
10687
|
+
// all-inkl.com : https://all-inkl.com
|
10688
|
+
// Submitted by Werner Kaltofen <wk@all-inkl.com>
|
10689
|
+
kasserver.com
|
10690
|
+
|
10691
|
+
// Algorithmia, Inc. : algorithmia.com
|
10692
|
+
// Submitted by Eli Perelman <eperelman@algorithmia.io>
|
10693
|
+
*.algorithmia.com
|
10694
|
+
!teams.algorithmia.com
|
10695
|
+
!test.algorithmia.com
|
10696
|
+
|
10697
|
+
// Altervista: https://www.altervista.org
|
10698
|
+
// Submitted by Carlo Cannas <tech_staff@altervista.it>
|
10699
|
+
altervista.org
|
10700
|
+
|
10724
10701
|
// alwaysdata : https://www.alwaysdata.com
|
10725
10702
|
// Submitted by Cyril <admin@alwaysdata.com>
|
10726
10703
|
alwaysdata.net
|
@@ -10739,6 +10716,7 @@ us-east-1.amazonaws.com
|
|
10739
10716
|
// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
|
10740
10717
|
// Submitted by Luke Wells <psl-maintainers@amazon.com>
|
10741
10718
|
cn-north-1.eb.amazonaws.com.cn
|
10719
|
+
cn-northwest-1.eb.amazonaws.com.cn
|
10742
10720
|
elasticbeanstalk.com
|
10743
10721
|
ap-northeast-1.elasticbeanstalk.com
|
10744
10722
|
ap-northeast-2.elasticbeanstalk.com
|
@@ -10820,15 +10798,29 @@ s3-website.eu-west-2.amazonaws.com
|
|
10820
10798
|
s3-website.eu-west-3.amazonaws.com
|
10821
10799
|
s3-website.us-east-2.amazonaws.com
|
10822
10800
|
|
10801
|
+
// Amsterdam Wireless: https://www.amsterdamwireless.nl/
|
10802
|
+
// Submitted by Imre Jonk <hostmaster@amsterdamwireless.nl>
|
10803
|
+
amsw.nl
|
10804
|
+
|
10823
10805
|
// Amune : https://amune.org/
|
10824
10806
|
// Submitted by Team Amune <cert@amune.org>
|
10825
10807
|
t3l3p0rt.net
|
10826
10808
|
tele.amune.org
|
10827
10809
|
|
10810
|
+
// Apigee : https://apigee.com/
|
10811
|
+
// Submitted by Apigee Security Team <security@apigee.com>
|
10812
|
+
apigee.io
|
10813
|
+
|
10828
10814
|
// Aptible : https://www.aptible.com/
|
10829
10815
|
// Submitted by Thomas Orozco <thomas@aptible.com>
|
10830
10816
|
on-aptible.com
|
10831
10817
|
|
10818
|
+
// ASEINet : https://www.aseinet.com/
|
10819
|
+
// Submitted by Asei SEKIGUCHI <mail@aseinet.com>
|
10820
|
+
user.aseinet.ne.jp
|
10821
|
+
gv.vc
|
10822
|
+
d.gv.vc
|
10823
|
+
|
10832
10824
|
// Asociación Amigos de la Informática "Euskalamiga" : http://encounter.eus/
|
10833
10825
|
// Submitted by Hector Martin <marcan@euskalencounter.org>
|
10834
10826
|
user.party.eus
|
@@ -10853,10 +10845,25 @@ myfritz.net
|
|
10853
10845
|
*.awdev.ca
|
10854
10846
|
*.advisor.ws
|
10855
10847
|
|
10848
|
+
// b-data GmbH : https://www.b-data.io
|
10849
|
+
// Submitted by Olivier Benz <olivier.benz@b-data.ch>
|
10850
|
+
b-data.io
|
10851
|
+
|
10856
10852
|
// backplane : https://www.backplane.io
|
10857
10853
|
// Submitted by Anthony Voutas <anthony@backplane.io>
|
10858
10854
|
backplaneapp.io
|
10859
10855
|
|
10856
|
+
// Balena : https://www.balena.io
|
10857
|
+
// Submitted by Petros Angelatos <petrosagg@balena.io>
|
10858
|
+
balena-devices.com
|
10859
|
+
|
10860
|
+
// Banzai Cloud
|
10861
|
+
// Submitted by Janos Matyas <info@banzaicloud.com>
|
10862
|
+
*.banzai.cloud
|
10863
|
+
app.banzaicloud.io
|
10864
|
+
*.backyards.banzaicloud.io
|
10865
|
+
|
10866
|
+
|
10860
10867
|
// BetaInABox
|
10861
10868
|
// Submitted by Adrian <adrian@betainabox.com>
|
10862
10869
|
betainabox.com
|
@@ -10890,40 +10897,55 @@ square7.net
|
|
10890
10897
|
// Submitted by Dave Tharp <browsersafetymark.io@quicinc.com>
|
10891
10898
|
browsersafetymark.io
|
10892
10899
|
|
10900
|
+
// Bytemark Hosting : https://www.bytemark.co.uk
|
10901
|
+
// Submitted by Paul Cammish <paul.cammish@bytemark.co.uk>
|
10902
|
+
uk0.bigv.io
|
10903
|
+
dh.bytemark.co.uk
|
10904
|
+
vm.bytemark.co.uk
|
10905
|
+
|
10893
10906
|
// callidomus : https://www.callidomus.com/
|
10894
10907
|
// Submitted by Marcus Popp <admin@callidomus.com>
|
10895
10908
|
mycd.eu
|
10896
10909
|
|
10910
|
+
// Carrd : https://carrd.co
|
10911
|
+
// Submitted by AJ <aj@carrd.co>
|
10912
|
+
carrd.co
|
10913
|
+
crd.co
|
10914
|
+
uwu.ai
|
10915
|
+
|
10897
10916
|
// CentralNic : http://www.centralnic.com/names/domains
|
10898
10917
|
// Submitted by registry <gavin.brown@centralnic.com>
|
10899
10918
|
ae.org
|
10900
|
-
ar.com
|
10901
10919
|
br.com
|
10902
10920
|
cn.com
|
10903
10921
|
com.de
|
10904
10922
|
com.se
|
10905
10923
|
de.com
|
10906
10924
|
eu.com
|
10907
|
-
gb.com
|
10908
10925
|
gb.net
|
10909
|
-
hu.com
|
10910
10926
|
hu.net
|
10911
10927
|
jp.net
|
10912
10928
|
jpn.com
|
10913
|
-
kr.com
|
10914
10929
|
mex.com
|
10915
|
-
no.com
|
10916
|
-
qc.com
|
10917
10930
|
ru.com
|
10918
10931
|
sa.com
|
10919
10932
|
se.net
|
10920
10933
|
uk.com
|
10921
10934
|
uk.net
|
10922
10935
|
us.com
|
10923
|
-
uy.com
|
10924
10936
|
za.bz
|
10925
10937
|
za.com
|
10926
10938
|
|
10939
|
+
// No longer operated by CentralNic, these entries should be adopted and/or removed by current operators
|
10940
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10941
|
+
ar.com
|
10942
|
+
gb.com
|
10943
|
+
hu.com
|
10944
|
+
kr.com
|
10945
|
+
no.com
|
10946
|
+
qc.com
|
10947
|
+
uy.com
|
10948
|
+
|
10927
10949
|
// Africa.com Web Solutions Ltd : https://registry.africa.com
|
10928
10950
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10929
10951
|
africa.com
|
@@ -10935,6 +10957,7 @@ gr.com
|
|
10935
10957
|
// Radix FZC : http://domains.in.net
|
10936
10958
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10937
10959
|
in.net
|
10960
|
+
web.in
|
10938
10961
|
|
10939
10962
|
// US REGISTRY LLC : http://us.org
|
10940
10963
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
@@ -10944,6 +10967,21 @@ us.org
|
|
10944
10967
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10945
10968
|
co.com
|
10946
10969
|
|
10970
|
+
// Roar Domains LLC : https://roar.basketball/
|
10971
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10972
|
+
aus.basketball
|
10973
|
+
nz.basketball
|
10974
|
+
|
10975
|
+
// BRS Media : https://brsmedia.com/
|
10976
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10977
|
+
radio.am
|
10978
|
+
radio.fm
|
10979
|
+
|
10980
|
+
// Globe Hosting SRL : https://www.globehosting.com/
|
10981
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10982
|
+
co.ro
|
10983
|
+
shop.ro
|
10984
|
+
|
10947
10985
|
// c.la : http://www.c.la/
|
10948
10986
|
c.la
|
10949
10987
|
|
@@ -10955,6 +10993,11 @@ certmgr.org
|
|
10955
10993
|
// Submitted by Alex Stoddard <alex.stoddard@citrix.com>
|
10956
10994
|
xenapponazure.com
|
10957
10995
|
|
10996
|
+
// Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/
|
10997
|
+
// Submitted by Rishabh Nambiar & Michael Brown <team@discourse.org>
|
10998
|
+
discourse.group
|
10999
|
+
discourse.team
|
11000
|
+
|
10958
11001
|
// ClearVox : http://www.clearvox.nl/
|
10959
11002
|
// Submitted by Leon Rowland <leon@clearvox.nl>
|
10960
11003
|
virtueeldomein.nl
|
@@ -10963,10 +11006,20 @@ virtueeldomein.nl
|
|
10963
11006
|
// Submitted by Quentin Adam <noc@clever-cloud.com>
|
10964
11007
|
cleverapps.io
|
10965
11008
|
|
11009
|
+
// Clerk : https://www.clerk.dev
|
11010
|
+
// Submitted by Colin Sidoti <colin@clerk.dev>
|
11011
|
+
*.lcl.dev
|
11012
|
+
*.stg.dev
|
11013
|
+
|
11014
|
+
// Clic2000 : https://clic2000.fr
|
11015
|
+
// Submitted by Mathilde Blanchemanche <mathilde@clic2000.fr>
|
11016
|
+
clic2000.net
|
11017
|
+
|
10966
11018
|
// Cloud66 : https://www.cloud66.com/
|
10967
11019
|
// Submitted by Khash Sajadi <khash@cloud66.com>
|
10968
11020
|
c66.me
|
10969
11021
|
cloud66.ws
|
11022
|
+
cloud66.zone
|
10970
11023
|
|
10971
11024
|
// CloudAccess.net : https://www.cloudaccess.net/
|
10972
11025
|
// Submitted by Pawel Panek <noc@cloudaccess.net>
|
@@ -10981,6 +11034,19 @@ cloudaccess.net
|
|
10981
11034
|
cloudcontrolled.com
|
10982
11035
|
cloudcontrolapp.com
|
10983
11036
|
|
11037
|
+
// Cloudera, Inc. : https://www.cloudera.com/
|
11038
|
+
// Submitted by Philip Langdale <security@cloudera.com>
|
11039
|
+
cloudera.site
|
11040
|
+
|
11041
|
+
// Cloudflare, Inc. : https://www.cloudflare.com/
|
11042
|
+
// Submitted by Jake Riesterer <publicsuffixlist@cloudflare.com>
|
11043
|
+
trycloudflare.com
|
11044
|
+
workers.dev
|
11045
|
+
|
11046
|
+
// Clovyr : https://clovyr.io
|
11047
|
+
// Submitted by Patrick Nielsen <patrick@clovyr.io>
|
11048
|
+
wnext.app
|
11049
|
+
|
10984
11050
|
// co.ca : http://registry.co.ca/
|
10985
11051
|
co.ca
|
10986
11052
|
|
@@ -11031,6 +11097,15 @@ co.no
|
|
11031
11097
|
webhosting.be
|
11032
11098
|
hosting-cluster.nl
|
11033
11099
|
|
11100
|
+
// Coordination Center for TLD RU and XN--P1AI : https://cctld.ru/en/domains/domens_ru/reserved/
|
11101
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
11102
|
+
ac.ru
|
11103
|
+
edu.ru
|
11104
|
+
gov.ru
|
11105
|
+
int.ru
|
11106
|
+
mil.ru
|
11107
|
+
test.ru
|
11108
|
+
|
11034
11109
|
// COSIMO GmbH : http://www.cosimo.de
|
11035
11110
|
// Submitted by Rene Marticke <rmarticke@cosimo.de>
|
11036
11111
|
dyn.cosidns.de
|
@@ -11055,11 +11130,29 @@ realm.cz
|
|
11055
11130
|
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
11056
11131
|
cupcake.is
|
11057
11132
|
|
11133
|
+
// Curv UG : https://curv-labs.de/
|
11134
|
+
// Submitted by Marvin Wiesner <Marvin@curv-labs.de>
|
11135
|
+
curv.dev
|
11136
|
+
|
11137
|
+
// Customer OCI - Oracle Dyn https://cloud.oracle.com/home https://dyn.com/dns/
|
11138
|
+
// Submitted by Gregory Drake <support@dyn.com>
|
11139
|
+
// Note: This is intended to also include customer-oci.com due to wildcards implicitly including the current label
|
11140
|
+
*.customer-oci.com
|
11141
|
+
*.oci.customer-oci.com
|
11142
|
+
*.ocp.customer-oci.com
|
11143
|
+
*.ocs.customer-oci.com
|
11144
|
+
|
11058
11145
|
// cyon GmbH : https://www.cyon.ch/
|
11059
11146
|
// Submitted by Dominic Luechinger <dol@cyon.ch>
|
11060
11147
|
cyon.link
|
11061
11148
|
cyon.site
|
11062
11149
|
|
11150
|
+
// Danger Science Group: https://dangerscience.com/
|
11151
|
+
// Submitted by Skylar MacDonald <skylar@dangerscience.com>
|
11152
|
+
fnwk.site
|
11153
|
+
folionetwork.site
|
11154
|
+
platform0.app
|
11155
|
+
|
11063
11156
|
// Daplie, Inc : https://daplie.com
|
11064
11157
|
// Submitted by AJ ONeal <aj@daplie.com>
|
11065
11158
|
daplie.me
|
@@ -11082,6 +11175,23 @@ firm.dk
|
|
11082
11175
|
reg.dk
|
11083
11176
|
store.dk
|
11084
11177
|
|
11178
|
+
// dappnode.io : https://dappnode.io/
|
11179
|
+
// Submitted by Abel Boldu / DAppNode Team <community@dappnode.io>
|
11180
|
+
dyndns.dappnode.io
|
11181
|
+
|
11182
|
+
// dapps.earth : https://dapps.earth/
|
11183
|
+
// Submitted by Daniil Burdakov <icqkill@gmail.com>
|
11184
|
+
*.dapps.earth
|
11185
|
+
*.bzz.dapps.earth
|
11186
|
+
|
11187
|
+
// Dark, Inc. : https://darklang.com
|
11188
|
+
// Submitted by Paul Biggar <ops@darklang.com>
|
11189
|
+
builtwithdark.com
|
11190
|
+
|
11191
|
+
// Datawire, Inc : https://www.datawire.io
|
11192
|
+
// Submitted by Richard Li <secalert@datawire.io>
|
11193
|
+
edgestack.me
|
11194
|
+
|
11085
11195
|
// Debian : https://www.debian.org/
|
11086
11196
|
// Submitted by Peter Palfrader / Debian Sysadmin Team <dsa-publicsuffixlist@debian.org>
|
11087
11197
|
debian.net
|
@@ -11090,10 +11200,19 @@ debian.net
|
|
11090
11200
|
// Submitted by Peter Thomassen <peter@desec.io>
|
11091
11201
|
dedyn.io
|
11092
11202
|
|
11203
|
+
// DNS Africa Ltd https://dns.business
|
11204
|
+
// Submitted by Calvin Browne <calvin@dns.business>
|
11205
|
+
jozi.biz
|
11206
|
+
|
11093
11207
|
// DNShome : https://www.dnshome.de/
|
11094
11208
|
// Submitted by Norbert Auler <mail@dnshome.de>
|
11095
11209
|
dnshome.de
|
11096
11210
|
|
11211
|
+
// DotArai : https://www.dotarai.com/
|
11212
|
+
// Submitted by Atsadawat Netcharadsang <atsadawat@dotarai.co.th>
|
11213
|
+
online.th
|
11214
|
+
shop.th
|
11215
|
+
|
11097
11216
|
// DrayTek Corp. : https://www.draytek.com/
|
11098
11217
|
// Submitted by Paul Fang <mis@draytek.com>
|
11099
11218
|
drayddns.com
|
@@ -11115,6 +11234,9 @@ drud.us
|
|
11115
11234
|
// Submitted by Richard Harper <richard@duckdns.org>
|
11116
11235
|
duckdns.org
|
11117
11236
|
|
11237
|
+
// bitbridge.net : Submitted by Craig Welch, abeliidev@gmail.com
|
11238
|
+
bitbridge.net
|
11239
|
+
|
11118
11240
|
// dy.fi : http://dy.fi/
|
11119
11241
|
// Submitted by Heikki Hannikainen <hessu@hes.iki.fi>
|
11120
11242
|
dy.fi
|
@@ -11450,10 +11572,19 @@ dynv6.net
|
|
11450
11572
|
// Submitted by Vladimir Dudr <info@e4you.cz>
|
11451
11573
|
e4.cz
|
11452
11574
|
|
11575
|
+
// En root‽ : https://en-root.org
|
11576
|
+
// Submitted by Emmanuel Raviart <emmanuel@raviart.com>
|
11577
|
+
en-root.fr
|
11578
|
+
|
11453
11579
|
// Enalean SAS: https://www.enalean.com
|
11454
11580
|
// Submitted by Thomas Cottier <thomas.cottier@enalean.com>
|
11455
11581
|
mytuleap.com
|
11456
11582
|
|
11583
|
+
// ECG Robotics, Inc: https://ecgrobotics.org
|
11584
|
+
// Submitted by <frc1533@ecgrobotics.org>
|
11585
|
+
onred.one
|
11586
|
+
staging.onred.one
|
11587
|
+
|
11457
11588
|
// Enonic : http://enonic.com/
|
11458
11589
|
// Submitted by Erik Kaareng-Sunde <esu@enonic.com>
|
11459
11590
|
enonic.io
|
@@ -11537,6 +11668,10 @@ twmail.org
|
|
11537
11668
|
mymailer.com.tw
|
11538
11669
|
url.tw
|
11539
11670
|
|
11671
|
+
// Fabrica Technologies, Inc. : https://www.fabrica.dev/
|
11672
|
+
// Submitted by Eric Jiang <eric@fabrica.dev>
|
11673
|
+
onfabrica.com
|
11674
|
+
|
11540
11675
|
// Facebook, Inc.
|
11541
11676
|
// Submitted by Peter Ruibal <public-suffix@fb.com>
|
11542
11677
|
apps.fbsbx.com
|
@@ -11620,9 +11755,11 @@ vologda.su
|
|
11620
11755
|
// Fancy Bits, LLC : http://getchannels.com
|
11621
11756
|
// Submitted by Aman Gupta <aman@getchannels.com>
|
11622
11757
|
channelsdvr.net
|
11758
|
+
u.channelsdvr.net
|
11623
11759
|
|
11624
11760
|
// Fastly Inc. : http://www.fastly.com/
|
11625
11761
|
// Submitted by Fastly Security <security@fastly.com>
|
11762
|
+
fastly-terrarium.com
|
11626
11763
|
fastlylb.net
|
11627
11764
|
map.fastlylb.net
|
11628
11765
|
freetls.fastly.net
|
@@ -11635,8 +11772,11 @@ global.ssl.fastly.net
|
|
11635
11772
|
|
11636
11773
|
// FASTVPS EESTI OU : https://fastvps.ru/
|
11637
11774
|
// Submitted by Likhachev Vasiliy <lihachev@fastvps.ru>
|
11638
|
-
fastpanel.direct
|
11639
11775
|
fastvps-server.com
|
11776
|
+
fastvps.host
|
11777
|
+
myfast.host
|
11778
|
+
fastvps.site
|
11779
|
+
myfast.space
|
11640
11780
|
|
11641
11781
|
// Featherhead : https://featherhead.xyz/
|
11642
11782
|
// Submitted by Simon Menke <simon@featherhead.xyz>
|
@@ -11650,19 +11790,45 @@ cloud.fedoraproject.org
|
|
11650
11790
|
app.os.fedoraproject.org
|
11651
11791
|
app.os.stg.fedoraproject.org
|
11652
11792
|
|
11793
|
+
// FearWorks Media Ltd. : https://fearworksmedia.co.uk
|
11794
|
+
// submitted by Keith Fairley <domains@fearworksmedia.co.uk>
|
11795
|
+
conn.uk
|
11796
|
+
copro.uk
|
11797
|
+
couk.me
|
11798
|
+
ukco.me
|
11799
|
+
|
11800
|
+
// Fermax : https://fermax.com/
|
11801
|
+
// submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
|
11802
|
+
mydobiss.com
|
11803
|
+
|
11653
11804
|
// Filegear Inc. : https://www.filegear.com
|
11654
11805
|
// Submitted by Jason Zhu <jason@owtware.com>
|
11655
11806
|
filegear.me
|
11807
|
+
filegear-au.me
|
11808
|
+
filegear-de.me
|
11809
|
+
filegear-gb.me
|
11810
|
+
filegear-ie.me
|
11811
|
+
filegear-jp.me
|
11812
|
+
filegear-sg.me
|
11656
11813
|
|
11657
11814
|
// Firebase, Inc.
|
11658
11815
|
// Submitted by Chris Raynor <chris@firebase.com>
|
11659
11816
|
firebaseapp.com
|
11660
11817
|
|
11818
|
+
// fly.io: https://fly.io
|
11819
|
+
// Submitted by Kurt Mackey <kurt@fly.io>
|
11820
|
+
fly.dev
|
11821
|
+
edgeapp.net
|
11822
|
+
shw.io
|
11823
|
+
|
11661
11824
|
// Flynn : https://flynn.io
|
11662
11825
|
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
11663
|
-
flynnhub.com
|
11664
11826
|
flynnhosting.net
|
11665
11827
|
|
11828
|
+
// Frederik Braun https://frederik-braun.com
|
11829
|
+
// Submitted by Frederik Braun <fb@frederik-braun.com>
|
11830
|
+
0e.vc
|
11831
|
+
|
11666
11832
|
// Freebox : http://www.freebox.fr
|
11667
11833
|
// Submitted by Romain Fliedel <rfliedel@freebox.fr>
|
11668
11834
|
freebox-os.com
|
@@ -11676,6 +11842,10 @@ freeboxos.fr
|
|
11676
11842
|
// Submitted by Daniel Stone <daniel@fooishbar.org>
|
11677
11843
|
freedesktop.org
|
11678
11844
|
|
11845
|
+
// FunkFeuer - Verein zur Förderung freier Netze : https://www.funkfeuer.at
|
11846
|
+
// Submitted by Daniel A. Maierhofer <vorstand@funkfeuer.at>
|
11847
|
+
wien.funkfeuer.at
|
11848
|
+
|
11679
11849
|
// Futureweb OG : http://www.futureweb.at
|
11680
11850
|
// Submitted by Andreas Schnederle-Wagner <schnederle@futureweb.at>
|
11681
11851
|
*.futurecms.at
|
@@ -11691,6 +11861,17 @@ futuremailing.at
|
|
11691
11861
|
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
|
11692
11862
|
service.gov.uk
|
11693
11863
|
|
11864
|
+
// Gehirn Inc. : https://www.gehirn.co.jp/
|
11865
|
+
// Submitted by Kohei YOSHIDA <tech@gehirn.co.jp>
|
11866
|
+
gehirn.ne.jp
|
11867
|
+
usercontent.jp
|
11868
|
+
|
11869
|
+
// Gentlent, Inc. : https://www.gentlent.com
|
11870
|
+
// Submitted by Tom Klein <tom@gentlent.com>
|
11871
|
+
gentapps.com
|
11872
|
+
gentlentapis.com
|
11873
|
+
lab.ms
|
11874
|
+
|
11694
11875
|
// GitHub, Inc.
|
11695
11876
|
// Submitted by Patrick Toomey <security@github.com>
|
11696
11877
|
github.io
|
@@ -11700,6 +11881,27 @@ githubusercontent.com
|
|
11700
11881
|
// Submitted by Alex Hanselka <alex@gitlab.com>
|
11701
11882
|
gitlab.io
|
11702
11883
|
|
11884
|
+
// Gitplac.si - https://gitplac.si
|
11885
|
+
// Submitted by Aljaž Starc <me@aljaxus.eu>
|
11886
|
+
gitpage.si
|
11887
|
+
|
11888
|
+
// Glitch, Inc : https://glitch.com
|
11889
|
+
// Submitted by Mads Hartmann <mads@glitch.com>
|
11890
|
+
glitch.me
|
11891
|
+
|
11892
|
+
// GMO Pepabo, Inc. : https://pepabo.com/
|
11893
|
+
// Submitted by dojineko <admin@pepabo.com>
|
11894
|
+
lolipop.io
|
11895
|
+
|
11896
|
+
// GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/
|
11897
|
+
// Submitted by Tom Whitwell <tom.whitwell@digital.cabinet-office.gov.uk>
|
11898
|
+
cloudapps.digital
|
11899
|
+
london.cloudapps.digital
|
11900
|
+
|
11901
|
+
// GOV.UK Pay : https://www.payments.service.gov.uk/
|
11902
|
+
// Submitted by Richard Baker <richard.baker@digital.cabinet-office.gov.uk>
|
11903
|
+
pymnt.uk
|
11904
|
+
|
11703
11905
|
// UKHomeOffice : https://www.gov.uk/government/organisations/home-office
|
11704
11906
|
// Submitted by Jon Shanks <jon.shanks@digital.homeoffice.gov.uk>
|
11705
11907
|
homeoffice.gov.uk
|
@@ -11707,7 +11909,6 @@ homeoffice.gov.uk
|
|
11707
11909
|
// GlobeHosting, Inc.
|
11708
11910
|
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
11709
11911
|
ro.im
|
11710
|
-
shop.ro
|
11711
11912
|
|
11712
11913
|
// GoIP DNS Services : http://www.goip.de
|
11713
11914
|
// Submitted by Christian Poulter <milchstrasse@goip.de>
|
@@ -11715,8 +11916,12 @@ goip.de
|
|
11715
11916
|
|
11716
11917
|
// Google, Inc.
|
11717
11918
|
// Submitted by Eduardo Vela <evn@google.com>
|
11919
|
+
run.app
|
11920
|
+
a.run.app
|
11921
|
+
web.app
|
11718
11922
|
*.0emm.com
|
11719
11923
|
appspot.com
|
11924
|
+
*.r.appspot.com
|
11720
11925
|
blogspot.ae
|
11721
11926
|
blogspot.al
|
11722
11927
|
blogspot.am
|
@@ -11801,6 +12006,27 @@ publishproxy.com
|
|
11801
12006
|
withgoogle.com
|
11802
12007
|
withyoutube.com
|
11803
12008
|
|
12009
|
+
// Aaron Marais' Gitlab pages: https://lab.aaronleem.co.za
|
12010
|
+
// Submitted by Aaron Marais <its_me@aaronleem.co.za>
|
12011
|
+
graphox.us
|
12012
|
+
|
12013
|
+
// Group 53, LLC : https://www.group53.com
|
12014
|
+
// Submitted by Tyler Todd <noc@nova53.net>
|
12015
|
+
awsmppl.com
|
12016
|
+
|
12017
|
+
// Hakaran group: http://hakaran.cz
|
12018
|
+
// Submited by Arseniy Sokolov <security@hakaran.cz>
|
12019
|
+
fin.ci
|
12020
|
+
free.hr
|
12021
|
+
caa.li
|
12022
|
+
ua.rs
|
12023
|
+
conf.se
|
12024
|
+
|
12025
|
+
// Handshake : https://handshake.org
|
12026
|
+
// Submitted by Mike Damm <md@md.vc>
|
12027
|
+
hs.zone
|
12028
|
+
hs.run
|
12029
|
+
|
11804
12030
|
// Hashbang : https://hashbang.sh
|
11805
12031
|
hashbang.sh
|
11806
12032
|
|
@@ -11826,14 +12052,50 @@ ravendb.me
|
|
11826
12052
|
development.run
|
11827
12053
|
ravendb.run
|
11828
12054
|
|
12055
|
+
// HOSTBIP REGISTRY : https://www.hostbip.com/
|
12056
|
+
// Submitted by Atanunu Igbunuroghene <publicsuffixlist@hostbip.com>
|
12057
|
+
bpl.biz
|
12058
|
+
orx.biz
|
12059
|
+
ng.city
|
12060
|
+
biz.gl
|
12061
|
+
ng.ink
|
12062
|
+
col.ng
|
12063
|
+
firm.ng
|
12064
|
+
gen.ng
|
12065
|
+
ltd.ng
|
12066
|
+
ngo.ng
|
12067
|
+
ng.school
|
12068
|
+
sch.so
|
12069
|
+
|
12070
|
+
// HostyHosting (hostyhosting.com)
|
12071
|
+
hostyhosting.io
|
12072
|
+
|
12073
|
+
// Häkkinen.fi
|
12074
|
+
// Submitted by Eero Häkkinen <Eero+psl@Häkkinen.fi>
|
12075
|
+
häkkinen.fi
|
12076
|
+
|
11829
12077
|
// Ici la Lune : http://www.icilalune.com/
|
11830
12078
|
// Submitted by Simon Morvan <simon@icilalune.com>
|
12079
|
+
*.moonscale.io
|
11831
12080
|
moonscale.net
|
11832
12081
|
|
11833
12082
|
// iki.fi
|
11834
12083
|
// Submitted by Hannu Aronsson <haa@iki.fi>
|
11835
12084
|
iki.fi
|
11836
12085
|
|
12086
|
+
// Individual Network Berlin e.V. : https://www.in-berlin.de/
|
12087
|
+
// Submitted by Christian Seitz <chris@in-berlin.de>
|
12088
|
+
dyn-berlin.de
|
12089
|
+
in-berlin.de
|
12090
|
+
in-brb.de
|
12091
|
+
in-butter.de
|
12092
|
+
in-dsl.de
|
12093
|
+
in-dsl.net
|
12094
|
+
in-dsl.org
|
12095
|
+
in-vpn.de
|
12096
|
+
in-vpn.net
|
12097
|
+
in-vpn.org
|
12098
|
+
|
11837
12099
|
// info.at : http://www.info.at/
|
11838
12100
|
biz.at
|
11839
12101
|
info.at
|
@@ -11876,14 +12138,50 @@ to.leg.br
|
|
11876
12138
|
// Submitted by Wolfgang Schwarz <admin@intermetrics.de>
|
11877
12139
|
pixolino.com
|
11878
12140
|
|
12141
|
+
// Internet-Pro, LLP: https://netangels.ru/
|
12142
|
+
// Submited by Vasiliy Sheredeko <piphon@gmail.com>
|
12143
|
+
na4u.ru
|
12144
|
+
|
11879
12145
|
// IPiFony Systems, Inc. : https://www.ipifony.com/
|
11880
12146
|
// Submitted by Matthew Hardeman <mhardeman@ipifony.com>
|
11881
12147
|
ipifony.net
|
11882
12148
|
|
11883
12149
|
// IServ GmbH : https://iserv.eu
|
11884
|
-
// Submitted by Kim-Alexander Brodowski <
|
12150
|
+
// Submitted by Kim-Alexander Brodowski <info@iserv.eu>
|
11885
12151
|
mein-iserv.de
|
12152
|
+
schulserver.de
|
11886
12153
|
test-iserv.de
|
12154
|
+
iserv.dev
|
12155
|
+
|
12156
|
+
// I-O DATA DEVICE, INC. : http://www.iodata.com/
|
12157
|
+
// Submitted by Yuji Minagawa <domains-admin@iodata.jp>
|
12158
|
+
iobb.net
|
12159
|
+
|
12160
|
+
//Jelastic, Inc. : https://jelastic.com/
|
12161
|
+
// Submited by Ihor Kolodyuk <ik@jelastic.com>
|
12162
|
+
appengine.flow.ch
|
12163
|
+
vip.jelastic.cloud
|
12164
|
+
jele.cloud
|
12165
|
+
jele.club
|
12166
|
+
dopaas.com
|
12167
|
+
hidora.com
|
12168
|
+
jcloud.ik-server.com
|
12169
|
+
demo.jelastic.com
|
12170
|
+
paas.massivegrid.com
|
12171
|
+
j.scaleforce.com.cy
|
12172
|
+
jelastic.dogado.eu
|
12173
|
+
fi.cloudplatform.fi
|
12174
|
+
paas.datacenter.fi
|
12175
|
+
jele.host
|
12176
|
+
mircloud.host
|
12177
|
+
jele.io
|
12178
|
+
cloudjiffy.net
|
12179
|
+
jls-sto1.elastx.net
|
12180
|
+
jelastic.saveincloud.net
|
12181
|
+
jelastic.regruhosting.ru
|
12182
|
+
jele.site
|
12183
|
+
jelastic.team
|
12184
|
+
j.layershift.co.uk
|
11887
12185
|
|
11888
12186
|
// Jino : https://www.jino.ru
|
11889
12187
|
// Submitted by Sergey Ulyashin <ulyashin@jino.ru>
|
@@ -11902,14 +12200,28 @@ myjino.ru
|
|
11902
12200
|
// Submitted by Stefan Keim <admin@js.org>
|
11903
12201
|
js.org
|
11904
12202
|
|
12203
|
+
// KaasHosting : http://www.kaashosting.nl/
|
12204
|
+
// Submitted by Wouter Bakker <hostmaster@kaashosting.nl>
|
12205
|
+
kaas.gg
|
12206
|
+
khplay.nl
|
12207
|
+
|
11905
12208
|
// Keyweb AG : https://www.keyweb.de
|
11906
12209
|
// Submitted by Martin Dannehl <postmaster@keymachine.de>
|
11907
12210
|
keymachine.de
|
11908
12211
|
|
12212
|
+
// KingHost : https://king.host
|
12213
|
+
// Submitted by Felipe Keller Braz <felipebraz@kinghost.com.br>
|
12214
|
+
kinghost.net
|
12215
|
+
uni5.net
|
12216
|
+
|
11909
12217
|
// KnightPoint Systems, LLC : http://www.knightpoint.com/
|
11910
12218
|
// Submitted by Roy Keene <rkeene@knightpoint.com>
|
11911
12219
|
knightpoint.systems
|
11912
12220
|
|
12221
|
+
// KUROKU LTD : https://kuroku.ltd/
|
12222
|
+
// Submitted by DisposaBoy <security@oya.to>
|
12223
|
+
oya.to
|
12224
|
+
|
11913
12225
|
// .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf
|
11914
12226
|
co.krd
|
11915
12227
|
edu.krd
|
@@ -11920,6 +12232,26 @@ git-repos.de
|
|
11920
12232
|
lcube-server.de
|
11921
12233
|
svn-repos.de
|
11922
12234
|
|
12235
|
+
// Leadpages : https://www.leadpages.net
|
12236
|
+
// Submitted by Greg Dallavalle <domains@leadpages.net>
|
12237
|
+
leadpages.co
|
12238
|
+
lpages.co
|
12239
|
+
lpusercontent.com
|
12240
|
+
|
12241
|
+
// Lelux.fi : https://lelux.fi/
|
12242
|
+
// Submitted by Lelux Admin <publisuffix@lelux.site>
|
12243
|
+
lelux.site
|
12244
|
+
|
12245
|
+
// Lifetime Hosting : https://Lifetime.Hosting/
|
12246
|
+
// Submitted by Mike Fillator <support@lifetime.hosting>
|
12247
|
+
co.business
|
12248
|
+
co.education
|
12249
|
+
co.events
|
12250
|
+
co.financial
|
12251
|
+
co.network
|
12252
|
+
co.place
|
12253
|
+
co.technology
|
12254
|
+
|
11923
12255
|
// Lightmaker Property Manager, Inc. : https://app.lmpm.com/
|
11924
12256
|
// Submitted by Greg Holland <greg.holland@lmpm.com>
|
11925
12257
|
app.lmpm.com
|
@@ -11933,10 +12265,33 @@ linkitools.space
|
|
11933
12265
|
linkyard.cloud
|
11934
12266
|
linkyard-cloud.ch
|
11935
12267
|
|
12268
|
+
// Linode : https://linode.com
|
12269
|
+
// Submitted by <security@linode.com>
|
12270
|
+
members.linode.com
|
12271
|
+
*.nodebalancer.linode.com
|
12272
|
+
*.linodeobjects.com
|
12273
|
+
|
11936
12274
|
// LiquidNet Ltd : http://www.liquidnetlimited.com/
|
11937
12275
|
// Submitted by Victor Velchev <admin@liquidnetlimited.com>
|
11938
12276
|
we.bs
|
11939
12277
|
|
12278
|
+
// Log'in Line : https://www.loginline.com/
|
12279
|
+
// Submitted by Rémi Mach <remi.mach@loginline.com>
|
12280
|
+
loginline.app
|
12281
|
+
loginline.dev
|
12282
|
+
loginline.io
|
12283
|
+
loginline.services
|
12284
|
+
loginline.site
|
12285
|
+
|
12286
|
+
// LubMAN UMCS Sp. z o.o : https://lubman.pl/
|
12287
|
+
// Submitted by Ireneusz Maliszewski <ireneusz.maliszewski@lubman.pl>
|
12288
|
+
krasnik.pl
|
12289
|
+
leczna.pl
|
12290
|
+
lubartow.pl
|
12291
|
+
lublin.pl
|
12292
|
+
poniatowa.pl
|
12293
|
+
swidnik.pl
|
12294
|
+
|
11940
12295
|
// Lug.org.uk : https://lug.org.uk
|
11941
12296
|
// Submitted by Jon Spriggs <admin@lug.org.uk>
|
11942
12297
|
uklugs.org
|
@@ -11983,6 +12338,15 @@ mayfirst.org
|
|
11983
12338
|
// Submitted by Ilya Zaretskiy <zaretskiy@corp.mail.ru>
|
11984
12339
|
hb.cldmail.ru
|
11985
12340
|
|
12341
|
+
// mcpe.me : https://mcpe.me
|
12342
|
+
// Submitted by Noa Heyl <hi@noa.dev>
|
12343
|
+
mcpe.me
|
12344
|
+
|
12345
|
+
// McHost : https://mchost.ru
|
12346
|
+
// Submitted by Evgeniy Subbotin <e.subbotin@mchost.ru>
|
12347
|
+
mcdir.ru
|
12348
|
+
vps.mcdir.ru
|
12349
|
+
|
11986
12350
|
// Memset hosting : https://www.memset.com
|
11987
12351
|
// Submitted by Tom Whitwell <domains@memset.com>
|
11988
12352
|
miniserver.com
|
@@ -11990,7 +12354,7 @@ memset.net
|
|
11990
12354
|
|
11991
12355
|
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
11992
12356
|
// Submitted by Zdeněk Šustr <zdenek.sustr@cesnet.cz>
|
11993
|
-
cloud.metacentrum.cz
|
12357
|
+
*.cloud.metacentrum.cz
|
11994
12358
|
custom.metacentrum.cz
|
11995
12359
|
|
11996
12360
|
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
@@ -12007,12 +12371,20 @@ eu.meteorapp.com
|
|
12007
12371
|
co.pl
|
12008
12372
|
|
12009
12373
|
// Microsoft Corporation : http://microsoft.com
|
12010
|
-
// Submitted by
|
12011
|
-
azurecontainer.io
|
12374
|
+
// Submitted by Mostafa Elzeiny <moelzein@microsoft.com>
|
12375
|
+
*.azurecontainer.io
|
12012
12376
|
azurewebsites.net
|
12013
12377
|
azure-mobile.net
|
12014
12378
|
cloudapp.net
|
12015
12379
|
|
12380
|
+
// minion.systems : http://minion.systems
|
12381
|
+
// Submitted by Robert Böttinger <r@minion.systems>
|
12382
|
+
csx.cc
|
12383
|
+
|
12384
|
+
// MobileEducation, LLC : https://joinforte.com
|
12385
|
+
// Submitted by Grayson Martin <grayson.martin@mobileeducation.us>
|
12386
|
+
forte.id
|
12387
|
+
|
12016
12388
|
// Mozilla Corporation : https://mozilla.com
|
12017
12389
|
// Submitted by Ben Francis <bfrancis@mozilla.com>
|
12018
12390
|
mozilla-iot.org
|
@@ -12027,10 +12399,46 @@ net.ru
|
|
12027
12399
|
org.ru
|
12028
12400
|
pp.ru
|
12029
12401
|
|
12402
|
+
// Mythic Beasts : https://www.mythic-beasts.com
|
12403
|
+
// Submitted by Paul Cammish <kelduum@mythic-beasts.com>
|
12404
|
+
hostedpi.com
|
12405
|
+
customer.mythic-beasts.com
|
12406
|
+
lynx.mythic-beasts.com
|
12407
|
+
ocelot.mythic-beasts.com
|
12408
|
+
onza.mythic-beasts.com
|
12409
|
+
sphinx.mythic-beasts.com
|
12410
|
+
vs.mythic-beasts.com
|
12411
|
+
x.mythic-beasts.com
|
12412
|
+
yali.mythic-beasts.com
|
12413
|
+
cust.retrosnub.co.uk
|
12414
|
+
|
12415
|
+
// Nabu Casa : https://www.nabucasa.com
|
12416
|
+
// Submitted by Paulus Schoutsen <infra@nabucasa.com>
|
12417
|
+
ui.nabu.casa
|
12418
|
+
|
12419
|
+
// Names.of.London : https://names.of.london/
|
12420
|
+
// Submitted by James Stevens <registry@names.of.london> or <james@jrcs.net>
|
12421
|
+
pony.club
|
12422
|
+
of.fashion
|
12423
|
+
on.fashion
|
12424
|
+
of.football
|
12425
|
+
in.london
|
12426
|
+
of.london
|
12427
|
+
for.men
|
12428
|
+
and.mom
|
12429
|
+
for.mom
|
12430
|
+
for.one
|
12431
|
+
for.sale
|
12432
|
+
of.work
|
12433
|
+
to.work
|
12434
|
+
|
12435
|
+
// NCTU.ME : https://nctu.me/
|
12436
|
+
// Submitted by Tocknicsu <admin@nctu.me>
|
12437
|
+
nctu.me
|
12438
|
+
|
12030
12439
|
// Netlify : https://www.netlify.com
|
12031
12440
|
// Submitted by Jessica Parsons <jessica@netlify.com>
|
12032
|
-
|
12033
|
-
netlify.com
|
12441
|
+
netlify.app
|
12034
12442
|
|
12035
12443
|
// Neustar Inc.
|
12036
12444
|
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
@@ -12187,20 +12595,23 @@ pcloud.host
|
|
12187
12595
|
nyc.mn
|
12188
12596
|
|
12189
12597
|
// NymNom : https://nymnom.com/
|
12190
|
-
// Submitted by
|
12598
|
+
// Submitted by NymNom <psl@nymnom.com>
|
12191
12599
|
nom.ae
|
12192
12600
|
nom.af
|
12193
12601
|
nom.ai
|
12194
12602
|
nom.al
|
12195
12603
|
nym.by
|
12604
|
+
nom.bz
|
12196
12605
|
nym.bz
|
12197
12606
|
nom.cl
|
12607
|
+
nym.ec
|
12198
12608
|
nom.gd
|
12199
12609
|
nom.ge
|
12200
12610
|
nom.gl
|
12201
12611
|
nym.gr
|
12202
12612
|
nom.gt
|
12203
12613
|
nym.gy
|
12614
|
+
nym.hk
|
12204
12615
|
nom.hn
|
12205
12616
|
nym.ie
|
12206
12617
|
nom.im
|
@@ -12212,6 +12623,7 @@ nom.li
|
|
12212
12623
|
nym.li
|
12213
12624
|
nym.lt
|
12214
12625
|
nym.lu
|
12626
|
+
nom.lv
|
12215
12627
|
nym.me
|
12216
12628
|
nom.mk
|
12217
12629
|
nym.mn
|
@@ -12236,18 +12648,34 @@ nom.uy
|
|
12236
12648
|
nom.vc
|
12237
12649
|
nom.vg
|
12238
12650
|
|
12651
|
+
// Observable, Inc. : https://observablehq.com
|
12652
|
+
// Submitted by Mike Bostock <dns@observablehq.com>
|
12653
|
+
static.observableusercontent.com
|
12654
|
+
|
12239
12655
|
// Octopodal Solutions, LLC. : https://ulterius.io/
|
12240
12656
|
// Submitted by Andrew Sampson <andrew@ulterius.io>
|
12241
12657
|
cya.gg
|
12242
12658
|
|
12659
|
+
// OMG.LOL : <https://omg.lol>
|
12660
|
+
// Submitted by Adam Newbold <adam@omg.lol>
|
12661
|
+
omg.lol
|
12662
|
+
|
12243
12663
|
// Omnibond Systems, LLC. : https://www.omnibond.com
|
12244
12664
|
// Submitted by Cole Estep <cole@omnibond.com>
|
12245
12665
|
cloudycluster.net
|
12246
12666
|
|
12667
|
+
// OmniWe Limited: https://omniwe.com
|
12668
|
+
// Submitted by Vicary Archangel <vicary@omniwe.com>
|
12669
|
+
omniwe.site
|
12670
|
+
|
12247
12671
|
// One Fold Media : http://www.onefoldmedia.com/
|
12248
12672
|
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
12249
12673
|
nid.io
|
12250
12674
|
|
12675
|
+
// Open Social : https://www.getopensocial.com/
|
12676
|
+
// Submitted by Alexander Varwijk <security@getopensocial.com>
|
12677
|
+
opensocial.site
|
12678
|
+
|
12251
12679
|
// OpenCraft GmbH : http://opencraft.com/
|
12252
12680
|
// Submitted by Sven Marnach <sven@opencraft.com>
|
12253
12681
|
opencraft.hosting
|
@@ -12256,6 +12684,10 @@ opencraft.hosting
|
|
12256
12684
|
// Submitted by Yngve Pettersen <yngve@opera.com>
|
12257
12685
|
operaunite.com
|
12258
12686
|
|
12687
|
+
// Oursky Limited : https://skygear.io/
|
12688
|
+
// Submited by Skygear Developer <hello@skygear.io>
|
12689
|
+
skygearapp.com
|
12690
|
+
|
12259
12691
|
// OutSystems
|
12260
12692
|
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
|
12261
12693
|
outsystemscloud.com
|
@@ -12265,6 +12697,10 @@ outsystemscloud.com
|
|
12265
12697
|
ownprovider.com
|
12266
12698
|
own.pm
|
12267
12699
|
|
12700
|
+
// OwO : https://whats-th.is/
|
12701
|
+
// Submitted by Dean Sheather <dean@deansheather.com>
|
12702
|
+
*.owo.codes
|
12703
|
+
|
12268
12704
|
// OX : http://www.ox.rs
|
12269
12705
|
// Submitted by Adam Grand <webmaster@mail.ox.rs>
|
12270
12706
|
ox.rs
|
@@ -12281,6 +12717,17 @@ pgfog.com
|
|
12281
12717
|
// Submitted by Jason Kriss <jason@pagefronthq.com>
|
12282
12718
|
pagefrontapp.com
|
12283
12719
|
|
12720
|
+
// PageXL : https://pagexl.com
|
12721
|
+
// Submitted by Yann Guichard <yann@pagexl.com>
|
12722
|
+
pagexl.com
|
12723
|
+
|
12724
|
+
// pcarrier.ca Software Inc: https://pcarrier.ca/
|
12725
|
+
// Submitted by Pierre Carrier <pc@rrier.ca>
|
12726
|
+
bar0.net
|
12727
|
+
bar1.net
|
12728
|
+
bar2.net
|
12729
|
+
rdv.to
|
12730
|
+
|
12284
12731
|
// .pl domains (grandfathered)
|
12285
12732
|
art.pl
|
12286
12733
|
gliwice.pl
|
@@ -12298,15 +12745,42 @@ gotpantheon.com
|
|
12298
12745
|
// Submitted by Steve Leung <steveleung@peplink.com>
|
12299
12746
|
mypep.link
|
12300
12747
|
|
12748
|
+
// Perspecta : https://perspecta.com/
|
12749
|
+
// Submitted by Kenneth Van Alstyne <kvanalstyne@perspecta.com>
|
12750
|
+
perspecta.cloud
|
12751
|
+
|
12301
12752
|
// Planet-Work : https://www.planet-work.com/
|
12302
12753
|
// Submitted by Frédéric VANNIÈRE <f.vanniere@planet-work.com>
|
12303
12754
|
on-web.fr
|
12304
12755
|
|
12305
12756
|
// Platform.sh : https://platform.sh
|
12306
12757
|
// Submitted by Nikola Kotur <nikola@platform.sh>
|
12307
|
-
|
12758
|
+
bc.platform.sh
|
12759
|
+
ent.platform.sh
|
12760
|
+
eu.platform.sh
|
12761
|
+
us.platform.sh
|
12308
12762
|
*.platformsh.site
|
12309
12763
|
|
12764
|
+
// Platter: https://platter.dev
|
12765
|
+
// Submitted by Patrick Flor <patrick@platter.dev>
|
12766
|
+
platter-app.com
|
12767
|
+
platter-app.dev
|
12768
|
+
platterp.us
|
12769
|
+
|
12770
|
+
// Plesk : https://www.plesk.com/
|
12771
|
+
// Submitted by Anton Akhtyamov <program-managers@plesk.com>
|
12772
|
+
pdns.page
|
12773
|
+
plesk.page
|
12774
|
+
pleskns.com
|
12775
|
+
|
12776
|
+
// Port53 : https://port53.io/
|
12777
|
+
// Submitted by Maximilian Schieder <maxi@zeug.co>
|
12778
|
+
dyn53.io
|
12779
|
+
|
12780
|
+
// Positive Codes Technology Company : http://co.bn/faq.html
|
12781
|
+
// Submitted by Zulfais <pc@co.bn>
|
12782
|
+
co.bn
|
12783
|
+
|
12310
12784
|
// prgmr.com : https://prgmr.com/
|
12311
12785
|
// Submitted by Sarah Newman <owner@prgmr.com>
|
12312
12786
|
xen.prgmr.com
|
@@ -12315,6 +12789,14 @@ xen.prgmr.com
|
|
12315
12789
|
// Submitted by registry <lendl@nic.at>
|
12316
12790
|
priv.at
|
12317
12791
|
|
12792
|
+
// privacytools.io : https://www.privacytools.io/
|
12793
|
+
// Submitted by Jonah Aragon <jonah@privacytools.io>
|
12794
|
+
prvcy.page
|
12795
|
+
|
12796
|
+
// Protocol Labs : https://protocol.ai/
|
12797
|
+
// Submitted by Michael Burns <noc@protocol.ai>
|
12798
|
+
*.dweb.link
|
12799
|
+
|
12318
12800
|
// Protonet GmbH : http://protonet.io
|
12319
12801
|
// Submitted by Martin Meier <admin@protonet.io>
|
12320
12802
|
protonet.io
|
@@ -12324,6 +12806,22 @@ protonet.io
|
|
12324
12806
|
chirurgiens-dentistes-en-france.fr
|
12325
12807
|
byen.site
|
12326
12808
|
|
12809
|
+
// pubtls.org: https://www.pubtls.org
|
12810
|
+
// Submitted by Kor Nielsen <kor@pubtls.org>
|
12811
|
+
pubtls.org
|
12812
|
+
|
12813
|
+
// Qualifio : https://qualifio.com/
|
12814
|
+
// Submitted by Xavier De Cock <xdecock@gmail.com>
|
12815
|
+
qualifioapp.com
|
12816
|
+
|
12817
|
+
// QuickBackend: https://www.quickbackend.com
|
12818
|
+
// Submitted by Dani Biro <dani@pymet.com>
|
12819
|
+
qbuser.com
|
12820
|
+
|
12821
|
+
// Redstar Consultants : https://www.redstarconsultants.com/
|
12822
|
+
// Submitted by Jons Slemmer <jons@redstarconsultants.com>
|
12823
|
+
instantcloud.cn
|
12824
|
+
|
12327
12825
|
// Russian Academy of Sciences
|
12328
12826
|
// Submitted by Tech Support <support@rasnet.ru>
|
12329
12827
|
ras.ru
|
@@ -12332,6 +12830,11 @@ ras.ru
|
|
12332
12830
|
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
12333
12831
|
qa2.com
|
12334
12832
|
|
12833
|
+
// QCX
|
12834
|
+
// Submitted by Cassandra Beelen <cassandra@beelen.one>
|
12835
|
+
qcx.io
|
12836
|
+
*.sys.qcx.io
|
12837
|
+
|
12335
12838
|
// QNAP System Inc : https://www.qnap.com
|
12336
12839
|
// Submitted by Nick Chang <nickchang@qnap.com>
|
12337
12840
|
dev-myqnapcloud.com
|
@@ -12352,10 +12855,34 @@ vaporcloud.io
|
|
12352
12855
|
rackmaze.com
|
12353
12856
|
rackmaze.net
|
12354
12857
|
|
12858
|
+
// Rakuten Games, Inc : https://dev.viberplay.io
|
12859
|
+
// Submitted by Joshua Zhang <public-suffix@rgames.jp>
|
12860
|
+
g.vbrplsbx.io
|
12861
|
+
|
12862
|
+
// Rancher Labs, Inc : https://rancher.com
|
12863
|
+
// Submitted by Vincent Fiduccia <domains@rancher.com>
|
12864
|
+
*.on-k3s.io
|
12865
|
+
*.on-rancher.cloud
|
12866
|
+
*.on-rio.io
|
12867
|
+
|
12868
|
+
// Read The Docs, Inc : https://www.readthedocs.org
|
12869
|
+
// Submitted by David Fischer <team@readthedocs.org>
|
12870
|
+
readthedocs.io
|
12871
|
+
|
12355
12872
|
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
|
12356
12873
|
// Submitted by Tim Kramer <tkramer@rhcloud.com>
|
12357
12874
|
rhcloud.com
|
12358
12875
|
|
12876
|
+
// Render : https://render.com
|
12877
|
+
// Submitted by Anurag Goel <dev@render.com>
|
12878
|
+
app.render.com
|
12879
|
+
onrender.com
|
12880
|
+
|
12881
|
+
// Repl.it : https://repl.it
|
12882
|
+
// Submitted by Mason Clayton <mason@repl.it>
|
12883
|
+
repl.co
|
12884
|
+
repl.run
|
12885
|
+
|
12359
12886
|
// Resin.io : https://resin.io
|
12360
12887
|
// Submitted by Tim Perry <tim@resin.io>
|
12361
12888
|
resindevice.io
|
@@ -12371,6 +12898,10 @@ wellbeingzone.eu
|
|
12371
12898
|
ptplus.fit
|
12372
12899
|
wellbeingzone.co.uk
|
12373
12900
|
|
12901
|
+
// Rochester Institute of Technology : http://www.rit.edu/
|
12902
|
+
// Submitted by Jennifer Herting <jchits@rit.edu>
|
12903
|
+
git-pages.rit.edu
|
12904
|
+
|
12374
12905
|
// Sandstorm Development Group, Inc. : https://sandcats.io/
|
12375
12906
|
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
12376
12907
|
sandcats.io
|
@@ -12384,6 +12915,10 @@ logoip.com
|
|
12384
12915
|
// Submitted by Hanno Böck <hanno@schokokeks.org>
|
12385
12916
|
schokokeks.net
|
12386
12917
|
|
12918
|
+
// Scottish Government: https://www.gov.scot
|
12919
|
+
// Submitted by Martin Ellis <martin.ellis@gov.scot>
|
12920
|
+
gov.scot
|
12921
|
+
|
12387
12922
|
// Scry Security : http://www.scrysec.com
|
12388
12923
|
// Submitted by Shante Adam <shante@skyhat.io>
|
12389
12924
|
scrysec.com
|
@@ -12401,10 +12936,13 @@ my-firewall.org
|
|
12401
12936
|
myfirewall.org
|
12402
12937
|
spdns.org
|
12403
12938
|
|
12404
|
-
//
|
12405
|
-
// Submitted by
|
12406
|
-
|
12407
|
-
|
12939
|
+
// Seidat : https://www.seidat.com
|
12940
|
+
// Submitted by Artem Kondratev <accounts@seidat.com>
|
12941
|
+
seidat.net
|
12942
|
+
|
12943
|
+
// Senseering GmbH : https://www.senseering.de
|
12944
|
+
// Submitted by Felix Mönckemeyer <f.moenckemeyer@senseering.de>
|
12945
|
+
senseering.net
|
12408
12946
|
|
12409
12947
|
// Service Online LLC : http://drs.ua/
|
12410
12948
|
// Submitted by Serhii Bulakh <support@drs.ua>
|
@@ -12420,6 +12958,18 @@ shiftedit.io
|
|
12420
12958
|
// Submitted by Alex Bowers <alex@shopblocks.com>
|
12421
12959
|
myshopblocks.com
|
12422
12960
|
|
12961
|
+
// Shopit : https://www.shopitcommerce.com/
|
12962
|
+
// Submitted by Craig McMahon <craig@shopitcommerce.com>
|
12963
|
+
shopitsite.com
|
12964
|
+
|
12965
|
+
// shopware AG : https://shopware.com
|
12966
|
+
// Submitted by Jens Küper <cloud@shopware.com>
|
12967
|
+
shopware.store
|
12968
|
+
|
12969
|
+
// Siemens Mobility GmbH
|
12970
|
+
// Submitted by Oliver Graebner <security@mo-siemens.io>
|
12971
|
+
mo-siemens.io
|
12972
|
+
|
12423
12973
|
// SinaAppEngine : http://sae.sina.com.cn/
|
12424
12974
|
// Submitted by SinaAppEngine <saesupport@sinacloud.com>
|
12425
12975
|
1kapp.com
|
@@ -12428,18 +12978,34 @@ applinzi.com
|
|
12428
12978
|
sinaapp.com
|
12429
12979
|
vipsinaapp.com
|
12430
12980
|
|
12981
|
+
// Siteleaf : https://www.siteleaf.com/
|
12982
|
+
// Submitted by Skylar Challand <support@siteleaf.com>
|
12983
|
+
siteleaf.net
|
12984
|
+
|
12431
12985
|
// Skyhat : http://www.skyhat.io
|
12432
12986
|
// Submitted by Shante Adam <shante@skyhat.io>
|
12433
12987
|
bounty-full.com
|
12434
12988
|
alpha.bounty-full.com
|
12435
12989
|
beta.bounty-full.com
|
12436
12990
|
|
12991
|
+
// Small Technology Foundation : https://small-tech.org
|
12992
|
+
// Submitted by Aral Balkan <aral@small-tech.org>
|
12993
|
+
small-web.org
|
12994
|
+
|
12995
|
+
// Stackhero : https://www.stackhero.io
|
12996
|
+
// Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
|
12997
|
+
stackhero-network.com
|
12998
|
+
|
12437
12999
|
// staticland : https://static.land
|
12438
13000
|
// Submitted by Seth Vincent <sethvincent@gmail.com>
|
12439
13001
|
static.land
|
12440
13002
|
dev.static.land
|
12441
13003
|
sites.static.land
|
12442
13004
|
|
13005
|
+
// Sony Interactive Entertainment LLC : https://sie.com/
|
13006
|
+
// Submitted by David Coles <david.coles@sony.com>
|
13007
|
+
playstation-cloud.com
|
13008
|
+
|
12443
13009
|
// SourceLair PC : https://www.sourcelair.com
|
12444
13010
|
// Submitted by Antonis Kalipetis <akalipetis@sourcelair.com>
|
12445
13011
|
apps.lair.io
|
@@ -12453,6 +13019,10 @@ spacekit.io
|
|
12453
13019
|
// Submitted by Stefan Neufeind <info@speedpartner.de>
|
12454
13020
|
customer.speedpartner.de
|
12455
13021
|
|
13022
|
+
// Standard Library : https://stdlib.com
|
13023
|
+
// Submitted by Jacob Lee <jacob@stdlib.com>
|
13024
|
+
api.stdlib.com
|
13025
|
+
|
12456
13026
|
// Storj Labs Inc. : https://storj.io/
|
12457
13027
|
// Submitted by Philip Hutchins <hostmaster@storj.io>
|
12458
13028
|
storj.farm
|
@@ -12461,10 +13031,29 @@ storj.farm
|
|
12461
13031
|
// Submitted by Silke Hofstra <syscom@snt.utwente.nl>
|
12462
13032
|
utwente.io
|
12463
13033
|
|
13034
|
+
// Student-Run Computing Facility : https://www.srcf.net/
|
13035
|
+
// Submitted by Edwin Balani <sysadmins@srcf.net>
|
13036
|
+
soc.srcf.net
|
13037
|
+
user.srcf.net
|
13038
|
+
|
12464
13039
|
// Sub 6 Limited: http://www.sub6.com
|
12465
13040
|
// Submitted by Dan Miller <dm@sub6.com>
|
12466
13041
|
temp-dns.com
|
12467
13042
|
|
13043
|
+
// Swisscom Application Cloud: https://developer.swisscom.com
|
13044
|
+
// Submitted by Matthias.Winzeler <matthias.winzeler@swisscom.com>
|
13045
|
+
applicationcloud.io
|
13046
|
+
scapp.io
|
13047
|
+
|
13048
|
+
// Symfony, SAS : https://symfony.com/
|
13049
|
+
// Submitted by Fabien Potencier <fabien@symfony.com>
|
13050
|
+
*.s5y.io
|
13051
|
+
*.sensiosite.cloud
|
13052
|
+
|
13053
|
+
// Syncloud : https://syncloud.org
|
13054
|
+
// Submitted by Boris Rybalkin <syncloud@syncloud.it>
|
13055
|
+
syncloud.it
|
13056
|
+
|
12468
13057
|
// Synology, Inc. : https://www.synology.com/
|
12469
13058
|
// Submitted by Rony Weng <ronyweng@synology.com>
|
12470
13059
|
diskstation.me
|
@@ -12481,6 +13070,7 @@ i234.me
|
|
12481
13070
|
myds.me
|
12482
13071
|
synology.me
|
12483
13072
|
vpnplus.to
|
13073
|
+
direct.quickconnect.to
|
12484
13074
|
|
12485
13075
|
// TAIFUN Software AG : http://taifun-software.de
|
12486
13076
|
// Submitted by Bjoern Henke <dev-server@taifun-software.de>
|
@@ -12493,16 +13083,34 @@ gdynia.pl
|
|
12493
13083
|
med.pl
|
12494
13084
|
sopot.pl
|
12495
13085
|
|
13086
|
+
// Teckids e.V. : https://www.teckids.org
|
13087
|
+
// Submitted by Dominik George <dominik.george@teckids.org>
|
13088
|
+
edugit.org
|
13089
|
+
|
13090
|
+
// Telebit : https://telebit.cloud
|
13091
|
+
// Submitted by AJ ONeal <aj@telebit.cloud>
|
13092
|
+
telebit.app
|
13093
|
+
telebit.io
|
13094
|
+
*.telebit.xyz
|
13095
|
+
|
12496
13096
|
// The Gwiddle Foundation : https://gwiddlefoundation.org.uk
|
12497
13097
|
// Submitted by Joshua Bayfield <joshua.bayfield@gwiddlefoundation.org.uk>
|
12498
13098
|
gwiddle.co.uk
|
12499
13099
|
|
12500
13100
|
// Thingdust AG : https://thingdust.com/
|
12501
13101
|
// Submitted by Adrian Imboden <adi@thingdust.com>
|
13102
|
+
thingdustdata.com
|
12502
13103
|
cust.dev.thingdust.io
|
12503
13104
|
cust.disrec.thingdust.io
|
12504
13105
|
cust.prod.thingdust.io
|
12505
13106
|
cust.testing.thingdust.io
|
13107
|
+
*.firenet.ch
|
13108
|
+
*.svc.firenet.ch
|
13109
|
+
|
13110
|
+
// Tlon.io : https://tlon.io
|
13111
|
+
// Submitted by Mark Staarink <mark@tlon.io>
|
13112
|
+
arvo.network
|
13113
|
+
azimuth.network
|
12506
13114
|
|
12507
13115
|
// TownNews.com : http://www.townnews.com
|
12508
13116
|
// Submitted by Dustin Ward <dward@townnews.com>
|
@@ -12574,6 +13182,11 @@ inc.hk
|
|
12574
13182
|
virtualuser.de
|
12575
13183
|
virtual-user.de
|
12576
13184
|
|
13185
|
+
// urown.net : https://urown.net
|
13186
|
+
// Submitted by Hostmaster <hostmaster@urown.net>
|
13187
|
+
urown.cloud
|
13188
|
+
dnsupdate.info
|
13189
|
+
|
12577
13190
|
// .US
|
12578
13191
|
// Submitted by Ed Moore <Ed.Moore@lib.de.us>
|
12579
13192
|
lib.de.us
|
@@ -12582,6 +13195,12 @@ lib.de.us
|
|
12582
13195
|
// Submitted by Danko Aleksejevs <danko@very.lv>
|
12583
13196
|
2038.io
|
12584
13197
|
|
13198
|
+
// Vercel, Inc : https://vercel.com/
|
13199
|
+
// Submitted by Connor Davis <security@vercel.com>
|
13200
|
+
vercel.app
|
13201
|
+
vercel.dev
|
13202
|
+
now.sh
|
13203
|
+
|
12585
13204
|
// Viprinet Europe GmbH : http://www.viprinet.com
|
12586
13205
|
// Submitted by Simon Kissel <hostmaster@viprinet.com>
|
12587
13206
|
router.management
|
@@ -12590,6 +13209,65 @@ router.management
|
|
12590
13209
|
// Submitted by Adnan RIHAN <hostmaster@v-info.info>
|
12591
13210
|
v-info.info
|
12592
13211
|
|
13212
|
+
// Voorloper.com: https://voorloper.com
|
13213
|
+
// Submitted by Nathan van Bakel <info@voorloper.com>
|
13214
|
+
voorloper.cloud
|
13215
|
+
|
13216
|
+
// Voxel.sh DNS : https://voxel.sh/dns/
|
13217
|
+
// Submitted by Mia Rehlinger <dns@voxel.sh>
|
13218
|
+
neko.am
|
13219
|
+
nyaa.am
|
13220
|
+
be.ax
|
13221
|
+
cat.ax
|
13222
|
+
es.ax
|
13223
|
+
eu.ax
|
13224
|
+
gg.ax
|
13225
|
+
mc.ax
|
13226
|
+
us.ax
|
13227
|
+
xy.ax
|
13228
|
+
nl.ci
|
13229
|
+
xx.gl
|
13230
|
+
app.gp
|
13231
|
+
blog.gt
|
13232
|
+
de.gt
|
13233
|
+
to.gt
|
13234
|
+
be.gy
|
13235
|
+
cc.hn
|
13236
|
+
blog.kg
|
13237
|
+
io.kg
|
13238
|
+
jp.kg
|
13239
|
+
tv.kg
|
13240
|
+
uk.kg
|
13241
|
+
us.kg
|
13242
|
+
de.ls
|
13243
|
+
at.md
|
13244
|
+
de.md
|
13245
|
+
jp.md
|
13246
|
+
to.md
|
13247
|
+
uwu.nu
|
13248
|
+
indie.porn
|
13249
|
+
vxl.sh
|
13250
|
+
ch.tc
|
13251
|
+
me.tc
|
13252
|
+
we.tc
|
13253
|
+
nyan.to
|
13254
|
+
at.vg
|
13255
|
+
blog.vu
|
13256
|
+
dev.vu
|
13257
|
+
me.vu
|
13258
|
+
|
13259
|
+
// V.UA Domain Administrator : https://domain.v.ua/
|
13260
|
+
// Submitted by Serhii Rostilo <sergey@rostilo.kiev.ua>
|
13261
|
+
v.ua
|
13262
|
+
|
13263
|
+
// Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
|
13264
|
+
// Submitted by Masayuki Note <masa@blade.wafflecell.com>
|
13265
|
+
wafflecell.com
|
13266
|
+
|
13267
|
+
// WebHare bv: https://www.webhare.com/
|
13268
|
+
// Submitted by Arnold Hendriks <info@webhare.com>
|
13269
|
+
*.webhare.dev
|
13270
|
+
|
12593
13271
|
// WeDeploy by Liferay, Inc. : https://www.wedeploy.com
|
12594
13272
|
// Submitted by Henrique Vicente <security@wedeploy.com>
|
12595
13273
|
wedeploy.io
|
@@ -12600,9 +13278,32 @@ wedeploy.sh
|
|
12600
13278
|
// Submitted by Jung Jin <jungseok.jin@wdc.com>
|
12601
13279
|
remotewd.com
|
12602
13280
|
|
13281
|
+
// WIARD Enterprises : https://wiardweb.com
|
13282
|
+
// Submitted by Kidd Hustle <kiddhustle@wiardweb.com>
|
13283
|
+
pages.wiardweb.com
|
13284
|
+
|
12603
13285
|
// Wikimedia Labs : https://wikitech.wikimedia.org
|
12604
|
-
// Submitted by
|
13286
|
+
// Submitted by Arturo Borrero Gonzalez <aborrero@wikimedia.org>
|
12605
13287
|
wmflabs.org
|
13288
|
+
toolforge.org
|
13289
|
+
wmcloud.org
|
13290
|
+
|
13291
|
+
// WISP : https://wisp.gg
|
13292
|
+
// Submitted by Stepan Fedotov <stepan@wisp.gg>
|
13293
|
+
panel.gg
|
13294
|
+
daemon.panel.gg
|
13295
|
+
|
13296
|
+
// WoltLab GmbH : https://www.woltlab.com
|
13297
|
+
// Submitted by Tim Düsterhus <security@woltlab.cloud>
|
13298
|
+
myforum.community
|
13299
|
+
community-pro.de
|
13300
|
+
diskussionsbereich.de
|
13301
|
+
community-pro.net
|
13302
|
+
meinforum.net
|
13303
|
+
|
13304
|
+
// www.com.vc : http://www.com.vc
|
13305
|
+
// Submitted by Li Hui <lihui@sinopub.com>
|
13306
|
+
cn.vu
|
12606
13307
|
|
12607
13308
|
// XenonCloud GbR: https://xenoncloud.net
|
12608
13309
|
// Submitted by Julian Uphoff <publicsuffixlist@xenoncloud.net>
|
@@ -12620,6 +13321,12 @@ cistron.nl
|
|
12620
13321
|
demon.nl
|
12621
13322
|
xs4all.space
|
12622
13323
|
|
13324
|
+
// Yandex.Cloud LLC: https://cloud.yandex.com
|
13325
|
+
// Submitted by Alexander Lodin <security+psl@yandex-team.ru>
|
13326
|
+
yandexcloud.net
|
13327
|
+
storage.yandexcloud.net
|
13328
|
+
website.yandexcloud.net
|
13329
|
+
|
12623
13330
|
// YesCourse Pty Ltd : https://yescourse.com
|
12624
13331
|
// Submitted by Atul Bhouraskar <atul@yescourse.com>
|
12625
13332
|
official.academy
|
@@ -12648,12 +13355,26 @@ noho.st
|
|
12648
13355
|
za.net
|
12649
13356
|
za.org
|
12650
13357
|
|
12651
|
-
//
|
12652
|
-
// Submitted by
|
12653
|
-
|
13358
|
+
// Zine EOOD : https://zine.bg/
|
13359
|
+
// Submitted by Martin Angelov <martin@zine.bg>
|
13360
|
+
bss.design
|
13361
|
+
|
13362
|
+
// Zitcom A/S : https://www.zitcom.dk
|
13363
|
+
// Submitted by Emil Stahl <esp@zitcom.dk>
|
13364
|
+
basicserver.io
|
13365
|
+
virtualserver.io
|
13366
|
+
enterprisecloud.nu
|
13367
|
+
|
13368
|
+
// Mintere : https://mintere.com/
|
13369
|
+
// Submitted by Ben Aubin <security@mintere.com>
|
13370
|
+
mintere.site
|
12654
13371
|
|
12655
|
-
//
|
12656
|
-
// Submitted by
|
12657
|
-
|
13372
|
+
// WP Engine : https://wpengine.com/
|
13373
|
+
// Submitted by Michael Smith <michael.smith@wpengine.com>
|
13374
|
+
wpenginepowered.com
|
12658
13375
|
|
13376
|
+
// Impertrix Solutions : <https://impertrixcdn.com>
|
13377
|
+
// Submitted by Zhixiang Zhao <csuite@impertrix.com>
|
13378
|
+
impertrixcdn.com
|
13379
|
+
impertrix.com
|
12659
13380
|
// ===END PRIVATE DOMAINS===
|