public_suffix 3.1.1 → 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 -34
- data/.travis.yml +2 -10
- data/CHANGELOG.md +105 -52
- data/Gemfile +6 -3
- data/LICENSE.txt +1 -1
- data/README.md +20 -15
- data/SECURITY.md +104 -0
- data/codecov.yml +12 -0
- data/data/list.txt +629 -215
- data/lib/public_suffix.rb +1 -1
- data/lib/public_suffix/domain.rb +1 -1
- data/lib/public_suffix/errors.rb +1 -1
- data/lib/public_suffix/list.rb +3 -3
- data/lib/public_suffix/rule.rb +2 -2
- data/lib/public_suffix/version.rb +2 -2
- data/public_suffix.gemspec +9 -5
- data/test/acceptance_test.rb +31 -29
- data/test/psl_test.rb +1 -1
- data/test/test_helper.rb +1 -1
- data/test/unit/public_suffix_test.rb +11 -11
- data/test/unit/rule_test.rb +30 -30
- metadata +16 -50
- data/.ruby-gemset +0 -1
data/Gemfile
CHANGED
@@ -4,9 +4,12 @@ source "https://rubygems.org"
|
|
4
4
|
|
5
5
|
gemspec
|
6
6
|
|
7
|
+
gem "rake"
|
8
|
+
|
7
9
|
gem "codecov", require: false
|
10
|
+
gem "memory_profiler", require: false
|
8
11
|
gem "minitest"
|
9
12
|
gem "minitest-reporters"
|
10
|
-
gem "
|
11
|
-
|
12
|
-
gem "
|
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.3
|
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/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/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
|
@@ -213,6 +212,7 @@ ac.at
|
|
213
212
|
co.at
|
214
213
|
gv.at
|
215
214
|
or.at
|
215
|
+
sth.ac.at
|
216
216
|
|
217
217
|
// au : https://en.wikipedia.org/wiki/.au
|
218
218
|
// http://www.auda.org.au/
|
@@ -240,6 +240,8 @@ vic.au
|
|
240
240
|
wa.au
|
241
241
|
// 3LDs
|
242
242
|
act.edu.au
|
243
|
+
catholic.edu.au
|
244
|
+
// eq.edu.au - Removed at the request of the Queensland Department of Education
|
243
245
|
nsw.edu.au
|
244
246
|
nt.edu.au
|
245
247
|
qld.edu.au
|
@@ -255,6 +257,9 @@ sa.gov.au
|
|
255
257
|
tas.gov.au
|
256
258
|
vic.gov.au
|
257
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
|
258
263
|
|
259
264
|
// aw : https://en.wikipedia.org/wiki/.aw
|
260
265
|
aw
|
@@ -451,6 +456,7 @@ aju.br
|
|
451
456
|
am.br
|
452
457
|
anani.br
|
453
458
|
aparecida.br
|
459
|
+
app.br
|
454
460
|
arq.br
|
455
461
|
art.br
|
456
462
|
ato.br
|
@@ -458,6 +464,7 @@ b.br
|
|
458
464
|
barueri.br
|
459
465
|
belem.br
|
460
466
|
bhz.br
|
467
|
+
bib.br
|
461
468
|
bio.br
|
462
469
|
blog.br
|
463
470
|
bmd.br
|
@@ -472,14 +479,19 @@ cnt.br
|
|
472
479
|
com.br
|
473
480
|
contagem.br
|
474
481
|
coop.br
|
482
|
+
coz.br
|
475
483
|
cri.br
|
476
484
|
cuiaba.br
|
477
485
|
curitiba.br
|
478
486
|
def.br
|
487
|
+
des.br
|
488
|
+
det.br
|
489
|
+
dev.br
|
479
490
|
ecn.br
|
480
491
|
eco.br
|
481
492
|
edu.br
|
482
493
|
emp.br
|
494
|
+
enf.br
|
483
495
|
eng.br
|
484
496
|
esp.br
|
485
497
|
etc.br
|
@@ -495,6 +507,7 @@ fot.br
|
|
495
507
|
foz.br
|
496
508
|
fst.br
|
497
509
|
g12.br
|
510
|
+
geo.br
|
498
511
|
ggf.br
|
499
512
|
goiania.br
|
500
513
|
gov.br
|
@@ -538,6 +551,7 @@ jor.br
|
|
538
551
|
jus.br
|
539
552
|
leg.br
|
540
553
|
lel.br
|
554
|
+
log.br
|
541
555
|
londrina.br
|
542
556
|
macapa.br
|
543
557
|
maceio.br
|
@@ -570,6 +584,7 @@ qsl.br
|
|
570
584
|
radio.br
|
571
585
|
rec.br
|
572
586
|
recife.br
|
587
|
+
rep.br
|
573
588
|
ribeirao.br
|
574
589
|
rio.br
|
575
590
|
riobranco.br
|
@@ -580,6 +595,7 @@ santamaria.br
|
|
580
595
|
santoandre.br
|
581
596
|
saobernardo.br
|
582
597
|
saogonca.br
|
598
|
+
seg.br
|
583
599
|
sjc.br
|
584
600
|
slg.br
|
585
601
|
slz.br
|
@@ -587,6 +603,7 @@ sorocaba.br
|
|
587
603
|
srv.br
|
588
604
|
taxi.br
|
589
605
|
tc.br
|
606
|
+
tec.br
|
590
607
|
teo.br
|
591
608
|
the.br
|
592
609
|
tmp.br
|
@@ -714,11 +731,13 @@ gouv.ci
|
|
714
731
|
*.ck
|
715
732
|
!www.ck
|
716
733
|
|
717
|
-
// cl : https://
|
734
|
+
// cl : https://www.nic.cl
|
735
|
+
// Confirmed by .CL registry <hsalgado@nic.cl>
|
718
736
|
cl
|
719
|
-
|
720
|
-
gob.cl
|
737
|
+
aprendemas.cl
|
721
738
|
co.cl
|
739
|
+
gob.cl
|
740
|
+
gov.cl
|
722
741
|
mil.cl
|
723
742
|
|
724
743
|
// cm : https://en.wikipedia.org/wiki/.cm plus bug 981927
|
@@ -977,13 +996,28 @@ fi
|
|
977
996
|
// TODO: Check for updates (expected to be phased out around Q1/2009)
|
978
997
|
aland.fi
|
979
998
|
|
980
|
-
// fj :
|
981
|
-
|
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
|
982
1012
|
|
983
1013
|
// fk : https://en.wikipedia.org/wiki/.fk
|
984
1014
|
*.fk
|
985
1015
|
|
986
1016
|
// fm : https://en.wikipedia.org/wiki/.fm
|
1017
|
+
com.fm
|
1018
|
+
edu.fm
|
1019
|
+
net.fm
|
1020
|
+
org.fm
|
987
1021
|
fm
|
988
1022
|
|
989
1023
|
// fo : https://en.wikipedia.org/wiki/.fo
|
@@ -1023,6 +1057,8 @@ ga
|
|
1023
1057
|
gb
|
1024
1058
|
|
1025
1059
|
// gd : https://en.wikipedia.org/wiki/.gd
|
1060
|
+
edu.gd
|
1061
|
+
gov.gd
|
1026
1062
|
gd
|
1027
1063
|
|
1028
1064
|
// ge : http://www.nic.net.ge/policy_en.pdf
|
@@ -1363,7 +1399,7 @@ it
|
|
1363
1399
|
gov.it
|
1364
1400
|
edu.it
|
1365
1401
|
// Reserved geo-names (regions and provinces):
|
1366
|
-
//
|
1402
|
+
// https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
|
1367
1403
|
// Regions
|
1368
1404
|
abr.it
|
1369
1405
|
abruzzo.it
|
@@ -3767,7 +3803,7 @@ gov.lc
|
|
3767
3803
|
// li : https://en.wikipedia.org/wiki/.li
|
3768
3804
|
li
|
3769
3805
|
|
3770
|
-
// lk :
|
3806
|
+
// lk : https://www.nic.lk/index.php/domain-registration/lk-domain-naming-structure
|
3771
3807
|
lk
|
3772
3808
|
gov.lk
|
3773
3809
|
sch.lk
|
@@ -4334,8 +4370,6 @@ niepce.museum
|
|
4334
4370
|
norfolk.museum
|
4335
4371
|
north.museum
|
4336
4372
|
nrw.museum
|
4337
|
-
nuernberg.museum
|
4338
|
-
nuremberg.museum
|
4339
4373
|
nyc.museum
|
4340
4374
|
nyny.museum
|
4341
4375
|
oceanographic.museum
|
@@ -5883,14 +5917,9 @@ gov.rs
|
|
5883
5917
|
in.rs
|
5884
5918
|
org.rs
|
5885
5919
|
|
5886
|
-
// 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>
|
5887
5922
|
ru
|
5888
|
-
ac.ru
|
5889
|
-
edu.ru
|
5890
|
-
gov.ru
|
5891
|
-
int.ru
|
5892
|
-
mil.ru
|
5893
|
-
test.ru
|
5894
5923
|
|
5895
5924
|
// rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
|
5896
5925
|
rw
|
@@ -6035,15 +6064,28 @@ org.sn
|
|
6035
6064
|
perso.sn
|
6036
6065
|
univ.sn
|
6037
6066
|
|
6038
|
-
// so : http://
|
6067
|
+
// so : http://sonic.so/policies/
|
6039
6068
|
so
|
6040
6069
|
com.so
|
6070
|
+
edu.so
|
6071
|
+
gov.so
|
6072
|
+
me.so
|
6041
6073
|
net.so
|
6042
6074
|
org.so
|
6043
6075
|
|
6044
6076
|
// sr : https://en.wikipedia.org/wiki/.sr
|
6045
6077
|
sr
|
6046
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
|
+
|
6047
6089
|
// st : http://www.nic.st/html/policyrules/
|
6048
6090
|
st
|
6049
6091
|
co.st
|
@@ -6303,7 +6345,6 @@ cv.ua
|
|
6303
6345
|
dn.ua
|
6304
6346
|
dnepropetrovsk.ua
|
6305
6347
|
dnipropetrovsk.ua
|
6306
|
-
dominic.ua
|
6307
6348
|
donetsk.ua
|
6308
6349
|
dp.ua
|
6309
6350
|
if.ua
|
@@ -6497,7 +6538,7 @@ k12.ok.us
|
|
6497
6538
|
k12.or.us
|
6498
6539
|
k12.pa.us
|
6499
6540
|
k12.pr.us
|
6500
|
-
k12.ri.us
|
6541
|
+
// k12.ri.us Removed at request of Kim Cournoyer <netsupport@staff.ri.net>
|
6501
6542
|
k12.sc.us
|
6502
6543
|
// k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
|
6503
6544
|
k12.tn.us
|
@@ -6784,8 +6825,16 @@ yt
|
|
6784
6825
|
مصر
|
6785
6826
|
|
6786
6827
|
// xn--e1a4c ("eu", Cyrillic) : EU
|
6828
|
+
// https://eurid.eu
|
6787
6829
|
ею
|
6788
6830
|
|
6831
|
+
// xn--qxa6a ("eu", Greek) : EU
|
6832
|
+
// https://eurid.eu
|
6833
|
+
ευ
|
6834
|
+
|
6835
|
+
// xn--mgbah1a3hjkrd ("Mauritania", Arabic) : MR
|
6836
|
+
موريتانيا
|
6837
|
+
|
6789
6838
|
// xn--node ("ge", Georgian Mkhedruli) : GE
|
6790
6839
|
გე
|
6791
6840
|
|
@@ -6887,11 +6936,11 @@ yt
|
|
6887
6936
|
қаз
|
6888
6937
|
|
6889
6938
|
// xn--fzc2c9e2c ("Lanka", Sinhalese-Sinhala) : LK
|
6890
|
-
//
|
6939
|
+
// https://nic.lk
|
6891
6940
|
ලංකා
|
6892
6941
|
|
6893
6942
|
// xn--xkc2al3hye2a ("Ilangai", Tamil) : LK
|
6894
|
-
//
|
6943
|
+
// https://nic.lk
|
6895
6944
|
இலங்கை
|
6896
6945
|
|
6897
6946
|
// xn--mgbc0a9azcg ("Morocco/al-Maghrib", Arabic) : MA
|
@@ -6939,7 +6988,8 @@ yt
|
|
6939
6988
|
ак.срб
|
6940
6989
|
|
6941
6990
|
// xn--p1ai ("rf", Russian-Cyrillic) : RU
|
6942
|
-
//
|
6991
|
+
// https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
|
6992
|
+
// Submitted by George Georgievsky <gug@cctld.ru>
|
6943
6993
|
рф
|
6944
6994
|
|
6945
6995
|
// xn--wgbl6a ("Qatar", Arabic) : QA
|
@@ -7012,7 +7062,7 @@ xxx
|
|
7012
7062
|
// ye : http://www.y.net.ye/services/domain_name.htm
|
7013
7063
|
*.ye
|
7014
7064
|
|
7015
|
-
// za :
|
7065
|
+
// za : https://www.zadna.org.za/content/page/domain-information/
|
7016
7066
|
ac.za
|
7017
7067
|
agric.za
|
7018
7068
|
alt.za
|
@@ -7024,6 +7074,7 @@ law.za
|
|
7024
7074
|
mil.za
|
7025
7075
|
net.za
|
7026
7076
|
ngo.za
|
7077
|
+
nic.za
|
7027
7078
|
nis.za
|
7028
7079
|
nom.za
|
7029
7080
|
org.za
|
@@ -7058,7 +7109,7 @@ org.zw
|
|
7058
7109
|
|
7059
7110
|
// newGTLDs
|
7060
7111
|
|
7061
|
-
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on
|
7112
|
+
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-08-07T17:16:50Z
|
7062
7113
|
// This list is auto-generated, don't edit it manually.
|
7063
7114
|
// aaa : 2015-02-26 American Automobile Association, Inc.
|
7064
7115
|
aaa
|
@@ -7141,9 +7192,6 @@ agency
|
|
7141
7192
|
// aig : 2014-12-18 American International Group, Inc.
|
7142
7193
|
aig
|
7143
7194
|
|
7144
|
-
// aigo : 2015-08-06 aigo Digital Technology Co,Ltd.
|
7145
|
-
aigo
|
7146
|
-
|
7147
7195
|
// airbus : 2015-07-30 Airbus S.A.S.
|
7148
7196
|
airbus
|
7149
7197
|
|
@@ -7180,6 +7228,9 @@ alsace
|
|
7180
7228
|
// alstom : 2015-07-30 ALSTOM
|
7181
7229
|
alstom
|
7182
7230
|
|
7231
|
+
// amazon : 2019-12-19 Amazon Registry Services, Inc.
|
7232
|
+
amazon
|
7233
|
+
|
7183
7234
|
// americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc.
|
7184
7235
|
americanexpress
|
7185
7236
|
|
@@ -7204,7 +7255,7 @@ analytics
|
|
7204
7255
|
// android : 2014-08-07 Charleston Road Registry Inc.
|
7205
7256
|
android
|
7206
7257
|
|
7207
|
-
// anquan : 2015-01-08
|
7258
|
+
// anquan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
7208
7259
|
anquan
|
7209
7260
|
|
7210
7261
|
// anz : 2015-07-31 Australia and New Zealand Banking Group Limited
|
@@ -7264,7 +7315,7 @@ audi
|
|
7264
7315
|
// audible : 2015-06-25 Amazon Registry Services, Inc.
|
7265
7316
|
audible
|
7266
7317
|
|
7267
|
-
// audio : 2014-03-20
|
7318
|
+
// audio : 2014-03-20 UNR Corp.
|
7268
7319
|
audio
|
7269
7320
|
|
7270
7321
|
// auspost : 2015-08-13 Australian Postal Corporation
|
@@ -7273,13 +7324,13 @@ auspost
|
|
7273
7324
|
// author : 2014-12-18 Amazon Registry Services, Inc.
|
7274
7325
|
author
|
7275
7326
|
|
7276
|
-
// auto : 2014-11-13
|
7327
|
+
// auto : 2014-11-13 XYZ.COM LLC
|
7277
7328
|
auto
|
7278
7329
|
|
7279
7330
|
// autos : 2014-01-09 DERAutos, LLC
|
7280
7331
|
autos
|
7281
7332
|
|
7282
|
-
// avianca : 2015-01-08
|
7333
|
+
// avianca : 2015-01-08 Avianca Holdings S.A.
|
7283
7334
|
avianca
|
7284
7335
|
|
7285
7336
|
// aws : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -7357,7 +7408,7 @@ bcn
|
|
7357
7408
|
// beats : 2015-05-14 Beats Electronics, LLC
|
7358
7409
|
beats
|
7359
7410
|
|
7360
|
-
// beauty : 2015-12-03
|
7411
|
+
// beauty : 2015-12-03 XYZ.COM LLC
|
7361
7412
|
beauty
|
7362
7413
|
|
7363
7414
|
// beer : 2014-01-09 Minds + Machines Group Limited
|
@@ -7402,7 +7453,7 @@ bio
|
|
7402
7453
|
// black : 2014-01-16 Afilias Limited
|
7403
7454
|
black
|
7404
7455
|
|
7405
|
-
// blackfriday : 2014-01-16
|
7456
|
+
// blackfriday : 2014-01-16 UNR Corp.
|
7406
7457
|
blackfriday
|
7407
7458
|
|
7408
7459
|
// blockbuster : 2015-07-30 Dish DBS Corporation
|
@@ -7423,9 +7474,6 @@ bms
|
|
7423
7474
|
// bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft
|
7424
7475
|
bmw
|
7425
7476
|
|
7426
|
-
// bnl : 2014-07-24 Banca Nazionale del Lavoro
|
7427
|
-
bnl
|
7428
|
-
|
7429
7477
|
// bnpparibas : 2014-05-29 BNP Paribas
|
7430
7478
|
bnpparibas
|
7431
7479
|
|
@@ -7552,7 +7600,7 @@ capital
|
|
7552
7600
|
// capitalone : 2015-08-06 Capital One Financial Corporation
|
7553
7601
|
capitalone
|
7554
7602
|
|
7555
|
-
// car : 2015-01-22
|
7603
|
+
// car : 2015-01-22 XYZ.COM LLC
|
7556
7604
|
car
|
7557
7605
|
|
7558
7606
|
// caravan : 2013-12-12 Caravan International, Inc.
|
@@ -7570,12 +7618,9 @@ career
|
|
7570
7618
|
// careers : 2013-10-02 Binky Moon, LLC
|
7571
7619
|
careers
|
7572
7620
|
|
7573
|
-
// cars : 2014-11-13
|
7621
|
+
// cars : 2014-11-13 XYZ.COM LLC
|
7574
7622
|
cars
|
7575
7623
|
|
7576
|
-
// cartier : 2014-06-23 Richemont DNS Inc.
|
7577
|
-
cartier
|
7578
|
-
|
7579
7624
|
// casa : 2013-11-21 Minds + Machines Group Limited
|
7580
7625
|
casa
|
7581
7626
|
|
@@ -7648,15 +7693,12 @@ cheap
|
|
7648
7693
|
// chintai : 2015-06-11 CHINTAI Corporation
|
7649
7694
|
chintai
|
7650
7695
|
|
7651
|
-
// christmas : 2013-11-21
|
7696
|
+
// christmas : 2013-11-21 UNR Corp.
|
7652
7697
|
christmas
|
7653
7698
|
|
7654
7699
|
// chrome : 2014-07-24 Charleston Road Registry Inc.
|
7655
7700
|
chrome
|
7656
7701
|
|
7657
|
-
// chrysler : 2015-07-30 FCA US LLC.
|
7658
|
-
chrysler
|
7659
|
-
|
7660
7702
|
// church : 2014-02-06 Binky Moon, LLC
|
7661
7703
|
church
|
7662
7704
|
|
@@ -7690,7 +7732,7 @@ claims
|
|
7690
7732
|
// cleaning : 2013-12-05 Binky Moon, LLC
|
7691
7733
|
cleaning
|
7692
7734
|
|
7693
|
-
// click : 2014-06-05
|
7735
|
+
// click : 2014-06-05 UNR Corp.
|
7694
7736
|
click
|
7695
7737
|
|
7696
7738
|
// clinic : 2014-03-20 Binky Moon, LLC
|
@@ -7738,7 +7780,7 @@ community
|
|
7738
7780
|
// company : 2013-11-07 Binky Moon, LLC
|
7739
7781
|
company
|
7740
7782
|
|
7741
|
-
// compare : 2015-10-08
|
7783
|
+
// compare : 2015-10-08 Registry Services, LLC
|
7742
7784
|
compare
|
7743
7785
|
|
7744
7786
|
// computer : 2013-10-24 Binky Moon, LLC
|
@@ -7822,7 +7864,7 @@ cuisinella
|
|
7822
7864
|
// cymru : 2014-05-08 Nominet UK
|
7823
7865
|
cymru
|
7824
7866
|
|
7825
|
-
// cyou : 2015-01-22
|
7867
|
+
// cyou : 2015-01-22 ShortDot SA
|
7826
7868
|
cyou
|
7827
7869
|
|
7828
7870
|
// dabur : 2014-02-06 Dabur India Limited
|
@@ -7903,7 +7945,7 @@ dhl
|
|
7903
7945
|
// diamonds : 2013-09-22 Binky Moon, LLC
|
7904
7946
|
diamonds
|
7905
7947
|
|
7906
|
-
// diet : 2014-06-26
|
7948
|
+
// diet : 2014-06-26 UNR Corp.
|
7907
7949
|
diet
|
7908
7950
|
|
7909
7951
|
// digital : 2014-03-06 Binky Moon, LLC
|
@@ -7936,9 +7978,6 @@ docs
|
|
7936
7978
|
// doctor : 2016-06-02 Binky Moon, LLC
|
7937
7979
|
doctor
|
7938
7980
|
|
7939
|
-
// dodge : 2015-07-30 FCA US LLC.
|
7940
|
-
dodge
|
7941
|
-
|
7942
7981
|
// dog : 2014-12-04 Binky Moon, LLC
|
7943
7982
|
dog
|
7944
7983
|
|
@@ -7966,9 +8005,6 @@ duck
|
|
7966
8005
|
// dunlop : 2015-07-02 The Goodyear Tire & Rubber Company
|
7967
8006
|
dunlop
|
7968
8007
|
|
7969
|
-
// duns : 2015-08-06 The Dun & Bradstreet Corporation
|
7970
|
-
duns
|
7971
|
-
|
7972
8008
|
// dupont : 2015-06-25 E. I. du Pont de Nemours and Company
|
7973
8009
|
dupont
|
7974
8010
|
|
@@ -8032,9 +8068,6 @@ esq
|
|
8032
8068
|
// estate : 2013-08-27 Binky Moon, LLC
|
8033
8069
|
estate
|
8034
8070
|
|
8035
|
-
// esurance : 2015-07-23 Esurance Insurance Company
|
8036
|
-
esurance
|
8037
|
-
|
8038
8071
|
// etisalat : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat)
|
8039
8072
|
etisalat
|
8040
8073
|
|
@@ -8047,9 +8080,6 @@ eus
|
|
8047
8080
|
// events : 2013-12-05 Binky Moon, LLC
|
8048
8081
|
events
|
8049
8082
|
|
8050
|
-
// everbank : 2014-05-15 EverBank
|
8051
|
-
everbank
|
8052
|
-
|
8053
8083
|
// exchange : 2014-03-06 Binky Moon, LLC
|
8054
8084
|
exchange
|
8055
8085
|
|
@@ -8083,7 +8113,7 @@ family
|
|
8083
8113
|
// fan : 2014-03-06 Dog Beach, LLC
|
8084
8114
|
fan
|
8085
8115
|
|
8086
|
-
// fans : 2014-11-07
|
8116
|
+
// fans : 2014-11-07 ZDNS International Limited
|
8087
8117
|
fans
|
8088
8118
|
|
8089
8119
|
// farm : 2013-11-07 Binky Moon, LLC
|
@@ -8152,7 +8182,7 @@ fit
|
|
8152
8182
|
// fitness : 2014-03-06 Binky Moon, LLC
|
8153
8183
|
fitness
|
8154
8184
|
|
8155
|
-
// flickr : 2015-04-02
|
8185
|
+
// flickr : 2015-04-02 Flickr, Inc.
|
8156
8186
|
flickr
|
8157
8187
|
|
8158
8188
|
// flights : 2013-12-05 Binky Moon, LLC
|
@@ -8164,7 +8194,7 @@ flir
|
|
8164
8194
|
// florist : 2013-11-07 Binky Moon, LLC
|
8165
8195
|
florist
|
8166
8196
|
|
8167
|
-
// flowers : 2014-10-09
|
8197
|
+
// flowers : 2014-10-09 UNR Corp.
|
8168
8198
|
flowers
|
8169
8199
|
|
8170
8200
|
// fly : 2014-05-08 Charleston Road Registry Inc.
|
@@ -8254,7 +8284,7 @@ gallo
|
|
8254
8284
|
// gallup : 2015-02-19 Gallup, Inc.
|
8255
8285
|
gallup
|
8256
8286
|
|
8257
|
-
// game : 2015-05-28
|
8287
|
+
// game : 2015-05-28 UNR Corp.
|
8258
8288
|
game
|
8259
8289
|
|
8260
8290
|
// games : 2015-05-28 Dog Beach, LLC
|
@@ -8323,7 +8353,7 @@ gmail
|
|
8323
8353
|
// gmbh : 2016-01-29 Binky Moon, LLC
|
8324
8354
|
gmbh
|
8325
8355
|
|
8326
|
-
// gmo : 2014-01-09 GMO Internet
|
8356
|
+
// gmo : 2014-01-09 GMO Internet, Inc.
|
8327
8357
|
gmo
|
8328
8358
|
|
8329
8359
|
// gmx : 2014-04-24 1&1 Mail & Media GmbH
|
@@ -8392,13 +8422,13 @@ guge
|
|
8392
8422
|
// guide : 2013-09-13 Binky Moon, LLC
|
8393
8423
|
guide
|
8394
8424
|
|
8395
|
-
// guitars : 2013-11-14
|
8425
|
+
// guitars : 2013-11-14 UNR Corp.
|
8396
8426
|
guitars
|
8397
8427
|
|
8398
8428
|
// guru : 2013-08-27 Binky Moon, LLC
|
8399
8429
|
guru
|
8400
8430
|
|
8401
|
-
// hair : 2015-12-03
|
8431
|
+
// hair : 2015-12-03 XYZ.COM LLC
|
8402
8432
|
hair
|
8403
8433
|
|
8404
8434
|
// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
|
@@ -8425,7 +8455,7 @@ health
|
|
8425
8455
|
// healthcare : 2014-06-12 Binky Moon, LLC
|
8426
8456
|
healthcare
|
8427
8457
|
|
8428
|
-
// help : 2014-06-26
|
8458
|
+
// help : 2014-06-26 UNR Corp.
|
8429
8459
|
help
|
8430
8460
|
|
8431
8461
|
// helsinki : 2015-02-05 City of Helsinki
|
@@ -8440,7 +8470,7 @@ hermes
|
|
8440
8470
|
// hgtv : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
8441
8471
|
hgtv
|
8442
8472
|
|
8443
|
-
// hiphop : 2014-03-06
|
8473
|
+
// hiphop : 2014-03-06 UNR Corp.
|
8444
8474
|
hiphop
|
8445
8475
|
|
8446
8476
|
// hisamitsu : 2015-07-16 Hisamitsu Pharmaceutical Co.,Inc.
|
@@ -8449,7 +8479,7 @@ hisamitsu
|
|
8449
8479
|
// hitachi : 2014-10-31 Hitachi, Ltd.
|
8450
8480
|
hitachi
|
8451
8481
|
|
8452
|
-
// hiv : 2014-03-13
|
8482
|
+
// hiv : 2014-03-13 UNR Corp.
|
8453
8483
|
hiv
|
8454
8484
|
|
8455
8485
|
// hkt : 2015-05-14 PCCW-HKT DataCom Services Limited
|
@@ -8479,9 +8509,6 @@ homesense
|
|
8479
8509
|
// honda : 2014-12-18 Honda Motor Co., Ltd.
|
8480
8510
|
honda
|
8481
8511
|
|
8482
|
-
// honeywell : 2015-07-23 Honeywell GTLD LLC
|
8483
|
-
honeywell
|
8484
|
-
|
8485
8512
|
// horse : 2013-11-21 Minds + Machines Group Limited
|
8486
8513
|
horse
|
8487
8514
|
|
@@ -8491,7 +8518,7 @@ hospital
|
|
8491
8518
|
// host : 2014-04-17 DotHost Inc.
|
8492
8519
|
host
|
8493
8520
|
|
8494
|
-
// hosting : 2014-05-29
|
8521
|
+
// hosting : 2014-05-29 UNR Corp.
|
8495
8522
|
hosting
|
8496
8523
|
|
8497
8524
|
// hot : 2015-08-27 Amazon Registry Services, Inc.
|
@@ -8599,9 +8626,6 @@ ipiranga
|
|
8599
8626
|
// irish : 2014-08-07 Binky Moon, LLC
|
8600
8627
|
irish
|
8601
8628
|
|
8602
|
-
// iselect : 2015-02-11 iSelect Ltd
|
8603
|
-
iselect
|
8604
|
-
|
8605
8629
|
// ismaili : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation)
|
8606
8630
|
ismaili
|
8607
8631
|
|
@@ -8668,7 +8692,7 @@ jpmorgan
|
|
8668
8692
|
// jprs : 2014-09-18 Japan Registry Services Co., Ltd.
|
8669
8693
|
jprs
|
8670
8694
|
|
8671
|
-
// juegos : 2014-03-20
|
8695
|
+
// juegos : 2014-03-20 UNR Corp.
|
8672
8696
|
juegos
|
8673
8697
|
|
8674
8698
|
// juniper : 2015-07-30 JUNIPER NETWORKS, INC.
|
@@ -8740,9 +8764,6 @@ kyoto
|
|
8740
8764
|
// lacaixa : 2014-01-09 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa”
|
8741
8765
|
lacaixa
|
8742
8766
|
|
8743
|
-
// ladbrokes : 2015-08-06 LADBROKES INTERNATIONAL PLC
|
8744
|
-
ladbrokes
|
8745
|
-
|
8746
8767
|
// lamborghini : 2015-06-04 Automobili Lamborghini S.p.A.
|
8747
8768
|
lamborghini
|
8748
8769
|
|
@@ -8755,9 +8776,6 @@ lancaster
|
|
8755
8776
|
// lancia : 2015-07-31 Fiat Chrysler Automobiles N.V.
|
8756
8777
|
lancia
|
8757
8778
|
|
8758
|
-
// lancome : 2015-07-23 L'Oréal
|
8759
|
-
lancome
|
8760
|
-
|
8761
8779
|
// land : 2013-09-10 Binky Moon, LLC
|
8762
8780
|
land
|
8763
8781
|
|
@@ -8785,7 +8803,7 @@ law
|
|
8785
8803
|
// lawyer : 2014-03-20 Dog Beach, LLC
|
8786
8804
|
lawyer
|
8787
8805
|
|
8788
|
-
// lds : 2014-03-20 IRI Domain Management, LLC
|
8806
|
+
// lds : 2014-03-20 IRI Domain Management, LLC
|
8789
8807
|
lds
|
8790
8808
|
|
8791
8809
|
// lease : 2014-03-06 Binky Moon, LLC
|
@@ -8809,9 +8827,6 @@ lexus
|
|
8809
8827
|
// lgbt : 2014-05-08 Afilias Limited
|
8810
8828
|
lgbt
|
8811
8829
|
|
8812
|
-
// liaison : 2014-10-02 Liaison Technologies, Incorporated
|
8813
|
-
liaison
|
8814
|
-
|
8815
8830
|
// lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
|
8816
8831
|
lidl
|
8817
8832
|
|
@@ -8845,7 +8860,7 @@ lincoln
|
|
8845
8860
|
// linde : 2014-12-04 Linde Aktiengesellschaft
|
8846
8861
|
linde
|
8847
8862
|
|
8848
|
-
// link : 2013-11-14
|
8863
|
+
// link : 2013-11-14 UNR Corp.
|
8849
8864
|
link
|
8850
8865
|
|
8851
8866
|
// lipsy : 2015-06-25 Lipsy Ltd
|
@@ -8863,6 +8878,9 @@ lixil
|
|
8863
8878
|
// llc : 2017-12-14 Afilias Limited
|
8864
8879
|
llc
|
8865
8880
|
|
8881
|
+
// llp : 2019-08-26 UNR Corp.
|
8882
|
+
llp
|
8883
|
+
|
8866
8884
|
// loan : 2014-11-20 dot Loan Limited
|
8867
8885
|
loan
|
8868
8886
|
|
@@ -8878,7 +8896,7 @@ locus
|
|
8878
8896
|
// loft : 2015-07-30 Annco, Inc.
|
8879
8897
|
loft
|
8880
8898
|
|
8881
|
-
// lol : 2015-01-30
|
8899
|
+
// lol : 2015-01-30 UNR Corp.
|
8882
8900
|
lol
|
8883
8901
|
|
8884
8902
|
// london : 2013-11-14 Dot London Domains Limited
|
@@ -8929,7 +8947,7 @@ maif
|
|
8929
8947
|
// maison : 2013-12-05 Binky Moon, LLC
|
8930
8948
|
maison
|
8931
8949
|
|
8932
|
-
// makeup : 2015-01-15
|
8950
|
+
// makeup : 2015-01-15 XYZ.COM LLC
|
8933
8951
|
makeup
|
8934
8952
|
|
8935
8953
|
// man : 2014-12-04 MAN SE
|
@@ -9031,9 +9049,6 @@ mma
|
|
9031
9049
|
// mobile : 2016-06-02 Dish DBS Corporation
|
9032
9050
|
mobile
|
9033
9051
|
|
9034
|
-
// mobily : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
9035
|
-
mobily
|
9036
|
-
|
9037
9052
|
// moda : 2013-11-07 Dog Beach, LLC
|
9038
9053
|
moda
|
9039
9054
|
|
@@ -9043,7 +9058,7 @@ moe
|
|
9043
9058
|
// moi : 2014-12-18 Amazon Registry Services, Inc.
|
9044
9059
|
moi
|
9045
9060
|
|
9046
|
-
// mom : 2015-04-16
|
9061
|
+
// mom : 2015-04-16 UNR Corp.
|
9047
9062
|
mom
|
9048
9063
|
|
9049
9064
|
// monash : 2013-09-30 Monash University
|
@@ -9055,10 +9070,7 @@ money
|
|
9055
9070
|
// monster : 2015-09-11 XYZ.COM LLC
|
9056
9071
|
monster
|
9057
9072
|
|
9058
|
-
//
|
9059
|
-
mopar
|
9060
|
-
|
9061
|
-
// mormon : 2013-12-05 IRI Domain Management, LLC ("Applicant")
|
9073
|
+
// mormon : 2013-12-05 IRI Domain Management, LLC
|
9062
9074
|
mormon
|
9063
9075
|
|
9064
9076
|
// mortgage : 2014-03-20 Dog Beach, LLC
|
@@ -9079,9 +9091,6 @@ mov
|
|
9079
9091
|
// movie : 2015-02-05 Binky Moon, LLC
|
9080
9092
|
movie
|
9081
9093
|
|
9082
|
-
// movistar : 2014-10-16 Telefónica S.A.
|
9083
|
-
movistar
|
9084
|
-
|
9085
9094
|
// msd : 2015-07-23 MSD Registry Holdings, Inc.
|
9086
9095
|
msd
|
9087
9096
|
|
@@ -9097,9 +9106,6 @@ mutual
|
|
9097
9106
|
// nab : 2015-08-20 National Australia Bank Limited
|
9098
9107
|
nab
|
9099
9108
|
|
9100
|
-
// nadex : 2014-12-11 Nadex Domains, Inc.
|
9101
|
-
nadex
|
9102
|
-
|
9103
9109
|
// nagoya : 2013-10-24 GMO Registry, Inc.
|
9104
9110
|
nagoya
|
9105
9111
|
|
@@ -9127,7 +9133,7 @@ netflix
|
|
9127
9133
|
// network : 2013-11-14 Binky Moon, LLC
|
9128
9134
|
network
|
9129
9135
|
|
9130
|
-
// neustar : 2013-12-05
|
9136
|
+
// neustar : 2013-12-05 NeuStar, Inc.
|
9131
9137
|
neustar
|
9132
9138
|
|
9133
9139
|
// new : 2014-01-30 Charleston Road Registry Inc.
|
@@ -9328,7 +9334,7 @@ philips
|
|
9328
9334
|
// phone : 2016-06-02 Dish DBS Corporation
|
9329
9335
|
phone
|
9330
9336
|
|
9331
|
-
// photo : 2013-11-14
|
9337
|
+
// photo : 2013-11-14 UNR Corp.
|
9332
9338
|
photo
|
9333
9339
|
|
9334
9340
|
// photography : 2013-09-20 Binky Moon, LLC
|
@@ -9340,10 +9346,7 @@ photos
|
|
9340
9346
|
// physio : 2014-05-01 PhysBiz Pty Ltd
|
9341
9347
|
physio
|
9342
9348
|
|
9343
|
-
//
|
9344
|
-
piaget
|
9345
|
-
|
9346
|
-
// pics : 2013-11-14 Uniregistry, Corp.
|
9349
|
+
// pics : 2013-11-14 UNR Corp.
|
9347
9350
|
pics
|
9348
9351
|
|
9349
9352
|
// pictet : 2014-06-26 Pictet Europe S.A.
|
@@ -9430,7 +9433,7 @@ promo
|
|
9430
9433
|
// properties : 2013-12-05 Binky Moon, LLC
|
9431
9434
|
properties
|
9432
9435
|
|
9433
|
-
// property : 2014-05-22
|
9436
|
+
// property : 2014-05-22 UNR Corp.
|
9434
9437
|
property
|
9435
9438
|
|
9436
9439
|
// protection : 2015-04-23 XYZ.COM LLC
|
@@ -9454,7 +9457,7 @@ qpon
|
|
9454
9457
|
// quebec : 2013-12-19 PointQuébec Inc
|
9455
9458
|
quebec
|
9456
9459
|
|
9457
|
-
// quest : 2015-03-26
|
9460
|
+
// quest : 2015-03-26 XYZ.COM LLC
|
9458
9461
|
quest
|
9459
9462
|
|
9460
9463
|
// qvc : 2015-07-30 QVC, Inc.
|
@@ -9508,7 +9511,7 @@ reit
|
|
9508
9511
|
// reliance : 2015-04-02 Reliance Industries Limited
|
9509
9512
|
reliance
|
9510
9513
|
|
9511
|
-
// ren : 2013-12-12
|
9514
|
+
// ren : 2013-12-12 ZDNS International Limited
|
9512
9515
|
ren
|
9513
9516
|
|
9514
9517
|
// rent : 2014-12-04 XYZ.COM LLC
|
@@ -9550,9 +9553,6 @@ richardli
|
|
9550
9553
|
// ricoh : 2014-11-20 Ricoh Company, Ltd.
|
9551
9554
|
ricoh
|
9552
9555
|
|
9553
|
-
// rightathome : 2015-07-23 Johnson Shareholdings, Inc.
|
9554
|
-
rightathome
|
9555
|
-
|
9556
9556
|
// ril : 2015-04-02 Reliance Industries Limited
|
9557
9557
|
ril
|
9558
9558
|
|
@@ -9682,9 +9682,6 @@ science
|
|
9682
9682
|
// scjohnson : 2015-07-23 Johnson Shareholdings, Inc.
|
9683
9683
|
scjohnson
|
9684
9684
|
|
9685
|
-
// scor : 2014-10-31 SCOR SE
|
9686
|
-
scor
|
9687
|
-
|
9688
9685
|
// scot : 2014-01-23 Dot Scot Registry Limited
|
9689
9686
|
scot
|
9690
9687
|
|
@@ -9703,7 +9700,7 @@ security
|
|
9703
9700
|
// seek : 2014-12-04 Seek Limited
|
9704
9701
|
seek
|
9705
9702
|
|
9706
|
-
// select : 2015-10-08
|
9703
|
+
// select : 2015-10-08 Registry Services, LLC
|
9707
9704
|
select
|
9708
9705
|
|
9709
9706
|
// sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A.
|
@@ -9724,7 +9721,7 @@ sew
|
|
9724
9721
|
// sex : 2014-11-13 ICM Registry SX LLC
|
9725
9722
|
sex
|
9726
9723
|
|
9727
|
-
// sexy : 2013-09-11
|
9724
|
+
// sexy : 2013-09-11 UNR Corp.
|
9728
9725
|
sexy
|
9729
9726
|
|
9730
9727
|
// sfr : 2015-08-13 Societe Francaise du Radiotelephone - SFR
|
@@ -9757,7 +9754,7 @@ shop
|
|
9757
9754
|
// shopping : 2016-03-31 Binky Moon, LLC
|
9758
9755
|
shopping
|
9759
9756
|
|
9760
|
-
// shouji : 2015-01-08
|
9757
|
+
// shouji : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
9761
9758
|
shouji
|
9762
9759
|
|
9763
9760
|
// show : 2015-03-05 Binky Moon, LLC
|
@@ -9784,7 +9781,7 @@ site
|
|
9784
9781
|
// ski : 2015-04-09 Afilias Limited
|
9785
9782
|
ski
|
9786
9783
|
|
9787
|
-
// skin : 2015-01-15
|
9784
|
+
// skin : 2015-01-15 XYZ.COM LLC
|
9788
9785
|
skin
|
9789
9786
|
|
9790
9787
|
// sky : 2014-06-19 Sky International AG
|
@@ -9835,6 +9832,9 @@ sony
|
|
9835
9832
|
// soy : 2014-01-23 Charleston Road Registry Inc.
|
9836
9833
|
soy
|
9837
9834
|
|
9835
|
+
// spa : 2019-09-19 Asia Spa and Wellness Promotion Council Limited
|
9836
|
+
spa
|
9837
|
+
|
9838
9838
|
// space : 2014-04-03 DotSpace Inc.
|
9839
9839
|
space
|
9840
9840
|
|
@@ -9850,9 +9850,6 @@ spreadbetting
|
|
9850
9850
|
// srl : 2015-05-07 InterNetX, Corp
|
9851
9851
|
srl
|
9852
9852
|
|
9853
|
-
// srt : 2015-07-30 FCA US LLC.
|
9854
|
-
srt
|
9855
|
-
|
9856
9853
|
// stada : 2014-11-13 STADA Arzneimittel AG
|
9857
9854
|
stada
|
9858
9855
|
|
@@ -9862,9 +9859,6 @@ staples
|
|
9862
9859
|
// star : 2015-01-08 Star India Private Limited
|
9863
9860
|
star
|
9864
9861
|
|
9865
|
-
// starhub : 2015-02-05 StarHub Ltd
|
9866
|
-
starhub
|
9867
|
-
|
9868
9862
|
// statebank : 2015-03-12 STATE BANK OF INDIA
|
9869
9863
|
statebank
|
9870
9864
|
|
@@ -9931,9 +9925,6 @@ swiss
|
|
9931
9925
|
// sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
|
9932
9926
|
sydney
|
9933
9927
|
|
9934
|
-
// symantec : 2014-12-04 Symantec Corporation
|
9935
|
-
symantec
|
9936
|
-
|
9937
9928
|
// systems : 2013-11-07 Binky Moon, LLC
|
9938
9929
|
systems
|
9939
9930
|
|
@@ -9958,7 +9949,7 @@ tatamotors
|
|
9958
9949
|
// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic"
|
9959
9950
|
tatar
|
9960
9951
|
|
9961
|
-
// tattoo : 2013-08-30
|
9952
|
+
// tattoo : 2013-08-30 UNR Corp.
|
9962
9953
|
tattoo
|
9963
9954
|
|
9964
9955
|
// tax : 2014-03-20 Binky Moon, LLC
|
@@ -9982,9 +9973,6 @@ tech
|
|
9982
9973
|
// technology : 2013-09-13 Binky Moon, LLC
|
9983
9974
|
technology
|
9984
9975
|
|
9985
|
-
// telefonica : 2014-10-16 Telefónica S.A.
|
9986
|
-
telefonica
|
9987
|
-
|
9988
9976
|
// temasek : 2014-08-07 Temasek Holdings (Private) Limited
|
9989
9977
|
temasek
|
9990
9978
|
|
@@ -10078,7 +10066,7 @@ trading
|
|
10078
10066
|
// training : 2013-11-07 Binky Moon, LLC
|
10079
10067
|
training
|
10080
10068
|
|
10081
|
-
// travel :
|
10069
|
+
// travel : 2015-10-09 Dog Beach, LLC
|
10082
10070
|
travel
|
10083
10071
|
|
10084
10072
|
// travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc.
|
@@ -10090,7 +10078,7 @@ travelers
|
|
10090
10078
|
// travelersinsurance : 2015-03-26 Travelers TLD, LLC
|
10091
10079
|
travelersinsurance
|
10092
10080
|
|
10093
|
-
// trust : 2014-10-16 NCC Group Inc.
|
10081
|
+
// trust : 2014-10-16 NCC Group Domain Services, Inc.
|
10094
10082
|
trust
|
10095
10083
|
|
10096
10084
|
// trv : 2015-03-26 Travelers TLD, LLC
|
@@ -10117,16 +10105,13 @@ ubank
|
|
10117
10105
|
// ubs : 2014-12-11 UBS AG
|
10118
10106
|
ubs
|
10119
10107
|
|
10120
|
-
// uconnect : 2015-07-30 FCA US LLC.
|
10121
|
-
uconnect
|
10122
|
-
|
10123
10108
|
// unicom : 2015-10-15 China United Network Communications Corporation Limited
|
10124
10109
|
unicom
|
10125
10110
|
|
10126
10111
|
// university : 2014-03-06 Binky Moon, LLC
|
10127
10112
|
university
|
10128
10113
|
|
10129
|
-
// uno : 2013-09-11
|
10114
|
+
// uno : 2013-09-11 DotSite Inc.
|
10130
10115
|
uno
|
10131
10116
|
|
10132
10117
|
// uol : 2014-05-01 UBN INTERNET LTDA.
|
@@ -10189,9 +10174,6 @@ visa
|
|
10189
10174
|
// vision : 2013-12-05 Binky Moon, LLC
|
10190
10175
|
vision
|
10191
10176
|
|
10192
|
-
// vistaprint : 2014-09-18 Vistaprint Limited
|
10193
|
-
vistaprint
|
10194
|
-
|
10195
10177
|
// viva : 2014-11-07 Saudi Telecom Company
|
10196
10178
|
viva
|
10197
10179
|
|
@@ -10240,9 +10222,6 @@ wang
|
|
10240
10222
|
// wanggou : 2014-12-18 Amazon Registry Services, Inc.
|
10241
10223
|
wanggou
|
10242
10224
|
|
10243
|
-
// warman : 2015-06-18 Weir Group IP Limited
|
10244
|
-
warman
|
10245
|
-
|
10246
10225
|
// watch : 2013-11-14 Binky Moon, LLC
|
10247
10226
|
watch
|
10248
10227
|
|
@@ -10336,7 +10315,7 @@ xerox
|
|
10336
10315
|
// xfinity : 2015-07-09 Comcast IP Holdings I, LLC
|
10337
10316
|
xfinity
|
10338
10317
|
|
10339
|
-
// xihuan : 2015-01-08
|
10318
|
+
// xihuan : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
10340
10319
|
xihuan
|
10341
10320
|
|
10342
10321
|
// xin : 2014-12-11 Elegant Leader Limited
|
@@ -10357,7 +10336,7 @@ xin
|
|
10357
10336
|
// xn--3bst00m : 2013-09-13 Eagle Horizon Limited
|
10358
10337
|
集团
|
10359
10338
|
|
10360
|
-
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED
|
10339
|
+
// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED OY
|
10361
10340
|
在线
|
10362
10341
|
|
10363
10342
|
// xn--3oq18vl8pn36a : 2015-07-02 Volkswagen (China) Investment Co., Ltd.
|
@@ -10372,7 +10351,7 @@ xin
|
|
10372
10351
|
// xn--45q11c : 2013-11-21 Zodiac Gemini Ltd
|
10373
10352
|
八卦
|
10374
10353
|
|
10375
|
-
// xn--4gbrim : 2013-10-04
|
10354
|
+
// xn--4gbrim : 2013-10-04 Fans TLD Limited
|
10376
10355
|
موقع
|
10377
10356
|
|
10378
10357
|
// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center
|
@@ -10432,10 +10411,13 @@ xin
|
|
10432
10411
|
// xn--cck2b3b : 2015-02-26 Amazon Registry Services, Inc.
|
10433
10412
|
ストア
|
10434
10413
|
|
10414
|
+
// xn--cckwcxetd : 2019-12-19 Amazon Registry Services, Inc.
|
10415
|
+
アマゾン
|
10416
|
+
|
10435
10417
|
// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD
|
10436
10418
|
삼성
|
10437
10419
|
|
10438
|
-
// xn--czr694b : 2014-01-16
|
10420
|
+
// xn--czr694b : 2014-01-16 Internet DotTrademark Organisation Limited
|
10439
10421
|
商标
|
10440
10422
|
|
10441
10423
|
// xn--czrs0t : 2013-12-19 Binky Moon, LLC
|
@@ -10453,16 +10435,13 @@ xin
|
|
10453
10435
|
// xn--efvy88h : 2014-08-22 Guangzhou YU Wei Information Technology Co., Ltd.
|
10454
10436
|
新闻
|
10455
10437
|
|
10456
|
-
// xn--estv75g : 2015-02-19 Industrial and Commercial Bank of China Limited
|
10457
|
-
工行
|
10458
|
-
|
10459
10438
|
// xn--fct429k : 2015-04-09 Amazon Registry Services, Inc.
|
10460
10439
|
家電
|
10461
10440
|
|
10462
10441
|
// xn--fhbei : 2015-01-15 VeriSign Sarl
|
10463
10442
|
كوم
|
10464
10443
|
|
10465
|
-
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED
|
10444
|
+
// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED OY
|
10466
10445
|
中文网
|
10467
10446
|
|
10468
10447
|
// xn--fiq64b : 2013-10-14 CITIC Group Corporation
|
@@ -10492,7 +10471,7 @@ xin
|
|
10492
10471
|
// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry
|
10493
10472
|
संगठन
|
10494
10473
|
|
10495
|
-
// xn--imr513n : 2014-12-11
|
10474
|
+
// xn--imr513n : 2014-12-11 Internet DotTrademark Organisation Limited
|
10496
10475
|
餐厅
|
10497
10476
|
|
10498
10477
|
// xn--io0a7i : 2013-11-14 China Internet Network Information Center (CNNIC)
|
@@ -10501,6 +10480,9 @@ xin
|
|
10501
10480
|
// xn--j1aef : 2015-01-15 VeriSign Sarl
|
10502
10481
|
ком
|
10503
10482
|
|
10483
|
+
// xn--jlq480n2rg : 2019-12-19 Amazon Registry Services, Inc.
|
10484
|
+
亚马逊
|
10485
|
+
|
10504
10486
|
// xn--jlq61u9w7b : 2015-01-08 Nokia Corporation
|
10505
10487
|
诺基亚
|
10506
10488
|
|
@@ -10510,9 +10492,6 @@ xin
|
|
10510
10492
|
// xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V.
|
10511
10493
|
飞利浦
|
10512
10494
|
|
10513
|
-
// xn--kpu716f : 2014-12-22 Richemont DNS Inc.
|
10514
|
-
手表
|
10515
|
-
|
10516
10495
|
// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd
|
10517
10496
|
手机
|
10518
10497
|
|
@@ -10528,9 +10507,6 @@ xin
|
|
10528
10507
|
// xn--mgbab2bd : 2013-10-31 CORE Association
|
10529
10508
|
بازار
|
10530
10509
|
|
10531
|
-
// xn--mgbb9fbpob : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
10532
|
-
موبايلي
|
10533
|
-
|
10534
10510
|
// xn--mgbca7dzdo : 2015-07-30 Abu Dhabi Systems and Information Centre
|
10535
10511
|
ابوظبي
|
10536
10512
|
|
@@ -10564,15 +10540,12 @@ xin
|
|
10564
10540
|
// xn--nyqy26a : 2014-11-07 Stable Tone Limited
|
10565
10541
|
健康
|
10566
10542
|
|
10567
|
-
// xn--otu796d : 2017-08-06
|
10543
|
+
// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited
|
10568
10544
|
招聘
|
10569
10545
|
|
10570
10546
|
// xn--p1acf : 2013-12-12 Rusnames Limited
|
10571
10547
|
рус
|
10572
10548
|
|
10573
|
-
// xn--pbt977c : 2014-12-22 Richemont DNS Inc.
|
10574
|
-
珠宝
|
10575
|
-
|
10576
10549
|
// xn--pssy2u : 2015-01-15 VeriSign Sarl
|
10577
10550
|
大拿
|
10578
10551
|
|
@@ -10639,7 +10612,7 @@ yahoo
|
|
10639
10612
|
// yamaxun : 2014-12-18 Amazon Registry Services, Inc.
|
10640
10613
|
yamaxun
|
10641
10614
|
|
10642
|
-
// yandex : 2014-04-10
|
10615
|
+
// yandex : 2014-04-10 Yandex Europe B.V.
|
10643
10616
|
yandex
|
10644
10617
|
|
10645
10618
|
// yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
|
@@ -10657,7 +10630,7 @@ you
|
|
10657
10630
|
// youtube : 2014-05-01 Charleston Road Registry Inc.
|
10658
10631
|
youtube
|
10659
10632
|
|
10660
|
-
// yun : 2015-01-08
|
10633
|
+
// yun : 2015-01-08 Beijing Qihu Keji Co., Ltd.
|
10661
10634
|
yun
|
10662
10635
|
|
10663
10636
|
// zappos : 2015-06-25 Amazon Registry Services, Inc.
|
@@ -10689,6 +10662,15 @@ cc.ua
|
|
10689
10662
|
inf.ua
|
10690
10663
|
ltd.ua
|
10691
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
|
+
|
10692
10674
|
// Agnat sp. z o.o. : https://domena.pl
|
10693
10675
|
// Submitted by Przemyslaw Plewa <it-admin@domena.pl>
|
10694
10676
|
beep.pl
|
@@ -10702,6 +10684,20 @@ barsy.ca
|
|
10702
10684
|
*.compute.estate
|
10703
10685
|
*.alces.network
|
10704
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
|
+
|
10705
10701
|
// alwaysdata : https://www.alwaysdata.com
|
10706
10702
|
// Submitted by Cyril <admin@alwaysdata.com>
|
10707
10703
|
alwaysdata.net
|
@@ -10802,6 +10798,10 @@ s3-website.eu-west-2.amazonaws.com
|
|
10802
10798
|
s3-website.eu-west-3.amazonaws.com
|
10803
10799
|
s3-website.us-east-2.amazonaws.com
|
10804
10800
|
|
10801
|
+
// Amsterdam Wireless: https://www.amsterdamwireless.nl/
|
10802
|
+
// Submitted by Imre Jonk <hostmaster@amsterdamwireless.nl>
|
10803
|
+
amsw.nl
|
10804
|
+
|
10805
10805
|
// Amune : https://amune.org/
|
10806
10806
|
// Submitted by Team Amune <cert@amune.org>
|
10807
10807
|
t3l3p0rt.net
|
@@ -10815,6 +10815,12 @@ apigee.io
|
|
10815
10815
|
// Submitted by Thomas Orozco <thomas@aptible.com>
|
10816
10816
|
on-aptible.com
|
10817
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
|
+
|
10818
10824
|
// Asociación Amigos de la Informática "Euskalamiga" : http://encounter.eus/
|
10819
10825
|
// Submitted by Hector Martin <marcan@euskalencounter.org>
|
10820
10826
|
user.party.eus
|
@@ -10830,12 +10836,6 @@ sweetpepper.org
|
|
10830
10836
|
// Submitted by Vincent Tseng <vincenttseng@asustor.com>
|
10831
10837
|
myasustor.com
|
10832
10838
|
|
10833
|
-
// Automattic Inc. : https://automattic.com/
|
10834
|
-
// Submitted by Alex Concha <alex.concha@automattic.com>
|
10835
|
-
go-vip.co
|
10836
|
-
go-vip.net
|
10837
|
-
wpcomstaging.com
|
10838
|
-
|
10839
10839
|
// AVM : https://avm.de
|
10840
10840
|
// Submitted by Andreas Weise <a.weise@avm.de>
|
10841
10841
|
myfritz.net
|
@@ -10858,8 +10858,11 @@ backplaneapp.io
|
|
10858
10858
|
balena-devices.com
|
10859
10859
|
|
10860
10860
|
// Banzai Cloud
|
10861
|
-
// Submitted by
|
10861
|
+
// Submitted by Janos Matyas <info@banzaicloud.com>
|
10862
|
+
*.banzai.cloud
|
10862
10863
|
app.banzaicloud.io
|
10864
|
+
*.backyards.banzaicloud.io
|
10865
|
+
|
10863
10866
|
|
10864
10867
|
// BetaInABox
|
10865
10868
|
// Submitted by Adrian <adrian@betainabox.com>
|
@@ -10913,33 +10916,36 @@ uwu.ai
|
|
10913
10916
|
// CentralNic : http://www.centralnic.com/names/domains
|
10914
10917
|
// Submitted by registry <gavin.brown@centralnic.com>
|
10915
10918
|
ae.org
|
10916
|
-
ar.com
|
10917
10919
|
br.com
|
10918
10920
|
cn.com
|
10919
10921
|
com.de
|
10920
10922
|
com.se
|
10921
10923
|
de.com
|
10922
10924
|
eu.com
|
10923
|
-
gb.com
|
10924
10925
|
gb.net
|
10925
|
-
hu.com
|
10926
10926
|
hu.net
|
10927
10927
|
jp.net
|
10928
10928
|
jpn.com
|
10929
|
-
kr.com
|
10930
10929
|
mex.com
|
10931
|
-
no.com
|
10932
|
-
qc.com
|
10933
10930
|
ru.com
|
10934
10931
|
sa.com
|
10935
10932
|
se.net
|
10936
10933
|
uk.com
|
10937
10934
|
uk.net
|
10938
10935
|
us.com
|
10939
|
-
uy.com
|
10940
10936
|
za.bz
|
10941
10937
|
za.com
|
10942
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
|
+
|
10943
10949
|
// Africa.com Web Solutions Ltd : https://registry.africa.com
|
10944
10950
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10945
10951
|
africa.com
|
@@ -10951,6 +10957,7 @@ gr.com
|
|
10951
10957
|
// Radix FZC : http://domains.in.net
|
10952
10958
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10953
10959
|
in.net
|
10960
|
+
web.in
|
10954
10961
|
|
10955
10962
|
// US REGISTRY LLC : http://us.org
|
10956
10963
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
@@ -10960,6 +10967,21 @@ us.org
|
|
10960
10967
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10961
10968
|
co.com
|
10962
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
|
+
|
10963
10985
|
// c.la : http://www.c.la/
|
10964
10986
|
c.la
|
10965
10987
|
|
@@ -10972,8 +10994,9 @@ certmgr.org
|
|
10972
10994
|
xenapponazure.com
|
10973
10995
|
|
10974
10996
|
// Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/
|
10975
|
-
// Submitted by Rishabh Nambiar <
|
10997
|
+
// Submitted by Rishabh Nambiar & Michael Brown <team@discourse.org>
|
10976
10998
|
discourse.group
|
10999
|
+
discourse.team
|
10977
11000
|
|
10978
11001
|
// ClearVox : http://www.clearvox.nl/
|
10979
11002
|
// Submitted by Leon Rowland <leon@clearvox.nl>
|
@@ -10988,6 +11011,10 @@ cleverapps.io
|
|
10988
11011
|
*.lcl.dev
|
10989
11012
|
*.stg.dev
|
10990
11013
|
|
11014
|
+
// Clic2000 : https://clic2000.fr
|
11015
|
+
// Submitted by Mathilde Blanchemanche <mathilde@clic2000.fr>
|
11016
|
+
clic2000.net
|
11017
|
+
|
10991
11018
|
// Cloud66 : https://www.cloud66.com/
|
10992
11019
|
// Submitted by Khash Sajadi <khash@cloud66.com>
|
10993
11020
|
c66.me
|
@@ -11013,6 +11040,7 @@ cloudera.site
|
|
11013
11040
|
|
11014
11041
|
// Cloudflare, Inc. : https://www.cloudflare.com/
|
11015
11042
|
// Submitted by Jake Riesterer <publicsuffixlist@cloudflare.com>
|
11043
|
+
trycloudflare.com
|
11016
11044
|
workers.dev
|
11017
11045
|
|
11018
11046
|
// Clovyr : https://clovyr.io
|
@@ -11069,6 +11097,15 @@ co.no
|
|
11069
11097
|
webhosting.be
|
11070
11098
|
hosting-cluster.nl
|
11071
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
|
+
|
11072
11109
|
// COSIMO GmbH : http://www.cosimo.de
|
11073
11110
|
// Submitted by Rene Marticke <rmarticke@cosimo.de>
|
11074
11111
|
dyn.cosidns.de
|
@@ -11093,11 +11130,29 @@ realm.cz
|
|
11093
11130
|
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
11094
11131
|
cupcake.is
|
11095
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
|
+
|
11096
11145
|
// cyon GmbH : https://www.cyon.ch/
|
11097
11146
|
// Submitted by Dominic Luechinger <dol@cyon.ch>
|
11098
11147
|
cyon.link
|
11099
11148
|
cyon.site
|
11100
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
|
+
|
11101
11156
|
// Daplie, Inc : https://daplie.com
|
11102
11157
|
// Submitted by AJ ONeal <aj@daplie.com>
|
11103
11158
|
daplie.me
|
@@ -11120,11 +11175,23 @@ firm.dk
|
|
11120
11175
|
reg.dk
|
11121
11176
|
store.dk
|
11122
11177
|
|
11178
|
+
// dappnode.io : https://dappnode.io/
|
11179
|
+
// Submitted by Abel Boldu / DAppNode Team <community@dappnode.io>
|
11180
|
+
dyndns.dappnode.io
|
11181
|
+
|
11123
11182
|
// dapps.earth : https://dapps.earth/
|
11124
11183
|
// Submitted by Daniil Burdakov <icqkill@gmail.com>
|
11125
11184
|
*.dapps.earth
|
11126
11185
|
*.bzz.dapps.earth
|
11127
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
|
+
|
11128
11195
|
// Debian : https://www.debian.org/
|
11129
11196
|
// Submitted by Peter Palfrader / Debian Sysadmin Team <dsa-publicsuffixlist@debian.org>
|
11130
11197
|
debian.net
|
@@ -11133,6 +11200,10 @@ debian.net
|
|
11133
11200
|
// Submitted by Peter Thomassen <peter@desec.io>
|
11134
11201
|
dedyn.io
|
11135
11202
|
|
11203
|
+
// DNS Africa Ltd https://dns.business
|
11204
|
+
// Submitted by Calvin Browne <calvin@dns.business>
|
11205
|
+
jozi.biz
|
11206
|
+
|
11136
11207
|
// DNShome : https://www.dnshome.de/
|
11137
11208
|
// Submitted by Norbert Auler <mail@dnshome.de>
|
11138
11209
|
dnshome.de
|
@@ -11163,6 +11234,9 @@ drud.us
|
|
11163
11234
|
// Submitted by Richard Harper <richard@duckdns.org>
|
11164
11235
|
duckdns.org
|
11165
11236
|
|
11237
|
+
// bitbridge.net : Submitted by Craig Welch, abeliidev@gmail.com
|
11238
|
+
bitbridge.net
|
11239
|
+
|
11166
11240
|
// dy.fi : http://dy.fi/
|
11167
11241
|
// Submitted by Heikki Hannikainen <hessu@hes.iki.fi>
|
11168
11242
|
dy.fi
|
@@ -11498,6 +11572,10 @@ dynv6.net
|
|
11498
11572
|
// Submitted by Vladimir Dudr <info@e4you.cz>
|
11499
11573
|
e4.cz
|
11500
11574
|
|
11575
|
+
// En root‽ : https://en-root.org
|
11576
|
+
// Submitted by Emmanuel Raviart <emmanuel@raviart.com>
|
11577
|
+
en-root.fr
|
11578
|
+
|
11501
11579
|
// Enalean SAS: https://www.enalean.com
|
11502
11580
|
// Submitted by Thomas Cottier <thomas.cottier@enalean.com>
|
11503
11581
|
mytuleap.com
|
@@ -11590,6 +11668,10 @@ twmail.org
|
|
11590
11668
|
mymailer.com.tw
|
11591
11669
|
url.tw
|
11592
11670
|
|
11671
|
+
// Fabrica Technologies, Inc. : https://www.fabrica.dev/
|
11672
|
+
// Submitted by Eric Jiang <eric@fabrica.dev>
|
11673
|
+
onfabrica.com
|
11674
|
+
|
11593
11675
|
// Facebook, Inc.
|
11594
11676
|
// Submitted by Peter Ruibal <public-suffix@fb.com>
|
11595
11677
|
apps.fbsbx.com
|
@@ -11673,6 +11755,7 @@ vologda.su
|
|
11673
11755
|
// Fancy Bits, LLC : http://getchannels.com
|
11674
11756
|
// Submitted by Aman Gupta <aman@getchannels.com>
|
11675
11757
|
channelsdvr.net
|
11758
|
+
u.channelsdvr.net
|
11676
11759
|
|
11677
11760
|
// Fastly Inc. : http://www.fastly.com/
|
11678
11761
|
// Submitted by Fastly Security <security@fastly.com>
|
@@ -11689,8 +11772,11 @@ global.ssl.fastly.net
|
|
11689
11772
|
|
11690
11773
|
// FASTVPS EESTI OU : https://fastvps.ru/
|
11691
11774
|
// Submitted by Likhachev Vasiliy <lihachev@fastvps.ru>
|
11692
|
-
fastpanel.direct
|
11693
11775
|
fastvps-server.com
|
11776
|
+
fastvps.host
|
11777
|
+
myfast.host
|
11778
|
+
fastvps.site
|
11779
|
+
myfast.space
|
11694
11780
|
|
11695
11781
|
// Featherhead : https://featherhead.xyz/
|
11696
11782
|
// Submitted by Simon Menke <simon@featherhead.xyz>
|
@@ -11704,6 +11790,13 @@ cloud.fedoraproject.org
|
|
11704
11790
|
app.os.fedoraproject.org
|
11705
11791
|
app.os.stg.fedoraproject.org
|
11706
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
|
+
|
11707
11800
|
// Fermax : https://fermax.com/
|
11708
11801
|
// submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
|
11709
11802
|
mydobiss.com
|
@@ -11722,11 +11815,20 @@ filegear-sg.me
|
|
11722
11815
|
// Submitted by Chris Raynor <chris@firebase.com>
|
11723
11816
|
firebaseapp.com
|
11724
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
|
+
|
11725
11824
|
// Flynn : https://flynn.io
|
11726
11825
|
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
11727
|
-
flynnhub.com
|
11728
11826
|
flynnhosting.net
|
11729
11827
|
|
11828
|
+
// Frederik Braun https://frederik-braun.com
|
11829
|
+
// Submitted by Frederik Braun <fb@frederik-braun.com>
|
11830
|
+
0e.vc
|
11831
|
+
|
11730
11832
|
// Freebox : http://www.freebox.fr
|
11731
11833
|
// Submitted by Romain Fliedel <rfliedel@freebox.fr>
|
11732
11834
|
freebox-os.com
|
@@ -11740,6 +11842,10 @@ freeboxos.fr
|
|
11740
11842
|
// Submitted by Daniel Stone <daniel@fooishbar.org>
|
11741
11843
|
freedesktop.org
|
11742
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
|
+
|
11743
11849
|
// Futureweb OG : http://www.futureweb.at
|
11744
11850
|
// Submitted by Andreas Schnederle-Wagner <schnederle@futureweb.at>
|
11745
11851
|
*.futurecms.at
|
@@ -11760,8 +11866,10 @@ service.gov.uk
|
|
11760
11866
|
gehirn.ne.jp
|
11761
11867
|
usercontent.jp
|
11762
11868
|
|
11763
|
-
// Gentlent,
|
11764
|
-
// Submitted by Tom Klein <
|
11869
|
+
// Gentlent, Inc. : https://www.gentlent.com
|
11870
|
+
// Submitted by Tom Klein <tom@gentlent.com>
|
11871
|
+
gentapps.com
|
11872
|
+
gentlentapis.com
|
11765
11873
|
lab.ms
|
11766
11874
|
|
11767
11875
|
// GitHub, Inc.
|
@@ -11773,15 +11881,27 @@ githubusercontent.com
|
|
11773
11881
|
// Submitted by Alex Hanselka <alex@gitlab.com>
|
11774
11882
|
gitlab.io
|
11775
11883
|
|
11884
|
+
// Gitplac.si - https://gitplac.si
|
11885
|
+
// Submitted by Aljaž Starc <me@aljaxus.eu>
|
11886
|
+
gitpage.si
|
11887
|
+
|
11776
11888
|
// Glitch, Inc : https://glitch.com
|
11777
11889
|
// Submitted by Mads Hartmann <mads@glitch.com>
|
11778
11890
|
glitch.me
|
11779
11891
|
|
11892
|
+
// GMO Pepabo, Inc. : https://pepabo.com/
|
11893
|
+
// Submitted by dojineko <admin@pepabo.com>
|
11894
|
+
lolipop.io
|
11895
|
+
|
11780
11896
|
// GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/
|
11781
11897
|
// Submitted by Tom Whitwell <tom.whitwell@digital.cabinet-office.gov.uk>
|
11782
11898
|
cloudapps.digital
|
11783
11899
|
london.cloudapps.digital
|
11784
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
|
+
|
11785
11905
|
// UKHomeOffice : https://www.gov.uk/government/organisations/home-office
|
11786
11906
|
// Submitted by Jon Shanks <jon.shanks@digital.homeoffice.gov.uk>
|
11787
11907
|
homeoffice.gov.uk
|
@@ -11789,7 +11909,6 @@ homeoffice.gov.uk
|
|
11789
11909
|
// GlobeHosting, Inc.
|
11790
11910
|
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
11791
11911
|
ro.im
|
11792
|
-
shop.ro
|
11793
11912
|
|
11794
11913
|
// GoIP DNS Services : http://www.goip.de
|
11795
11914
|
// Submitted by Christian Poulter <milchstrasse@goip.de>
|
@@ -11802,6 +11921,7 @@ a.run.app
|
|
11802
11921
|
web.app
|
11803
11922
|
*.0emm.com
|
11804
11923
|
appspot.com
|
11924
|
+
*.r.appspot.com
|
11805
11925
|
blogspot.ae
|
11806
11926
|
blogspot.al
|
11807
11927
|
blogspot.am
|
@@ -11886,6 +12006,14 @@ publishproxy.com
|
|
11886
12006
|
withgoogle.com
|
11887
12007
|
withyoutube.com
|
11888
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
|
+
|
11889
12017
|
// Hakaran group: http://hakaran.cz
|
11890
12018
|
// Submited by Arseniy Sokolov <security@hakaran.cz>
|
11891
12019
|
fin.ci
|
@@ -11894,6 +12022,11 @@ caa.li
|
|
11894
12022
|
ua.rs
|
11895
12023
|
conf.se
|
11896
12024
|
|
12025
|
+
// Handshake : https://handshake.org
|
12026
|
+
// Submitted by Mike Damm <md@md.vc>
|
12027
|
+
hs.zone
|
12028
|
+
hs.run
|
12029
|
+
|
11897
12030
|
// Hashbang : https://hashbang.sh
|
11898
12031
|
hashbang.sh
|
11899
12032
|
|
@@ -11924,13 +12057,19 @@ ravendb.run
|
|
11924
12057
|
bpl.biz
|
11925
12058
|
orx.biz
|
11926
12059
|
ng.city
|
11927
|
-
ng.ink
|
11928
12060
|
biz.gl
|
12061
|
+
ng.ink
|
11929
12062
|
col.ng
|
12063
|
+
firm.ng
|
11930
12064
|
gen.ng
|
11931
12065
|
ltd.ng
|
12066
|
+
ngo.ng
|
12067
|
+
ng.school
|
11932
12068
|
sch.so
|
11933
12069
|
|
12070
|
+
// HostyHosting (hostyhosting.com)
|
12071
|
+
hostyhosting.io
|
12072
|
+
|
11934
12073
|
// Häkkinen.fi
|
11935
12074
|
// Submitted by Eero Häkkinen <Eero+psl@Häkkinen.fi>
|
11936
12075
|
häkkinen.fi
|
@@ -11999,19 +12138,51 @@ to.leg.br
|
|
11999
12138
|
// Submitted by Wolfgang Schwarz <admin@intermetrics.de>
|
12000
12139
|
pixolino.com
|
12001
12140
|
|
12141
|
+
// Internet-Pro, LLP: https://netangels.ru/
|
12142
|
+
// Submited by Vasiliy Sheredeko <piphon@gmail.com>
|
12143
|
+
na4u.ru
|
12144
|
+
|
12002
12145
|
// IPiFony Systems, Inc. : https://www.ipifony.com/
|
12003
12146
|
// Submitted by Matthew Hardeman <mhardeman@ipifony.com>
|
12004
12147
|
ipifony.net
|
12005
12148
|
|
12006
12149
|
// IServ GmbH : https://iserv.eu
|
12007
|
-
// Submitted by Kim-Alexander Brodowski <
|
12150
|
+
// Submitted by Kim-Alexander Brodowski <info@iserv.eu>
|
12008
12151
|
mein-iserv.de
|
12152
|
+
schulserver.de
|
12009
12153
|
test-iserv.de
|
12154
|
+
iserv.dev
|
12010
12155
|
|
12011
12156
|
// I-O DATA DEVICE, INC. : http://www.iodata.com/
|
12012
12157
|
// Submitted by Yuji Minagawa <domains-admin@iodata.jp>
|
12013
12158
|
iobb.net
|
12014
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
|
12185
|
+
|
12015
12186
|
// Jino : https://www.jino.ru
|
12016
12187
|
// Submitted by Sergey Ulyashin <ulyashin@jino.ru>
|
12017
12188
|
myjino.ru
|
@@ -12047,6 +12218,10 @@ uni5.net
|
|
12047
12218
|
// Submitted by Roy Keene <rkeene@knightpoint.com>
|
12048
12219
|
knightpoint.systems
|
12049
12220
|
|
12221
|
+
// KUROKU LTD : https://kuroku.ltd/
|
12222
|
+
// Submitted by DisposaBoy <security@oya.to>
|
12223
|
+
oya.to
|
12224
|
+
|
12050
12225
|
// .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf
|
12051
12226
|
co.krd
|
12052
12227
|
edu.krd
|
@@ -12063,6 +12238,10 @@ leadpages.co
|
|
12063
12238
|
lpages.co
|
12064
12239
|
lpusercontent.com
|
12065
12240
|
|
12241
|
+
// Lelux.fi : https://lelux.fi/
|
12242
|
+
// Submitted by Lelux Admin <publisuffix@lelux.site>
|
12243
|
+
lelux.site
|
12244
|
+
|
12066
12245
|
// Lifetime Hosting : https://Lifetime.Hosting/
|
12067
12246
|
// Submitted by Mike Fillator <support@lifetime.hosting>
|
12068
12247
|
co.business
|
@@ -12089,7 +12268,8 @@ linkyard-cloud.ch
|
|
12089
12268
|
// Linode : https://linode.com
|
12090
12269
|
// Submitted by <security@linode.com>
|
12091
12270
|
members.linode.com
|
12092
|
-
nodebalancer.linode.com
|
12271
|
+
*.nodebalancer.linode.com
|
12272
|
+
*.linodeobjects.com
|
12093
12273
|
|
12094
12274
|
// LiquidNet Ltd : http://www.liquidnetlimited.com/
|
12095
12275
|
// Submitted by Victor Velchev <admin@liquidnetlimited.com>
|
@@ -12158,6 +12338,15 @@ mayfirst.org
|
|
12158
12338
|
// Submitted by Ilya Zaretskiy <zaretskiy@corp.mail.ru>
|
12159
12339
|
hb.cldmail.ru
|
12160
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
|
+
|
12161
12350
|
// Memset hosting : https://www.memset.com
|
12162
12351
|
// Submitted by Tom Whitwell <domains@memset.com>
|
12163
12352
|
miniserver.com
|
@@ -12165,7 +12354,7 @@ memset.net
|
|
12165
12354
|
|
12166
12355
|
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
12167
12356
|
// Submitted by Zdeněk Šustr <zdenek.sustr@cesnet.cz>
|
12168
|
-
cloud.metacentrum.cz
|
12357
|
+
*.cloud.metacentrum.cz
|
12169
12358
|
custom.metacentrum.cz
|
12170
12359
|
|
12171
12360
|
// MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/
|
@@ -12182,12 +12371,20 @@ eu.meteorapp.com
|
|
12182
12371
|
co.pl
|
12183
12372
|
|
12184
12373
|
// Microsoft Corporation : http://microsoft.com
|
12185
|
-
// Submitted by
|
12186
|
-
azurecontainer.io
|
12374
|
+
// Submitted by Mostafa Elzeiny <moelzein@microsoft.com>
|
12375
|
+
*.azurecontainer.io
|
12187
12376
|
azurewebsites.net
|
12188
12377
|
azure-mobile.net
|
12189
12378
|
cloudapp.net
|
12190
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
|
+
|
12191
12388
|
// Mozilla Corporation : https://mozilla.com
|
12192
12389
|
// Submitted by Ben Francis <bfrancis@mozilla.com>
|
12193
12390
|
mozilla-iot.org
|
@@ -12202,6 +12399,19 @@ net.ru
|
|
12202
12399
|
org.ru
|
12203
12400
|
pp.ru
|
12204
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
|
+
|
12205
12415
|
// Nabu Casa : https://www.nabucasa.com
|
12206
12416
|
// Submitted by Paulus Schoutsen <infra@nabucasa.com>
|
12207
12417
|
ui.nabu.casa
|
@@ -12228,8 +12438,7 @@ nctu.me
|
|
12228
12438
|
|
12229
12439
|
// Netlify : https://www.netlify.com
|
12230
12440
|
// Submitted by Jessica Parsons <jessica@netlify.com>
|
12231
|
-
|
12232
|
-
netlify.com
|
12441
|
+
netlify.app
|
12233
12442
|
|
12234
12443
|
// Neustar Inc.
|
12235
12444
|
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
@@ -12386,20 +12595,23 @@ pcloud.host
|
|
12386
12595
|
nyc.mn
|
12387
12596
|
|
12388
12597
|
// NymNom : https://nymnom.com/
|
12389
|
-
// Submitted by
|
12598
|
+
// Submitted by NymNom <psl@nymnom.com>
|
12390
12599
|
nom.ae
|
12391
12600
|
nom.af
|
12392
12601
|
nom.ai
|
12393
12602
|
nom.al
|
12394
12603
|
nym.by
|
12604
|
+
nom.bz
|
12395
12605
|
nym.bz
|
12396
12606
|
nom.cl
|
12607
|
+
nym.ec
|
12397
12608
|
nom.gd
|
12398
12609
|
nom.ge
|
12399
12610
|
nom.gl
|
12400
12611
|
nym.gr
|
12401
12612
|
nom.gt
|
12402
12613
|
nym.gy
|
12614
|
+
nym.hk
|
12403
12615
|
nom.hn
|
12404
12616
|
nym.ie
|
12405
12617
|
nom.im
|
@@ -12411,6 +12623,7 @@ nom.li
|
|
12411
12623
|
nym.li
|
12412
12624
|
nym.lt
|
12413
12625
|
nym.lu
|
12626
|
+
nom.lv
|
12414
12627
|
nym.me
|
12415
12628
|
nom.mk
|
12416
12629
|
nym.mn
|
@@ -12435,18 +12648,34 @@ nom.uy
|
|
12435
12648
|
nom.vc
|
12436
12649
|
nom.vg
|
12437
12650
|
|
12651
|
+
// Observable, Inc. : https://observablehq.com
|
12652
|
+
// Submitted by Mike Bostock <dns@observablehq.com>
|
12653
|
+
static.observableusercontent.com
|
12654
|
+
|
12438
12655
|
// Octopodal Solutions, LLC. : https://ulterius.io/
|
12439
12656
|
// Submitted by Andrew Sampson <andrew@ulterius.io>
|
12440
12657
|
cya.gg
|
12441
12658
|
|
12659
|
+
// OMG.LOL : <https://omg.lol>
|
12660
|
+
// Submitted by Adam Newbold <adam@omg.lol>
|
12661
|
+
omg.lol
|
12662
|
+
|
12442
12663
|
// Omnibond Systems, LLC. : https://www.omnibond.com
|
12443
12664
|
// Submitted by Cole Estep <cole@omnibond.com>
|
12444
12665
|
cloudycluster.net
|
12445
12666
|
|
12667
|
+
// OmniWe Limited: https://omniwe.com
|
12668
|
+
// Submitted by Vicary Archangel <vicary@omniwe.com>
|
12669
|
+
omniwe.site
|
12670
|
+
|
12446
12671
|
// One Fold Media : http://www.onefoldmedia.com/
|
12447
12672
|
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
12448
12673
|
nid.io
|
12449
12674
|
|
12675
|
+
// Open Social : https://www.getopensocial.com/
|
12676
|
+
// Submitted by Alexander Varwijk <security@getopensocial.com>
|
12677
|
+
opensocial.site
|
12678
|
+
|
12450
12679
|
// OpenCraft GmbH : http://opencraft.com/
|
12451
12680
|
// Submitted by Sven Marnach <sven@opencraft.com>
|
12452
12681
|
opencraft.hosting
|
@@ -12455,6 +12684,10 @@ opencraft.hosting
|
|
12455
12684
|
// Submitted by Yngve Pettersen <yngve@opera.com>
|
12456
12685
|
operaunite.com
|
12457
12686
|
|
12687
|
+
// Oursky Limited : https://skygear.io/
|
12688
|
+
// Submited by Skygear Developer <hello@skygear.io>
|
12689
|
+
skygearapp.com
|
12690
|
+
|
12458
12691
|
// OutSystems
|
12459
12692
|
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
|
12460
12693
|
outsystemscloud.com
|
@@ -12464,6 +12697,10 @@ outsystemscloud.com
|
|
12464
12697
|
ownprovider.com
|
12465
12698
|
own.pm
|
12466
12699
|
|
12700
|
+
// OwO : https://whats-th.is/
|
12701
|
+
// Submitted by Dean Sheather <dean@deansheather.com>
|
12702
|
+
*.owo.codes
|
12703
|
+
|
12467
12704
|
// OX : http://www.ox.rs
|
12468
12705
|
// Submitted by Adam Grand <webmaster@mail.ox.rs>
|
12469
12706
|
ox.rs
|
@@ -12480,6 +12717,17 @@ pgfog.com
|
|
12480
12717
|
// Submitted by Jason Kriss <jason@pagefronthq.com>
|
12481
12718
|
pagefrontapp.com
|
12482
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
|
+
|
12483
12731
|
// .pl domains (grandfathered)
|
12484
12732
|
art.pl
|
12485
12733
|
gliwice.pl
|
@@ -12497,15 +12745,34 @@ gotpantheon.com
|
|
12497
12745
|
// Submitted by Steve Leung <steveleung@peplink.com>
|
12498
12746
|
mypep.link
|
12499
12747
|
|
12748
|
+
// Perspecta : https://perspecta.com/
|
12749
|
+
// Submitted by Kenneth Van Alstyne <kvanalstyne@perspecta.com>
|
12750
|
+
perspecta.cloud
|
12751
|
+
|
12500
12752
|
// Planet-Work : https://www.planet-work.com/
|
12501
12753
|
// Submitted by Frédéric VANNIÈRE <f.vanniere@planet-work.com>
|
12502
12754
|
on-web.fr
|
12503
12755
|
|
12504
12756
|
// Platform.sh : https://platform.sh
|
12505
12757
|
// Submitted by Nikola Kotur <nikola@platform.sh>
|
12506
|
-
|
12758
|
+
bc.platform.sh
|
12759
|
+
ent.platform.sh
|
12760
|
+
eu.platform.sh
|
12761
|
+
us.platform.sh
|
12507
12762
|
*.platformsh.site
|
12508
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
|
+
|
12509
12776
|
// Port53 : https://port53.io/
|
12510
12777
|
// Submitted by Maximilian Schieder <maxi@zeug.co>
|
12511
12778
|
dyn53.io
|
@@ -12539,6 +12806,18 @@ protonet.io
|
|
12539
12806
|
chirurgiens-dentistes-en-france.fr
|
12540
12807
|
byen.site
|
12541
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
|
+
|
12542
12821
|
// Redstar Consultants : https://www.redstarconsultants.com/
|
12543
12822
|
// Submitted by Jons Slemmer <jons@redstarconsultants.com>
|
12544
12823
|
instantcloud.cn
|
@@ -12551,6 +12830,11 @@ ras.ru
|
|
12551
12830
|
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
12552
12831
|
qa2.com
|
12553
12832
|
|
12833
|
+
// QCX
|
12834
|
+
// Submitted by Cassandra Beelen <cassandra@beelen.one>
|
12835
|
+
qcx.io
|
12836
|
+
*.sys.qcx.io
|
12837
|
+
|
12554
12838
|
// QNAP System Inc : https://www.qnap.com
|
12555
12839
|
// Submitted by Nick Chang <nickchang@qnap.com>
|
12556
12840
|
dev-myqnapcloud.com
|
@@ -12571,8 +12855,13 @@ vaporcloud.io
|
|
12571
12855
|
rackmaze.com
|
12572
12856
|
rackmaze.net
|
12573
12857
|
|
12858
|
+
// Rakuten Games, Inc : https://dev.viberplay.io
|
12859
|
+
// Submitted by Joshua Zhang <public-suffix@rgames.jp>
|
12860
|
+
g.vbrplsbx.io
|
12861
|
+
|
12574
12862
|
// Rancher Labs, Inc : https://rancher.com
|
12575
12863
|
// Submitted by Vincent Fiduccia <domains@rancher.com>
|
12864
|
+
*.on-k3s.io
|
12576
12865
|
*.on-rancher.cloud
|
12577
12866
|
*.on-rio.io
|
12578
12867
|
|
@@ -12626,6 +12915,10 @@ logoip.com
|
|
12626
12915
|
// Submitted by Hanno Böck <hanno@schokokeks.org>
|
12627
12916
|
schokokeks.net
|
12628
12917
|
|
12918
|
+
// Scottish Government: https://www.gov.scot
|
12919
|
+
// Submitted by Martin Ellis <martin.ellis@gov.scot>
|
12920
|
+
gov.scot
|
12921
|
+
|
12629
12922
|
// Scry Security : http://www.scrysec.com
|
12630
12923
|
// Submitted by Shante Adam <shante@skyhat.io>
|
12631
12924
|
scrysec.com
|
@@ -12643,10 +12936,13 @@ my-firewall.org
|
|
12643
12936
|
myfirewall.org
|
12644
12937
|
spdns.org
|
12645
12938
|
|
12646
|
-
//
|
12647
|
-
// Submitted by
|
12648
|
-
|
12649
|
-
|
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
|
12650
12946
|
|
12651
12947
|
// Service Online LLC : http://drs.ua/
|
12652
12948
|
// Submitted by Serhii Bulakh <support@drs.ua>
|
@@ -12662,6 +12958,14 @@ shiftedit.io
|
|
12662
12958
|
// Submitted by Alex Bowers <alex@shopblocks.com>
|
12663
12959
|
myshopblocks.com
|
12664
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
|
+
|
12665
12969
|
// Siemens Mobility GmbH
|
12666
12970
|
// Submitted by Oliver Graebner <security@mo-siemens.io>
|
12667
12971
|
mo-siemens.io
|
@@ -12684,6 +12988,10 @@ bounty-full.com
|
|
12684
12988
|
alpha.bounty-full.com
|
12685
12989
|
beta.bounty-full.com
|
12686
12990
|
|
12991
|
+
// Small Technology Foundation : https://small-tech.org
|
12992
|
+
// Submitted by Aral Balkan <aral@small-tech.org>
|
12993
|
+
small-web.org
|
12994
|
+
|
12687
12995
|
// Stackhero : https://www.stackhero.io
|
12688
12996
|
// Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
|
12689
12997
|
stackhero-network.com
|
@@ -12694,6 +13002,10 @@ static.land
|
|
12694
13002
|
dev.static.land
|
12695
13003
|
sites.static.land
|
12696
13004
|
|
13005
|
+
// Sony Interactive Entertainment LLC : https://sie.com/
|
13006
|
+
// Submitted by David Coles <david.coles@sony.com>
|
13007
|
+
playstation-cloud.com
|
13008
|
+
|
12697
13009
|
// SourceLair PC : https://www.sourcelair.com
|
12698
13010
|
// Submitted by Antonis Kalipetis <akalipetis@sourcelair.com>
|
12699
13011
|
apps.lair.io
|
@@ -12733,6 +13045,11 @@ temp-dns.com
|
|
12733
13045
|
applicationcloud.io
|
12734
13046
|
scapp.io
|
12735
13047
|
|
13048
|
+
// Symfony, SAS : https://symfony.com/
|
13049
|
+
// Submitted by Fabien Potencier <fabien@symfony.com>
|
13050
|
+
*.s5y.io
|
13051
|
+
*.sensiosite.cloud
|
13052
|
+
|
12736
13053
|
// Syncloud : https://syncloud.org
|
12737
13054
|
// Submitted by Boris Rybalkin <syncloud@syncloud.it>
|
12738
13055
|
syncloud.it
|
@@ -12753,6 +13070,7 @@ i234.me
|
|
12753
13070
|
myds.me
|
12754
13071
|
synology.me
|
12755
13072
|
vpnplus.to
|
13073
|
+
direct.quickconnect.to
|
12756
13074
|
|
12757
13075
|
// TAIFUN Software AG : http://taifun-software.de
|
12758
13076
|
// Submitted by Bjoern Henke <dev-server@taifun-software.de>
|
@@ -12786,6 +13104,8 @@ cust.dev.thingdust.io
|
|
12786
13104
|
cust.disrec.thingdust.io
|
12787
13105
|
cust.prod.thingdust.io
|
12788
13106
|
cust.testing.thingdust.io
|
13107
|
+
*.firenet.ch
|
13108
|
+
*.svc.firenet.ch
|
12789
13109
|
|
12790
13110
|
// Tlon.io : https://tlon.io
|
12791
13111
|
// Submitted by Mark Staarink <mark@tlon.io>
|
@@ -12862,6 +13182,11 @@ inc.hk
|
|
12862
13182
|
virtualuser.de
|
12863
13183
|
virtual-user.de
|
12864
13184
|
|
13185
|
+
// urown.net : https://urown.net
|
13186
|
+
// Submitted by Hostmaster <hostmaster@urown.net>
|
13187
|
+
urown.cloud
|
13188
|
+
dnsupdate.info
|
13189
|
+
|
12865
13190
|
// .US
|
12866
13191
|
// Submitted by Ed Moore <Ed.Moore@lib.de.us>
|
12867
13192
|
lib.de.us
|
@@ -12870,6 +13195,12 @@ lib.de.us
|
|
12870
13195
|
// Submitted by Danko Aleksejevs <danko@very.lv>
|
12871
13196
|
2038.io
|
12872
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
|
+
|
12873
13204
|
// Viprinet Europe GmbH : http://www.viprinet.com
|
12874
13205
|
// Submitted by Simon Kissel <hostmaster@viprinet.com>
|
12875
13206
|
router.management
|
@@ -12882,10 +13213,61 @@ v-info.info
|
|
12882
13213
|
// Submitted by Nathan van Bakel <info@voorloper.com>
|
12883
13214
|
voorloper.cloud
|
12884
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
|
+
|
12885
13263
|
// Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
|
12886
13264
|
// Submitted by Masayuki Note <masa@blade.wafflecell.com>
|
12887
13265
|
wafflecell.com
|
12888
13266
|
|
13267
|
+
// WebHare bv: https://www.webhare.com/
|
13268
|
+
// Submitted by Arnold Hendriks <info@webhare.com>
|
13269
|
+
*.webhare.dev
|
13270
|
+
|
12889
13271
|
// WeDeploy by Liferay, Inc. : https://www.wedeploy.com
|
12890
13272
|
// Submitted by Henrique Vicente <security@wedeploy.com>
|
12891
13273
|
wedeploy.io
|
@@ -12896,9 +13278,32 @@ wedeploy.sh
|
|
12896
13278
|
// Submitted by Jung Jin <jungseok.jin@wdc.com>
|
12897
13279
|
remotewd.com
|
12898
13280
|
|
13281
|
+
// WIARD Enterprises : https://wiardweb.com
|
13282
|
+
// Submitted by Kidd Hustle <kiddhustle@wiardweb.com>
|
13283
|
+
pages.wiardweb.com
|
13284
|
+
|
12899
13285
|
// Wikimedia Labs : https://wikitech.wikimedia.org
|
12900
|
-
// Submitted by
|
13286
|
+
// Submitted by Arturo Borrero Gonzalez <aborrero@wikimedia.org>
|
12901
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
|
12902
13307
|
|
12903
13308
|
// XenonCloud GbR: https://xenoncloud.net
|
12904
13309
|
// Submitted by Julian Uphoff <publicsuffixlist@xenoncloud.net>
|
@@ -12916,6 +13321,12 @@ cistron.nl
|
|
12916
13321
|
demon.nl
|
12917
13322
|
xs4all.space
|
12918
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
|
+
|
12919
13330
|
// YesCourse Pty Ltd : https://yescourse.com
|
12920
13331
|
// Submitted by Atul Bhouraskar <atul@yescourse.com>
|
12921
13332
|
official.academy
|
@@ -12944,10 +13355,6 @@ noho.st
|
|
12944
13355
|
za.net
|
12945
13356
|
za.org
|
12946
13357
|
|
12947
|
-
// Zeit, Inc. : https://zeit.domains/
|
12948
|
-
// Submitted by Olli Vanhoja <olli@zeit.co>
|
12949
|
-
now.sh
|
12950
|
-
|
12951
13358
|
// Zine EOOD : https://zine.bg/
|
12952
13359
|
// Submitted by Martin Angelov <martin@zine.bg>
|
12953
13360
|
bss.design
|
@@ -12956,11 +13363,18 @@ bss.design
|
|
12956
13363
|
// Submitted by Emil Stahl <esp@zitcom.dk>
|
12957
13364
|
basicserver.io
|
12958
13365
|
virtualserver.io
|
12959
|
-
site.builder.nu
|
12960
13366
|
enterprisecloud.nu
|
12961
13367
|
|
12962
|
-
//
|
12963
|
-
// Submitted by
|
12964
|
-
|
13368
|
+
// Mintere : https://mintere.com/
|
13369
|
+
// Submitted by Ben Aubin <security@mintere.com>
|
13370
|
+
mintere.site
|
13371
|
+
|
13372
|
+
// WP Engine : https://wpengine.com/
|
13373
|
+
// Submitted by Michael Smith <michael.smith@wpengine.com>
|
13374
|
+
wpenginepowered.com
|
12965
13375
|
|
13376
|
+
// Impertrix Solutions : <https://impertrixcdn.com>
|
13377
|
+
// Submitted by Zhixiang Zhao <csuite@impertrix.com>
|
13378
|
+
impertrixcdn.com
|
13379
|
+
impertrix.com
|
12966
13380
|
// ===END PRIVATE DOMAINS===
|