public_suffix 1.5.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +8 -0
- data/.rubocop_defaults.yml +127 -0
- data/.travis.yml +10 -5
- data/2.0-Upgrade.md +35 -0
- data/CHANGELOG.md +25 -0
- data/Gemfile +7 -1
- data/LICENSE.txt +1 -1
- data/README.md +89 -62
- data/Rakefile +23 -20
- data/data/{definitions.txt → list.txt} +472 -286
- data/lib/public_suffix.rb +96 -52
- data/lib/public_suffix/domain.rb +26 -156
- data/lib/public_suffix/errors.rb +5 -17
- data/lib/public_suffix/list.rb +107 -122
- data/lib/public_suffix/rule.rb +169 -190
- data/lib/public_suffix/version.rb +3 -13
- data/public_suffix.gemspec +4 -4
- data/test/acceptance_test.rb +57 -34
- data/test/benchmark_helper.rb +4 -0
- data/test/execution_profiler.rb +14 -0
- data/test/initialization_profiler.rb +11 -0
- data/test/performance_benchmark.rb +38 -0
- data/test/psl_test.rb +49 -0
- data/test/test_helper.rb +12 -5
- data/test/tests.txt +98 -0
- data/test/unit/domain_test.rb +18 -84
- data/test/unit/errors_test.rb +2 -2
- data/test/unit/list_test.rb +131 -59
- data/test/unit/public_suffix_test.rb +105 -34
- data/test/unit/rule_test.rb +52 -135
- metadata +20 -6
- data/.gemtest +0 -0
data/Rakefile
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require "rubygems"
|
2
|
+
require "bundler"
|
3
3
|
|
4
|
-
|
5
|
-
require
|
4
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__) + "/lib")
|
5
|
+
require "public_suffix"
|
6
6
|
|
7
7
|
|
8
|
-
#
|
9
|
-
task :
|
8
|
+
# By default, run tests and linter.
|
9
|
+
task default: [:test, :rubocop]
|
10
10
|
|
11
11
|
spec = Gem::Specification.new do |s|
|
12
12
|
s.name = "public_suffix"
|
@@ -18,7 +18,7 @@ spec = Gem::Specification.new do |s|
|
|
18
18
|
|
19
19
|
s.author = "Simone Carletti"
|
20
20
|
s.email = "weppos@weppos.net"
|
21
|
-
s.homepage = "
|
21
|
+
s.homepage = "https://simonecarletti.com/code/publicsuffix-ruby"
|
22
22
|
s.license = "MIT"
|
23
23
|
|
24
24
|
s.files = `git ls-files`.split("\n")
|
@@ -31,7 +31,7 @@ spec = Gem::Specification.new do |s|
|
|
31
31
|
end
|
32
32
|
|
33
33
|
|
34
|
-
require
|
34
|
+
require "rubygems/package_task"
|
35
35
|
|
36
36
|
Gem::PackageTask.new(spec) do |pkg|
|
37
37
|
pkg.gem_spec = spec
|
@@ -40,7 +40,7 @@ end
|
|
40
40
|
desc "Build the gemspec file #{spec.name}.gemspec"
|
41
41
|
task :gemspec do
|
42
42
|
file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
|
43
|
-
File.open(file, "w") {|f| f << spec.to_ruby }
|
43
|
+
File.open(file, "w") { |f| f << spec.to_ruby }
|
44
44
|
end
|
45
45
|
|
46
46
|
desc "Remove any temporary products, including gemspec"
|
@@ -55,18 +55,22 @@ desc "Package the library and generates the gemspec"
|
|
55
55
|
task package: [:gemspec]
|
56
56
|
|
57
57
|
|
58
|
-
require
|
58
|
+
require "rake/testtask"
|
59
59
|
|
60
60
|
Rake::TestTask.new do |t|
|
61
|
-
t.libs
|
61
|
+
t.libs = %w( lib test )
|
62
62
|
t.pattern = "test/**/*_test.rb"
|
63
|
-
t.verbose =
|
64
|
-
t.warning =
|
63
|
+
t.verbose = !ENV["VERBOSE"].nil?
|
64
|
+
t.warning = !ENV["WARNING"].nil?
|
65
65
|
end
|
66
66
|
|
67
|
+
require "rubocop/rake_task"
|
67
68
|
|
68
|
-
|
69
|
-
|
69
|
+
RuboCop::RakeTask.new
|
70
|
+
|
71
|
+
|
72
|
+
require "yard"
|
73
|
+
require "yard/rake/yardoc_task"
|
70
74
|
|
71
75
|
YARD::Rake::YardocTask.new(:yardoc) do |y|
|
72
76
|
y.options = %w( --output-dir yardoc )
|
@@ -77,8 +81,7 @@ namespace :yardoc do
|
|
77
81
|
rm_r "yardoc" rescue nil
|
78
82
|
end
|
79
83
|
end
|
80
|
-
|
81
|
-
task clobber: "yardoc:clobber"
|
84
|
+
task clobber: ["yardoc:clobber"]
|
82
85
|
|
83
86
|
|
84
87
|
desc "Open an irb session preloaded with this library"
|
@@ -88,12 +91,12 @@ end
|
|
88
91
|
|
89
92
|
|
90
93
|
desc "Downloads the Public Suffix List file from the repository and stores it locally."
|
91
|
-
task :
|
94
|
+
task :"update-list" do
|
92
95
|
require "net/http"
|
93
96
|
|
94
|
-
DEFINITION_URL = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat"
|
97
|
+
DEFINITION_URL = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat".freeze
|
95
98
|
|
96
|
-
File.open("data/
|
99
|
+
File.open("data/list.txt", "w+") do |f|
|
97
100
|
response = Net::HTTP.get_response(URI.parse(DEFINITION_URL))
|
98
101
|
response.body
|
99
102
|
f.write(response.body)
|
@@ -1,10 +1,10 @@
|
|
1
1
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
2
2
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
3
|
-
// file, You can obtain one at
|
3
|
+
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
4
4
|
|
5
5
|
// ===BEGIN ICANN DOMAINS===
|
6
6
|
|
7
|
-
// ac :
|
7
|
+
// ac : https://en.wikipedia.org/wiki/.ac
|
8
8
|
ac
|
9
9
|
com.ac
|
10
10
|
edu.ac
|
@@ -13,11 +13,11 @@ net.ac
|
|
13
13
|
mil.ac
|
14
14
|
org.ac
|
15
15
|
|
16
|
-
// ad :
|
16
|
+
// ad : https://en.wikipedia.org/wiki/.ad
|
17
17
|
ad
|
18
18
|
nom.ad
|
19
19
|
|
20
|
-
// ae :
|
20
|
+
// ae : https://en.wikipedia.org/wiki/.ae
|
21
21
|
// see also: "Domain Name Eligibility Policy" at http://www.aeda.ae/eng/aepolicy.php
|
22
22
|
ae
|
23
23
|
co.ae
|
@@ -28,7 +28,7 @@ ac.ae
|
|
28
28
|
gov.ae
|
29
29
|
mil.ae
|
30
30
|
|
31
|
-
// aero : see
|
31
|
+
// aero : see https://www.information.aero/index.php?id=66
|
32
32
|
aero
|
33
33
|
accident-investigation.aero
|
34
34
|
accident-prevention.aero
|
@@ -89,7 +89,6 @@ leasing.aero
|
|
89
89
|
logistics.aero
|
90
90
|
magazine.aero
|
91
91
|
maintenance.aero
|
92
|
-
marketplace.aero
|
93
92
|
media.aero
|
94
93
|
microlight.aero
|
95
94
|
modelling.aero
|
@@ -112,7 +111,6 @@ show.aero
|
|
112
111
|
skydiving.aero
|
113
112
|
software.aero
|
114
113
|
student.aero
|
115
|
-
taxi.aero
|
116
114
|
trader.aero
|
117
115
|
trading.aero
|
118
116
|
trainer.aero
|
@@ -152,10 +150,10 @@ mil.al
|
|
152
150
|
net.al
|
153
151
|
org.al
|
154
152
|
|
155
|
-
// am :
|
153
|
+
// am : https://en.wikipedia.org/wiki/.am
|
156
154
|
am
|
157
155
|
|
158
|
-
// ao :
|
156
|
+
// ao : https://en.wikipedia.org/wiki/.ao
|
159
157
|
// http://www.dns.ao/REGISTR.DOC
|
160
158
|
ao
|
161
159
|
ed.ao
|
@@ -165,7 +163,7 @@ co.ao
|
|
165
163
|
pb.ao
|
166
164
|
it.ao
|
167
165
|
|
168
|
-
// aq :
|
166
|
+
// aq : https://en.wikipedia.org/wiki/.aq
|
169
167
|
aq
|
170
168
|
|
171
169
|
// ar : https://nic.ar/normativa-vigente.xhtml
|
@@ -180,7 +178,7 @@ net.ar
|
|
180
178
|
org.ar
|
181
179
|
tur.ar
|
182
180
|
|
183
|
-
// arpa :
|
181
|
+
// arpa : https://en.wikipedia.org/wiki/.arpa
|
184
182
|
// Confirmed by registry <iana-questions@icann.org> 2008-06-18
|
185
183
|
arpa
|
186
184
|
e164.arpa
|
@@ -190,14 +188,14 @@ iris.arpa
|
|
190
188
|
uri.arpa
|
191
189
|
urn.arpa
|
192
190
|
|
193
|
-
// as :
|
191
|
+
// as : https://en.wikipedia.org/wiki/.as
|
194
192
|
as
|
195
193
|
gov.as
|
196
194
|
|
197
|
-
// asia :
|
195
|
+
// asia : https://en.wikipedia.org/wiki/.asia
|
198
196
|
asia
|
199
197
|
|
200
|
-
// at :
|
198
|
+
// at : https://en.wikipedia.org/wiki/.at
|
201
199
|
// Confirmed by registry <it@nic.at> 2008-06-17
|
202
200
|
at
|
203
201
|
ac.at
|
@@ -205,7 +203,7 @@ co.at
|
|
205
203
|
gv.at
|
206
204
|
or.at
|
207
205
|
|
208
|
-
// au :
|
206
|
+
// au : https://en.wikipedia.org/wiki/.au
|
209
207
|
// http://www.auda.org.au/
|
210
208
|
au
|
211
209
|
// 2LDs
|
@@ -247,14 +245,14 @@ tas.gov.au
|
|
247
245
|
vic.gov.au
|
248
246
|
wa.gov.au
|
249
247
|
|
250
|
-
// aw :
|
248
|
+
// aw : https://en.wikipedia.org/wiki/.aw
|
251
249
|
aw
|
252
250
|
com.aw
|
253
251
|
|
254
|
-
// ax :
|
252
|
+
// ax : https://en.wikipedia.org/wiki/.ax
|
255
253
|
ax
|
256
254
|
|
257
|
-
// az :
|
255
|
+
// az : https://en.wikipedia.org/wiki/.az
|
258
256
|
az
|
259
257
|
com.az
|
260
258
|
net.az
|
@@ -269,7 +267,7 @@ name.az
|
|
269
267
|
pro.az
|
270
268
|
biz.az
|
271
269
|
|
272
|
-
// ba :
|
270
|
+
// ba : https://en.wikipedia.org/wiki/.ba
|
273
271
|
ba
|
274
272
|
org.ba
|
275
273
|
net.ba
|
@@ -282,7 +280,7 @@ co.ba
|
|
282
280
|
com.ba
|
283
281
|
rs.ba
|
284
282
|
|
285
|
-
// bb :
|
283
|
+
// bb : https://en.wikipedia.org/wiki/.bb
|
286
284
|
bb
|
287
285
|
biz.bb
|
288
286
|
co.bb
|
@@ -295,19 +293,19 @@ org.bb
|
|
295
293
|
store.bb
|
296
294
|
tv.bb
|
297
295
|
|
298
|
-
// bd :
|
296
|
+
// bd : https://en.wikipedia.org/wiki/.bd
|
299
297
|
*.bd
|
300
298
|
|
301
|
-
// be :
|
299
|
+
// be : https://en.wikipedia.org/wiki/.be
|
302
300
|
// Confirmed by registry <tech@dns.be> 2008-06-08
|
303
301
|
be
|
304
302
|
ac.be
|
305
303
|
|
306
|
-
// bf :
|
304
|
+
// bf : https://en.wikipedia.org/wiki/.bf
|
307
305
|
bf
|
308
306
|
gov.bf
|
309
307
|
|
310
|
-
// bg :
|
308
|
+
// bg : https://en.wikipedia.org/wiki/.bg
|
311
309
|
// https://www.register.bg/user/static/rules/en/index.html
|
312
310
|
bg
|
313
311
|
a.bg
|
@@ -347,7 +345,7 @@ z.bg
|
|
347
345
|
8.bg
|
348
346
|
9.bg
|
349
347
|
|
350
|
-
// bh :
|
348
|
+
// bh : https://en.wikipedia.org/wiki/.bh
|
351
349
|
bh
|
352
350
|
com.bh
|
353
351
|
edu.bh
|
@@ -355,7 +353,7 @@ net.bh
|
|
355
353
|
org.bh
|
356
354
|
gov.bh
|
357
355
|
|
358
|
-
// bi :
|
356
|
+
// bi : https://en.wikipedia.org/wiki/.bi
|
359
357
|
// http://whois.nic.bi/
|
360
358
|
bi
|
361
359
|
co.bi
|
@@ -364,10 +362,10 @@ edu.bi
|
|
364
362
|
or.bi
|
365
363
|
org.bi
|
366
364
|
|
367
|
-
// biz :
|
365
|
+
// biz : https://en.wikipedia.org/wiki/.biz
|
368
366
|
biz
|
369
367
|
|
370
|
-
// bj :
|
368
|
+
// bj : https://en.wikipedia.org/wiki/.bj
|
371
369
|
bj
|
372
370
|
asso.bj
|
373
371
|
barreau.bj
|
@@ -381,7 +379,7 @@ gov.bm
|
|
381
379
|
net.bm
|
382
380
|
org.bm
|
383
381
|
|
384
|
-
// bn :
|
382
|
+
// bn : https://en.wikipedia.org/wiki/.bn
|
385
383
|
*.bn
|
386
384
|
|
387
385
|
// bo : http://www.nic.bo/
|
@@ -397,7 +395,7 @@ mil.bo
|
|
397
395
|
tv.bo
|
398
396
|
|
399
397
|
// br : http://registro.br/dominio/categoria.html
|
400
|
-
// Submitted by registry <fneves@registro.br>
|
398
|
+
// Submitted by registry <fneves@registro.br>
|
401
399
|
br
|
402
400
|
adm.br
|
403
401
|
adv.br
|
@@ -478,7 +476,7 @@ org.bs
|
|
478
476
|
edu.bs
|
479
477
|
gov.bs
|
480
478
|
|
481
|
-
// bt :
|
479
|
+
// bt : https://en.wikipedia.org/wiki/.bt
|
482
480
|
bt
|
483
481
|
com.bt
|
484
482
|
edu.bt
|
@@ -487,17 +485,17 @@ net.bt
|
|
487
485
|
org.bt
|
488
486
|
|
489
487
|
// bv : No registrations at this time.
|
490
|
-
// Submitted by registry <jarle@uninett.no>
|
488
|
+
// Submitted by registry <jarle@uninett.no>
|
491
489
|
bv
|
492
490
|
|
493
|
-
// bw :
|
491
|
+
// bw : https://en.wikipedia.org/wiki/.bw
|
494
492
|
// http://www.gobin.info/domainname/bw.doc
|
495
493
|
// list of other 2nd level tlds ?
|
496
494
|
bw
|
497
495
|
co.bw
|
498
496
|
org.bw
|
499
497
|
|
500
|
-
// by :
|
498
|
+
// by : https://en.wikipedia.org/wiki/.by
|
501
499
|
// http://tld.by/rules_2006_en.html
|
502
500
|
// list of other 2nd level tlds ?
|
503
501
|
by
|
@@ -511,7 +509,7 @@ com.by
|
|
511
509
|
// http://hoster.by/
|
512
510
|
of.by
|
513
511
|
|
514
|
-
// bz :
|
512
|
+
// bz : https://en.wikipedia.org/wiki/.bz
|
515
513
|
// http://www.belizenic.bz/
|
516
514
|
bz
|
517
515
|
com.bz
|
@@ -520,7 +518,7 @@ org.bz
|
|
520
518
|
edu.bz
|
521
519
|
gov.bz
|
522
520
|
|
523
|
-
// ca :
|
521
|
+
// ca : https://en.wikipedia.org/wiki/.ca
|
524
522
|
ca
|
525
523
|
// ca geographical names
|
526
524
|
ab.ca
|
@@ -537,31 +535,31 @@ pe.ca
|
|
537
535
|
qc.ca
|
538
536
|
sk.ca
|
539
537
|
yk.ca
|
540
|
-
// gc.ca:
|
538
|
+
// gc.ca: https://en.wikipedia.org/wiki/.gc.ca
|
541
539
|
// see also: http://registry.gc.ca/en/SubdomainFAQ
|
542
540
|
gc.ca
|
543
541
|
|
544
|
-
// cat :
|
542
|
+
// cat : https://en.wikipedia.org/wiki/.cat
|
545
543
|
cat
|
546
544
|
|
547
|
-
// cc :
|
545
|
+
// cc : https://en.wikipedia.org/wiki/.cc
|
548
546
|
cc
|
549
547
|
|
550
|
-
// cd :
|
548
|
+
// cd : https://en.wikipedia.org/wiki/.cd
|
551
549
|
// see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
|
552
550
|
cd
|
553
551
|
gov.cd
|
554
552
|
|
555
|
-
// cf :
|
553
|
+
// cf : https://en.wikipedia.org/wiki/.cf
|
556
554
|
cf
|
557
555
|
|
558
|
-
// cg :
|
556
|
+
// cg : https://en.wikipedia.org/wiki/.cg
|
559
557
|
cg
|
560
558
|
|
561
|
-
// ch :
|
559
|
+
// ch : https://en.wikipedia.org/wiki/.ch
|
562
560
|
ch
|
563
561
|
|
564
|
-
// ci :
|
562
|
+
// ci : https://en.wikipedia.org/wiki/.ci
|
565
563
|
// http://www.nic.ci/index.php?page=charte
|
566
564
|
ci
|
567
565
|
org.ci
|
@@ -580,26 +578,26 @@ presse.ci
|
|
580
578
|
md.ci
|
581
579
|
gouv.ci
|
582
580
|
|
583
|
-
// ck :
|
581
|
+
// ck : https://en.wikipedia.org/wiki/.ck
|
584
582
|
*.ck
|
585
583
|
!www.ck
|
586
584
|
|
587
|
-
// cl :
|
585
|
+
// cl : https://en.wikipedia.org/wiki/.cl
|
588
586
|
cl
|
589
587
|
gov.cl
|
590
588
|
gob.cl
|
591
589
|
co.cl
|
592
590
|
mil.cl
|
593
591
|
|
594
|
-
// cm :
|
592
|
+
// cm : https://en.wikipedia.org/wiki/.cm plus bug 981927
|
595
593
|
cm
|
596
594
|
co.cm
|
597
595
|
com.cm
|
598
596
|
gov.cm
|
599
597
|
net.cm
|
600
598
|
|
601
|
-
// cn :
|
602
|
-
// Submitted by registry <tanyaling@cnnic.cn>
|
599
|
+
// cn : https://en.wikipedia.org/wiki/.cn
|
600
|
+
// Submitted by registry <tanyaling@cnnic.cn>
|
603
601
|
cn
|
604
602
|
ac.cn
|
605
603
|
com.cn
|
@@ -647,8 +645,8 @@ hk.cn
|
|
647
645
|
mo.cn
|
648
646
|
tw.cn
|
649
647
|
|
650
|
-
// co :
|
651
|
-
// Submitted by registry <tecnico@uniandes.edu.co>
|
648
|
+
// co : https://en.wikipedia.org/wiki/.co
|
649
|
+
// Submitted by registry <tecnico@uniandes.edu.co>
|
652
650
|
co
|
653
651
|
arts.co
|
654
652
|
com.co
|
@@ -664,10 +662,10 @@ org.co
|
|
664
662
|
rec.co
|
665
663
|
web.co
|
666
664
|
|
667
|
-
// com :
|
665
|
+
// com : https://en.wikipedia.org/wiki/.com
|
668
666
|
com
|
669
667
|
|
670
|
-
// coop :
|
668
|
+
// coop : https://en.wikipedia.org/wiki/.coop
|
671
669
|
coop
|
672
670
|
|
673
671
|
// cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do
|
@@ -680,7 +678,7 @@ go.cr
|
|
680
678
|
or.cr
|
681
679
|
sa.cr
|
682
680
|
|
683
|
-
// cu :
|
681
|
+
// cu : https://en.wikipedia.org/wiki/.cu
|
684
682
|
cu
|
685
683
|
com.cu
|
686
684
|
edu.cu
|
@@ -689,7 +687,7 @@ net.cu
|
|
689
687
|
gov.cu
|
690
688
|
inf.cu
|
691
689
|
|
692
|
-
// cv :
|
690
|
+
// cv : https://en.wikipedia.org/wiki/.cv
|
693
691
|
cv
|
694
692
|
|
695
693
|
// cw : http://www.una.cw/cw_registry/
|
@@ -700,12 +698,12 @@ edu.cw
|
|
700
698
|
net.cw
|
701
699
|
org.cw
|
702
700
|
|
703
|
-
// cx :
|
701
|
+
// cx : https://en.wikipedia.org/wiki/.cx
|
704
702
|
// list of other 2nd level tlds ?
|
705
703
|
cx
|
706
704
|
gov.cx
|
707
705
|
|
708
|
-
// cy :
|
706
|
+
// cy : https://en.wikipedia.org/wiki/.cy
|
709
707
|
ac.cy
|
710
708
|
biz.cy
|
711
709
|
com.cy
|
@@ -720,22 +718,22 @@ press.cy
|
|
720
718
|
pro.cy
|
721
719
|
tm.cy
|
722
720
|
|
723
|
-
// cz :
|
721
|
+
// cz : https://en.wikipedia.org/wiki/.cz
|
724
722
|
cz
|
725
723
|
|
726
|
-
// de :
|
724
|
+
// de : https://en.wikipedia.org/wiki/.de
|
727
725
|
// Confirmed by registry <ops@denic.de> (with technical
|
728
726
|
// reservations) 2008-07-01
|
729
727
|
de
|
730
728
|
|
731
|
-
// dj :
|
729
|
+
// dj : https://en.wikipedia.org/wiki/.dj
|
732
730
|
dj
|
733
731
|
|
734
|
-
// dk :
|
732
|
+
// dk : https://en.wikipedia.org/wiki/.dk
|
735
733
|
// Confirmed by registry <robert@dk-hostmaster.dk> 2008-06-17
|
736
734
|
dk
|
737
735
|
|
738
|
-
// dm :
|
736
|
+
// dm : https://en.wikipedia.org/wiki/.dm
|
739
737
|
dm
|
740
738
|
com.dm
|
741
739
|
net.dm
|
@@ -743,7 +741,7 @@ org.dm
|
|
743
741
|
edu.dm
|
744
742
|
gov.dm
|
745
743
|
|
746
|
-
// do :
|
744
|
+
// do : https://en.wikipedia.org/wiki/.do
|
747
745
|
do
|
748
746
|
art.do
|
749
747
|
com.do
|
@@ -756,7 +754,7 @@ org.do
|
|
756
754
|
sld.do
|
757
755
|
web.do
|
758
756
|
|
759
|
-
// dz :
|
757
|
+
// dz : https://en.wikipedia.org/wiki/.dz
|
760
758
|
dz
|
761
759
|
com.dz
|
762
760
|
org.dz
|
@@ -768,7 +766,7 @@ pol.dz
|
|
768
766
|
art.dz
|
769
767
|
|
770
768
|
// ec : http://www.nic.ec/reg/paso1.asp
|
771
|
-
// Submitted by registry <vabboud@nic.ec>
|
769
|
+
// Submitted by registry <vabboud@nic.ec>
|
772
770
|
ec
|
773
771
|
com.ec
|
774
772
|
info.ec
|
@@ -783,7 +781,7 @@ gov.ec
|
|
783
781
|
gob.ec
|
784
782
|
mil.ec
|
785
783
|
|
786
|
-
// edu :
|
784
|
+
// edu : https://en.wikipedia.org/wiki/.edu
|
787
785
|
edu
|
788
786
|
|
789
787
|
// ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B
|
@@ -799,7 +797,7 @@ aip.ee
|
|
799
797
|
org.ee
|
800
798
|
fie.ee
|
801
799
|
|
802
|
-
// eg :
|
800
|
+
// eg : https://en.wikipedia.org/wiki/.eg
|
803
801
|
eg
|
804
802
|
com.eg
|
805
803
|
edu.eg
|
@@ -811,7 +809,7 @@ net.eg
|
|
811
809
|
org.eg
|
812
810
|
sci.eg
|
813
811
|
|
814
|
-
// er :
|
812
|
+
// er : https://en.wikipedia.org/wiki/.er
|
815
813
|
*.er
|
816
814
|
|
817
815
|
// es : https://www.nic.es/site_ingles/ingles/dominios/index.html
|
@@ -822,7 +820,7 @@ org.es
|
|
822
820
|
gob.es
|
823
821
|
edu.es
|
824
822
|
|
825
|
-
// et :
|
823
|
+
// et : https://en.wikipedia.org/wiki/.et
|
826
824
|
et
|
827
825
|
com.et
|
828
826
|
gov.et
|
@@ -833,28 +831,28 @@ name.et
|
|
833
831
|
info.et
|
834
832
|
net.et
|
835
833
|
|
836
|
-
// eu :
|
834
|
+
// eu : https://en.wikipedia.org/wiki/.eu
|
837
835
|
eu
|
838
836
|
|
839
|
-
// fi :
|
837
|
+
// fi : https://en.wikipedia.org/wiki/.fi
|
840
838
|
fi
|
841
|
-
// aland.fi :
|
839
|
+
// aland.fi : https://en.wikipedia.org/wiki/.ax
|
842
840
|
// This domain is being phased out in favor of .ax. As there are still many
|
843
841
|
// domains under aland.fi, we still keep it on the list until aland.fi is
|
844
842
|
// completely removed.
|
845
843
|
// TODO: Check for updates (expected to be phased out around Q1/2009)
|
846
844
|
aland.fi
|
847
845
|
|
848
|
-
// fj :
|
846
|
+
// fj : https://en.wikipedia.org/wiki/.fj
|
849
847
|
*.fj
|
850
848
|
|
851
|
-
// fk :
|
849
|
+
// fk : https://en.wikipedia.org/wiki/.fk
|
852
850
|
*.fk
|
853
851
|
|
854
|
-
// fm :
|
852
|
+
// fm : https://en.wikipedia.org/wiki/.fm
|
855
853
|
fm
|
856
854
|
|
857
|
-
// fo :
|
855
|
+
// fo : https://en.wikipedia.org/wiki/.fo
|
858
856
|
fo
|
859
857
|
|
860
858
|
// fr : http://www.afnic.fr/
|
@@ -885,14 +883,14 @@ pharmacien.fr
|
|
885
883
|
port.fr
|
886
884
|
veterinaire.fr
|
887
885
|
|
888
|
-
// ga :
|
886
|
+
// ga : https://en.wikipedia.org/wiki/.ga
|
889
887
|
ga
|
890
888
|
|
891
889
|
// gb : This registry is effectively dormant
|
892
|
-
// Submitted by registry <Damien.Shaw@ja.net>
|
890
|
+
// Submitted by registry <Damien.Shaw@ja.net>
|
893
891
|
gb
|
894
892
|
|
895
|
-
// gd :
|
893
|
+
// gd : https://en.wikipedia.org/wiki/.gd
|
896
894
|
gd
|
897
895
|
|
898
896
|
// ge : http://www.nic.net.ge/policy_en.pdf
|
@@ -905,7 +903,7 @@ mil.ge
|
|
905
903
|
net.ge
|
906
904
|
pvt.ge
|
907
905
|
|
908
|
-
// gf :
|
906
|
+
// gf : https://en.wikipedia.org/wiki/.gf
|
909
907
|
gf
|
910
908
|
|
911
909
|
// gg : http://www.channelisles.net/register-domains/
|
@@ -915,7 +913,7 @@ co.gg
|
|
915
913
|
net.gg
|
916
914
|
org.gg
|
917
915
|
|
918
|
-
// gh :
|
916
|
+
// gh : https://en.wikipedia.org/wiki/.gh
|
919
917
|
// see also: http://www.nic.gh/reg_now.php
|
920
918
|
// Although domains directly at second level are not possible at the moment,
|
921
919
|
// they have been possible for some time and may come back.
|
@@ -935,7 +933,7 @@ mod.gi
|
|
935
933
|
edu.gi
|
936
934
|
org.gi
|
937
935
|
|
938
|
-
// gl :
|
936
|
+
// gl : https://en.wikipedia.org/wiki/.gl
|
939
937
|
// http://nic.gl
|
940
938
|
gl
|
941
939
|
co.gl
|
@@ -948,7 +946,7 @@ org.gl
|
|
948
946
|
gm
|
949
947
|
|
950
948
|
// gn : http://psg.com/dns/gn/gn.txt
|
951
|
-
// Submitted by registry <randy@psg.com>
|
949
|
+
// Submitted by registry <randy@psg.com>
|
952
950
|
gn
|
953
951
|
ac.gn
|
954
952
|
com.gn
|
@@ -957,7 +955,7 @@ gov.gn
|
|
957
955
|
org.gn
|
958
956
|
net.gn
|
959
957
|
|
960
|
-
// gov :
|
958
|
+
// gov : https://en.wikipedia.org/wiki/.gov
|
961
959
|
gov
|
962
960
|
|
963
961
|
// gp : http://www.nic.gp/index.php?lang=en
|
@@ -969,11 +967,11 @@ edu.gp
|
|
969
967
|
org.gp
|
970
968
|
asso.gp
|
971
969
|
|
972
|
-
// gq :
|
970
|
+
// gq : https://en.wikipedia.org/wiki/.gq
|
973
971
|
gq
|
974
972
|
|
975
973
|
// gr : https://grweb.ics.forth.gr/english/1617-B-2005.html
|
976
|
-
// Submitted by registry <segred@ics.forth.gr>
|
974
|
+
// Submitted by registry <segred@ics.forth.gr>
|
977
975
|
gr
|
978
976
|
com.gr
|
979
977
|
edu.gr
|
@@ -981,7 +979,7 @@ net.gr
|
|
981
979
|
org.gr
|
982
980
|
gov.gr
|
983
981
|
|
984
|
-
// gs :
|
982
|
+
// gs : https://en.wikipedia.org/wiki/.gs
|
985
983
|
gs
|
986
984
|
|
987
985
|
// gt : http://www.gt/politicas_de_registro.html
|
@@ -997,18 +995,21 @@ org.gt
|
|
997
995
|
// gu : http://gadao.gov.gu/registration.txt
|
998
996
|
*.gu
|
999
997
|
|
1000
|
-
// gw :
|
998
|
+
// gw : https://en.wikipedia.org/wiki/.gw
|
1001
999
|
gw
|
1002
1000
|
|
1003
|
-
// gy :
|
1001
|
+
// gy : https://en.wikipedia.org/wiki/.gy
|
1004
1002
|
// http://registry.gy/
|
1005
1003
|
gy
|
1006
1004
|
co.gy
|
1007
1005
|
com.gy
|
1006
|
+
edu.gy
|
1007
|
+
gov.gy
|
1008
1008
|
net.gy
|
1009
|
+
org.gy
|
1009
1010
|
|
1010
1011
|
// hk : https://www.hkdnr.hk
|
1011
|
-
// Submitted by registry <hk.tech@hkirc.hk>
|
1012
|
+
// Submitted by registry <hk.tech@hkirc.hk>
|
1012
1013
|
hk
|
1013
1014
|
com.hk
|
1014
1015
|
edu.hk
|
@@ -1032,7 +1033,7 @@ org.hk
|
|
1032
1033
|
組織.hk
|
1033
1034
|
組织.hk
|
1034
1035
|
|
1035
|
-
// hm :
|
1036
|
+
// hm : https://en.wikipedia.org/wiki/.hm
|
1036
1037
|
hm
|
1037
1038
|
|
1038
1039
|
// hn : http://www.nic.hn/politicas/ps02,,05.html
|
@@ -1120,7 +1121,7 @@ or.id
|
|
1120
1121
|
sch.id
|
1121
1122
|
web.id
|
1122
1123
|
|
1123
|
-
// ie :
|
1124
|
+
// ie : https://en.wikipedia.org/wiki/.ie
|
1124
1125
|
ie
|
1125
1126
|
gov.ie
|
1126
1127
|
|
@@ -1136,7 +1137,7 @@ net.il
|
|
1136
1137
|
org.il
|
1137
1138
|
|
1138
1139
|
// im : https://www.nic.im/
|
1139
|
-
// Submitted by registry <info@nic.im>
|
1140
|
+
// Submitted by registry <info@nic.im>
|
1140
1141
|
im
|
1141
1142
|
ac.im
|
1142
1143
|
co.im
|
@@ -1148,9 +1149,9 @@ plc.co.im
|
|
1148
1149
|
tt.im
|
1149
1150
|
tv.im
|
1150
1151
|
|
1151
|
-
// in :
|
1152
|
+
// in : https://en.wikipedia.org/wiki/.in
|
1152
1153
|
// see also: https://registry.in/Policies
|
1153
|
-
// Please note, that nic.in is not an
|
1154
|
+
// Please note, that nic.in is not an official eTLD, but used by most
|
1154
1155
|
// government institutions.
|
1155
1156
|
in
|
1156
1157
|
co.in
|
@@ -1166,10 +1167,10 @@ res.in
|
|
1166
1167
|
gov.in
|
1167
1168
|
mil.in
|
1168
1169
|
|
1169
|
-
// info :
|
1170
|
+
// info : https://en.wikipedia.org/wiki/.info
|
1170
1171
|
info
|
1171
1172
|
|
1172
|
-
// int :
|
1173
|
+
// int : https://en.wikipedia.org/wiki/.int
|
1173
1174
|
// Confirmed by registry <iana-questions@icann.org> 2008-06-18
|
1174
1175
|
int
|
1175
1176
|
eu.int
|
@@ -1214,7 +1215,7 @@ gov.is
|
|
1214
1215
|
org.is
|
1215
1216
|
int.is
|
1216
1217
|
|
1217
|
-
// it :
|
1218
|
+
// it : https://en.wikipedia.org/wiki/.it
|
1218
1219
|
it
|
1219
1220
|
gov.it
|
1220
1221
|
edu.it
|
@@ -1612,12 +1613,12 @@ gov.jo
|
|
1612
1613
|
mil.jo
|
1613
1614
|
name.jo
|
1614
1615
|
|
1615
|
-
// jobs :
|
1616
|
+
// jobs : https://en.wikipedia.org/wiki/.jobs
|
1616
1617
|
jobs
|
1617
1618
|
|
1618
|
-
// jp :
|
1619
|
+
// jp : https://en.wikipedia.org/wiki/.jp
|
1619
1620
|
// http://jprs.co.jp/en/jpdomain.html
|
1620
|
-
// Submitted by registry <info@jprs.jp>
|
1621
|
+
// Submitted by registry <info@jprs.jp>
|
1621
1622
|
jp
|
1622
1623
|
// jp organizational type names
|
1623
1624
|
ac.jp
|
@@ -3444,7 +3445,7 @@ gov.ki
|
|
3444
3445
|
info.ki
|
3445
3446
|
com.ki
|
3446
3447
|
|
3447
|
-
// km :
|
3448
|
+
// km : https://en.wikipedia.org/wiki/.km
|
3448
3449
|
// http://www.domaine.km/documents/charte.doc
|
3449
3450
|
km
|
3450
3451
|
org.km
|
@@ -3457,7 +3458,7 @@ mil.km
|
|
3457
3458
|
ass.km
|
3458
3459
|
com.km
|
3459
3460
|
// These are only mentioned as proposed suggestions at domaine.km, but
|
3460
|
-
//
|
3461
|
+
// https://en.wikipedia.org/wiki/.km says they're available for registration:
|
3461
3462
|
coop.km
|
3462
3463
|
asso.km
|
3463
3464
|
presse.km
|
@@ -3467,7 +3468,7 @@ pharmaciens.km
|
|
3467
3468
|
veterinaire.km
|
3468
3469
|
gouv.km
|
3469
3470
|
|
3470
|
-
// kn :
|
3471
|
+
// kn : https://en.wikipedia.org/wiki/.kn
|
3471
3472
|
// http://www.dot.kn/domainRules.html
|
3472
3473
|
kn
|
3473
3474
|
net.kn
|
@@ -3484,7 +3485,7 @@ org.kp
|
|
3484
3485
|
rep.kp
|
3485
3486
|
tra.kp
|
3486
3487
|
|
3487
|
-
// kr :
|
3488
|
+
// kr : https://en.wikipedia.org/wiki/.kr
|
3488
3489
|
// see also: http://domain.nida.or.kr/eng/registration.jsp
|
3489
3490
|
kr
|
3490
3491
|
ac.kr
|
@@ -3518,7 +3519,7 @@ jeonnam.kr
|
|
3518
3519
|
seoul.kr
|
3519
3520
|
ulsan.kr
|
3520
3521
|
|
3521
|
-
// kw :
|
3522
|
+
// kw : https://en.wikipedia.org/wiki/.kw
|
3522
3523
|
*.kw
|
3523
3524
|
|
3524
3525
|
// ky : http://www.icta.ky/da_ky_reg_dom.php
|
@@ -3530,7 +3531,7 @@ com.ky
|
|
3530
3531
|
org.ky
|
3531
3532
|
net.ky
|
3532
3533
|
|
3533
|
-
// kz :
|
3534
|
+
// kz : https://en.wikipedia.org/wiki/.kz
|
3534
3535
|
// see also: http://www.nic.kz/rules/index.jsp
|
3535
3536
|
kz
|
3536
3537
|
org.kz
|
@@ -3540,8 +3541,8 @@ gov.kz
|
|
3540
3541
|
mil.kz
|
3541
3542
|
com.kz
|
3542
3543
|
|
3543
|
-
// la :
|
3544
|
-
// Submitted by registry <gavin.brown@nic.la>
|
3544
|
+
// la : https://en.wikipedia.org/wiki/.la
|
3545
|
+
// Submitted by registry <gavin.brown@nic.la>
|
3545
3546
|
la
|
3546
3547
|
int.la
|
3547
3548
|
net.la
|
@@ -3552,8 +3553,8 @@ per.la
|
|
3552
3553
|
com.la
|
3553
3554
|
org.la
|
3554
3555
|
|
3555
|
-
// lb :
|
3556
|
-
// Submitted by registry <randy@psg.com>
|
3556
|
+
// lb : https://en.wikipedia.org/wiki/.lb
|
3557
|
+
// Submitted by registry <randy@psg.com>
|
3557
3558
|
lb
|
3558
3559
|
com.lb
|
3559
3560
|
edu.lb
|
@@ -3561,7 +3562,7 @@ gov.lb
|
|
3561
3562
|
net.lb
|
3562
3563
|
org.lb
|
3563
3564
|
|
3564
|
-
// lc :
|
3565
|
+
// lc : https://en.wikipedia.org/wiki/.lc
|
3565
3566
|
// see also: http://www.nic.lc/rules.htm
|
3566
3567
|
lc
|
3567
3568
|
com.lc
|
@@ -3571,7 +3572,7 @@ org.lc
|
|
3571
3572
|
edu.lc
|
3572
3573
|
gov.lc
|
3573
3574
|
|
3574
|
-
// li :
|
3575
|
+
// li : https://en.wikipedia.org/wiki/.li
|
3575
3576
|
li
|
3576
3577
|
|
3577
3578
|
// lk : http://www.nic.lk/seclevpr.html
|
@@ -3593,7 +3594,7 @@ hotel.lk
|
|
3593
3594
|
ac.lk
|
3594
3595
|
|
3595
3596
|
// lr : http://psg.com/dns/lr/lr.txt
|
3596
|
-
// Submitted by registry <randy@psg.com>
|
3597
|
+
// Submitted by registry <randy@psg.com>
|
3597
3598
|
lr
|
3598
3599
|
com.lr
|
3599
3600
|
edu.lr
|
@@ -3601,12 +3602,12 @@ gov.lr
|
|
3601
3602
|
org.lr
|
3602
3603
|
net.lr
|
3603
3604
|
|
3604
|
-
// ls :
|
3605
|
+
// ls : https://en.wikipedia.org/wiki/.ls
|
3605
3606
|
ls
|
3606
3607
|
co.ls
|
3607
3608
|
org.ls
|
3608
3609
|
|
3609
|
-
// lt :
|
3610
|
+
// lt : https://en.wikipedia.org/wiki/.lt
|
3610
3611
|
lt
|
3611
3612
|
// gov.lt : http://www.gov.lt/index_en.php
|
3612
3613
|
gov.lt
|
@@ -3638,7 +3639,7 @@ med.ly
|
|
3638
3639
|
org.ly
|
3639
3640
|
id.ly
|
3640
3641
|
|
3641
|
-
// ma :
|
3642
|
+
// ma : https://en.wikipedia.org/wiki/.ma
|
3642
3643
|
// http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf
|
3643
3644
|
ma
|
3644
3645
|
co.ma
|
@@ -3653,10 +3654,10 @@ mc
|
|
3653
3654
|
tm.mc
|
3654
3655
|
asso.mc
|
3655
3656
|
|
3656
|
-
// md :
|
3657
|
+
// md : https://en.wikipedia.org/wiki/.md
|
3657
3658
|
md
|
3658
3659
|
|
3659
|
-
// me :
|
3660
|
+
// me : https://en.wikipedia.org/wiki/.me
|
3660
3661
|
me
|
3661
3662
|
co.me
|
3662
3663
|
net.me
|
@@ -3679,13 +3680,13 @@ mil.mg
|
|
3679
3680
|
com.mg
|
3680
3681
|
co.mg
|
3681
3682
|
|
3682
|
-
// mh :
|
3683
|
+
// mh : https://en.wikipedia.org/wiki/.mh
|
3683
3684
|
mh
|
3684
3685
|
|
3685
|
-
// mil :
|
3686
|
+
// mil : https://en.wikipedia.org/wiki/.mil
|
3686
3687
|
mil
|
3687
3688
|
|
3688
|
-
// mk :
|
3689
|
+
// mk : https://en.wikipedia.org/wiki/.mk
|
3689
3690
|
// see also: http://dns.marnet.net.mk/postapka.php
|
3690
3691
|
mk
|
3691
3692
|
com.mk
|
@@ -3697,7 +3698,7 @@ inf.mk
|
|
3697
3698
|
name.mk
|
3698
3699
|
|
3699
3700
|
// ml : http://www.gobin.info/domainname/ml-template.doc
|
3700
|
-
// see also:
|
3701
|
+
// see also: https://en.wikipedia.org/wiki/.ml
|
3701
3702
|
ml
|
3702
3703
|
com.ml
|
3703
3704
|
edu.ml
|
@@ -3707,10 +3708,10 @@ net.ml
|
|
3707
3708
|
org.ml
|
3708
3709
|
presse.ml
|
3709
3710
|
|
3710
|
-
// mm :
|
3711
|
+
// mm : https://en.wikipedia.org/wiki/.mm
|
3711
3712
|
*.mm
|
3712
3713
|
|
3713
|
-
// mn :
|
3714
|
+
// mn : https://en.wikipedia.org/wiki/.mn
|
3714
3715
|
mn
|
3715
3716
|
gov.mn
|
3716
3717
|
edu.mn
|
@@ -3724,17 +3725,17 @@ org.mo
|
|
3724
3725
|
edu.mo
|
3725
3726
|
gov.mo
|
3726
3727
|
|
3727
|
-
// mobi :
|
3728
|
+
// mobi : https://en.wikipedia.org/wiki/.mobi
|
3728
3729
|
mobi
|
3729
3730
|
|
3730
3731
|
// mp : http://www.dot.mp/
|
3731
3732
|
// Confirmed by registry <dcamacho@saipan.com> 2008-06-17
|
3732
3733
|
mp
|
3733
3734
|
|
3734
|
-
// mq :
|
3735
|
+
// mq : https://en.wikipedia.org/wiki/.mq
|
3735
3736
|
mq
|
3736
3737
|
|
3737
|
-
// mr :
|
3738
|
+
// mr : https://en.wikipedia.org/wiki/.mr
|
3738
3739
|
mr
|
3739
3740
|
gov.mr
|
3740
3741
|
|
@@ -3747,14 +3748,14 @@ net.ms
|
|
3747
3748
|
org.ms
|
3748
3749
|
|
3749
3750
|
// mt : https://www.nic.org.mt/go/policy
|
3750
|
-
// Submitted by registry <help@nic.org.mt>
|
3751
|
+
// Submitted by registry <help@nic.org.mt>
|
3751
3752
|
mt
|
3752
3753
|
com.mt
|
3753
3754
|
edu.mt
|
3754
3755
|
net.mt
|
3755
3756
|
org.mt
|
3756
3757
|
|
3757
|
-
// mu :
|
3758
|
+
// mu : https://en.wikipedia.org/wiki/.mu
|
3758
3759
|
mu
|
3759
3760
|
com.mu
|
3760
3761
|
net.mu
|
@@ -4316,7 +4317,7 @@ zoology.museum
|
|
4316
4317
|
ירושלים.museum
|
4317
4318
|
иком.museum
|
4318
4319
|
|
4319
|
-
// mv :
|
4320
|
+
// mv : https://en.wikipedia.org/wiki/.mv
|
4320
4321
|
// "mv" included because, contra Wikipedia, google.mv exists.
|
4321
4322
|
mv
|
4322
4323
|
aero.mv
|
@@ -4349,7 +4350,7 @@ net.mw
|
|
4349
4350
|
org.mw
|
4350
4351
|
|
4351
4352
|
// mx : http://www.nic.mx/
|
4352
|
-
// Submitted by registry <farias@nic.mx>
|
4353
|
+
// Submitted by registry <farias@nic.mx>
|
4353
4354
|
mx
|
4354
4355
|
com.mx
|
4355
4356
|
org.mx
|
@@ -4399,13 +4400,13 @@ name
|
|
4399
4400
|
nc
|
4400
4401
|
asso.nc
|
4401
4402
|
|
4402
|
-
// ne :
|
4403
|
+
// ne : https://en.wikipedia.org/wiki/.ne
|
4403
4404
|
ne
|
4404
4405
|
|
4405
|
-
// net :
|
4406
|
+
// net : https://en.wikipedia.org/wiki/.net
|
4406
4407
|
net
|
4407
4408
|
|
4408
|
-
// nf :
|
4409
|
+
// nf : https://en.wikipedia.org/wiki/.nf
|
4409
4410
|
nf
|
4410
4411
|
com.nf
|
4411
4412
|
net.nf
|
@@ -4418,35 +4419,36 @@ info.nf
|
|
4418
4419
|
other.nf
|
4419
4420
|
store.nf
|
4420
4421
|
|
4421
|
-
// ng : http://
|
4422
|
+
// ng : http://www.nira.org.ng/index.php/join-us/register-ng-domain/189-nira-slds
|
4422
4423
|
ng
|
4423
4424
|
com.ng
|
4424
4425
|
edu.ng
|
4426
|
+
gov.ng
|
4427
|
+
i.ng
|
4428
|
+
mil.ng
|
4429
|
+
mobi.ng
|
4425
4430
|
name.ng
|
4426
4431
|
net.ng
|
4427
4432
|
org.ng
|
4428
4433
|
sch.ng
|
4429
|
-
gov.ng
|
4430
|
-
mil.ng
|
4431
|
-
mobi.ng
|
4432
4434
|
|
4433
4435
|
// ni : http://www.nic.ni/
|
4434
|
-
com.ni
|
4435
|
-
gob.ni
|
4436
|
+
com.ni
|
4437
|
+
gob.ni
|
4436
4438
|
edu.ni
|
4437
4439
|
org.ni
|
4438
4440
|
nom.ni
|
4439
4441
|
net.ni
|
4440
|
-
mil.ni
|
4442
|
+
mil.ni
|
4441
4443
|
co.ni
|
4442
4444
|
biz.ni
|
4443
|
-
web.ni
|
4445
|
+
web.ni
|
4444
4446
|
int.ni
|
4445
4447
|
ac.ni
|
4446
|
-
in.ni
|
4448
|
+
in.ni
|
4447
4449
|
info.ni
|
4448
4450
|
|
4449
|
-
// nl :
|
4451
|
+
// nl : https://en.wikipedia.org/wiki/.nl
|
4450
4452
|
// https://www.sidn.nl/
|
4451
4453
|
// ccTLD for the Netherlands
|
4452
4454
|
nl
|
@@ -5225,7 +5227,7 @@ våler.hedmark.no
|
|
5225
5227
|
*.np
|
5226
5228
|
|
5227
5229
|
// nr : http://cenpac.net.nr/dns/index.html
|
5228
|
-
//
|
5230
|
+
// Submitted by registry <technician@cenpac.net.nr>
|
5229
5231
|
nr
|
5230
5232
|
biz.nr
|
5231
5233
|
info.nr
|
@@ -5235,11 +5237,11 @@ org.nr
|
|
5235
5237
|
net.nr
|
5236
5238
|
com.nr
|
5237
5239
|
|
5238
|
-
// nu :
|
5240
|
+
// nu : https://en.wikipedia.org/wiki/.nu
|
5239
5241
|
nu
|
5240
5242
|
|
5241
|
-
// nz :
|
5242
|
-
//
|
5243
|
+
// nz : https://en.wikipedia.org/wiki/.nz
|
5244
|
+
// Submitted by registry <jay@nzrs.net.nz>
|
5243
5245
|
nz
|
5244
5246
|
ac.nz
|
5245
5247
|
co.nz
|
@@ -5258,7 +5260,7 @@ org.nz
|
|
5258
5260
|
parliament.nz
|
5259
5261
|
school.nz
|
5260
5262
|
|
5261
|
-
// om :
|
5263
|
+
// om : https://en.wikipedia.org/wiki/.om
|
5262
5264
|
om
|
5263
5265
|
co.om
|
5264
5266
|
com.om
|
@@ -5270,7 +5272,7 @@ net.om
|
|
5270
5272
|
org.om
|
5271
5273
|
pro.om
|
5272
5274
|
|
5273
|
-
// org :
|
5275
|
+
// org : https://en.wikipedia.org/wiki/.org
|
5274
5276
|
org
|
5275
5277
|
|
5276
5278
|
// pa : http://www.nic.pa/
|
@@ -5305,11 +5307,11 @@ com.pf
|
|
5305
5307
|
org.pf
|
5306
5308
|
edu.pf
|
5307
5309
|
|
5308
|
-
// pg :
|
5310
|
+
// pg : https://en.wikipedia.org/wiki/.pg
|
5309
5311
|
*.pg
|
5310
5312
|
|
5311
5313
|
// ph : http://www.domains.ph/FAQ2.asp
|
5312
|
-
// Submitted by registry <jed@email.com.ph>
|
5314
|
+
// Submitted by registry <jed@email.com.ph>
|
5313
5315
|
ph
|
5314
5316
|
com.ph
|
5315
5317
|
net.ph
|
@@ -5338,7 +5340,7 @@ gos.pk
|
|
5338
5340
|
info.pk
|
5339
5341
|
|
5340
5342
|
// pl http://www.dns.pl/english/index.html
|
5341
|
-
//
|
5343
|
+
// Submitted by registry
|
5342
5344
|
pl
|
5343
5345
|
com.pl
|
5344
5346
|
net.pl
|
@@ -5555,7 +5557,7 @@ org.pn
|
|
5555
5557
|
edu.pn
|
5556
5558
|
net.pn
|
5557
5559
|
|
5558
|
-
// post :
|
5560
|
+
// post : https://en.wikipedia.org/wiki/.post
|
5559
5561
|
post
|
5560
5562
|
|
5561
5563
|
// pr : http://www.nic.pr/index.asp?f=1
|
@@ -5570,22 +5572,26 @@ pro.pr
|
|
5570
5572
|
biz.pr
|
5571
5573
|
info.pr
|
5572
5574
|
name.pr
|
5573
|
-
// these aren't mentioned on nic.pr, but on
|
5575
|
+
// these aren't mentioned on nic.pr, but on https://en.wikipedia.org/wiki/.pr
|
5574
5576
|
est.pr
|
5575
5577
|
prof.pr
|
5576
5578
|
ac.pr
|
5577
5579
|
|
5578
|
-
// pro : http://
|
5580
|
+
// pro : http://registry.pro/get-pro
|
5579
5581
|
pro
|
5582
|
+
aaa.pro
|
5580
5583
|
aca.pro
|
5584
|
+
acct.pro
|
5585
|
+
avocat.pro
|
5581
5586
|
bar.pro
|
5582
5587
|
cpa.pro
|
5588
|
+
eng.pro
|
5583
5589
|
jur.pro
|
5584
5590
|
law.pro
|
5585
5591
|
med.pro
|
5586
|
-
|
5592
|
+
recht.pro
|
5587
5593
|
|
5588
|
-
// ps :
|
5594
|
+
// ps : https://en.wikipedia.org/wiki/.ps
|
5589
5595
|
// http://www.nic.ps/registration/policy.html#reg
|
5590
5596
|
ps
|
5591
5597
|
edu.ps
|
@@ -5607,7 +5613,7 @@ publ.pt
|
|
5607
5613
|
com.pt
|
5608
5614
|
nome.pt
|
5609
5615
|
|
5610
|
-
// pw :
|
5616
|
+
// pw : https://en.wikipedia.org/wiki/.pw
|
5611
5617
|
pw
|
5612
5618
|
co.pw
|
5613
5619
|
ne.pw
|
@@ -5617,7 +5623,7 @@ go.pw
|
|
5617
5623
|
belau.pw
|
5618
5624
|
|
5619
5625
|
// py : http://www.nic.py/pautas.html#seccion_9
|
5620
|
-
//
|
5626
|
+
// Submitted by registry
|
5621
5627
|
py
|
5622
5628
|
com.py
|
5623
5629
|
coop.py
|
@@ -5640,32 +5646,32 @@ sch.qa
|
|
5640
5646
|
|
5641
5647
|
// re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs
|
5642
5648
|
re
|
5643
|
-
com.re
|
5644
5649
|
asso.re
|
5650
|
+
com.re
|
5645
5651
|
nom.re
|
5646
5652
|
|
5647
5653
|
// ro : http://www.rotld.ro/
|
5648
5654
|
ro
|
5655
|
+
arts.ro
|
5649
5656
|
com.ro
|
5650
|
-
|
5651
|
-
tm.ro
|
5652
|
-
nt.ro
|
5653
|
-
nom.ro
|
5657
|
+
firm.ro
|
5654
5658
|
info.ro
|
5659
|
+
nom.ro
|
5660
|
+
nt.ro
|
5661
|
+
org.ro
|
5655
5662
|
rec.ro
|
5656
|
-
arts.ro
|
5657
|
-
firm.ro
|
5658
5663
|
store.ro
|
5664
|
+
tm.ro
|
5659
5665
|
www.ro
|
5660
5666
|
|
5661
|
-
// rs :
|
5667
|
+
// rs : https://www.rnids.rs/en/domains/national-domains
|
5662
5668
|
rs
|
5669
|
+
ac.rs
|
5663
5670
|
co.rs
|
5664
|
-
org.rs
|
5665
5671
|
edu.rs
|
5666
|
-
ac.rs
|
5667
5672
|
gov.rs
|
5668
5673
|
in.rs
|
5674
|
+
org.rs
|
5669
5675
|
|
5670
5676
|
// ru : http://www.cctld.ru/ru/docs/aktiv_8.php
|
5671
5677
|
// Industry domains
|
@@ -5830,7 +5836,7 @@ edu.sa
|
|
5830
5836
|
sch.sa
|
5831
5837
|
|
5832
5838
|
// sb : http://www.sbnic.net.sb/
|
5833
|
-
// Submitted by registry <lee.humphries@telekom.com.sb>
|
5839
|
+
// Submitted by registry <lee.humphries@telekom.com.sb>
|
5834
5840
|
sb
|
5835
5841
|
com.sb
|
5836
5842
|
edu.sb
|
@@ -5847,7 +5853,7 @@ org.sc
|
|
5847
5853
|
edu.sc
|
5848
5854
|
|
5849
5855
|
// sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm
|
5850
|
-
// Submitted by registry <admin@isoc.sd>
|
5856
|
+
// Submitted by registry <admin@isoc.sd>
|
5851
5857
|
sd
|
5852
5858
|
com.sd
|
5853
5859
|
net.sd
|
@@ -5858,8 +5864,8 @@ tv.sd
|
|
5858
5864
|
gov.sd
|
5859
5865
|
info.sd
|
5860
5866
|
|
5861
|
-
// se :
|
5862
|
-
// Submitted by registry <patrik.wallstrom@iis.se>
|
5867
|
+
// se : https://en.wikipedia.org/wiki/.se
|
5868
|
+
// Submitted by registry <patrik.wallstrom@iis.se>
|
5863
5869
|
se
|
5864
5870
|
a.se
|
5865
5871
|
ac.se
|
@@ -5918,19 +5924,19 @@ gov.sh
|
|
5918
5924
|
org.sh
|
5919
5925
|
mil.sh
|
5920
5926
|
|
5921
|
-
// si :
|
5927
|
+
// si : https://en.wikipedia.org/wiki/.si
|
5922
5928
|
si
|
5923
5929
|
|
5924
5930
|
// sj : No registrations at this time.
|
5925
|
-
// Submitted by registry <jarle@uninett.no>
|
5931
|
+
// Submitted by registry <jarle@uninett.no>
|
5926
5932
|
sj
|
5927
5933
|
|
5928
|
-
// sk :
|
5934
|
+
// sk : https://en.wikipedia.org/wiki/.sk
|
5929
5935
|
// list of 2nd level domains ?
|
5930
5936
|
sk
|
5931
5937
|
|
5932
5938
|
// sl : http://www.nic.sl
|
5933
|
-
// Submitted by registry <adam@neoip.com>
|
5939
|
+
// Submitted by registry <adam@neoip.com>
|
5934
5940
|
sl
|
5935
5941
|
com.sl
|
5936
5942
|
net.sl
|
@@ -5938,10 +5944,10 @@ edu.sl
|
|
5938
5944
|
gov.sl
|
5939
5945
|
org.sl
|
5940
5946
|
|
5941
|
-
// sm :
|
5947
|
+
// sm : https://en.wikipedia.org/wiki/.sm
|
5942
5948
|
sm
|
5943
5949
|
|
5944
|
-
// sn :
|
5950
|
+
// sn : https://en.wikipedia.org/wiki/.sn
|
5945
5951
|
sn
|
5946
5952
|
art.sn
|
5947
5953
|
com.sn
|
@@ -5957,7 +5963,7 @@ com.so
|
|
5957
5963
|
net.so
|
5958
5964
|
org.so
|
5959
5965
|
|
5960
|
-
// sr :
|
5966
|
+
// sr : https://en.wikipedia.org/wiki/.sr
|
5961
5967
|
sr
|
5962
5968
|
|
5963
5969
|
// st : http://www.nic.st/html/policyrules/
|
@@ -5975,7 +5981,7 @@ principe.st
|
|
5975
5981
|
saotome.st
|
5976
5982
|
store.st
|
5977
5983
|
|
5978
|
-
// su :
|
5984
|
+
// su : https://en.wikipedia.org/wiki/.su
|
5979
5985
|
su
|
5980
5986
|
adygeya.su
|
5981
5987
|
arkhangelsk.su
|
@@ -6018,12 +6024,12 @@ gob.sv
|
|
6018
6024
|
org.sv
|
6019
6025
|
red.sv
|
6020
6026
|
|
6021
|
-
// sx :
|
6022
|
-
//
|
6027
|
+
// sx : https://en.wikipedia.org/wiki/.sx
|
6028
|
+
// Submitted by registry <jcvignes@openregistry.com>
|
6023
6029
|
sx
|
6024
6030
|
gov.sx
|
6025
6031
|
|
6026
|
-
// sy :
|
6032
|
+
// sy : https://en.wikipedia.org/wiki/.sy
|
6027
6033
|
// see also: http://www.gobin.info/domainname/sy.doc
|
6028
6034
|
sy
|
6029
6035
|
edu.sy
|
@@ -6033,32 +6039,32 @@ mil.sy
|
|
6033
6039
|
com.sy
|
6034
6040
|
org.sy
|
6035
6041
|
|
6036
|
-
// sz :
|
6042
|
+
// sz : https://en.wikipedia.org/wiki/.sz
|
6037
6043
|
// http://www.sispa.org.sz/
|
6038
6044
|
sz
|
6039
6045
|
co.sz
|
6040
6046
|
ac.sz
|
6041
6047
|
org.sz
|
6042
6048
|
|
6043
|
-
// tc :
|
6049
|
+
// tc : https://en.wikipedia.org/wiki/.tc
|
6044
6050
|
tc
|
6045
6051
|
|
6046
|
-
// td :
|
6052
|
+
// td : https://en.wikipedia.org/wiki/.td
|
6047
6053
|
td
|
6048
6054
|
|
6049
|
-
// tel:
|
6055
|
+
// tel: https://en.wikipedia.org/wiki/.tel
|
6050
6056
|
// http://www.telnic.org/
|
6051
6057
|
tel
|
6052
6058
|
|
6053
|
-
// tf :
|
6059
|
+
// tf : https://en.wikipedia.org/wiki/.tf
|
6054
6060
|
tf
|
6055
6061
|
|
6056
|
-
// tg :
|
6062
|
+
// tg : https://en.wikipedia.org/wiki/.tg
|
6057
6063
|
// http://www.nic.tg/
|
6058
6064
|
tg
|
6059
6065
|
|
6060
|
-
// th :
|
6061
|
-
// Submitted by registry <krit@thains.co.th>
|
6066
|
+
// th : https://en.wikipedia.org/wiki/.th
|
6067
|
+
// Submitted by registry <krit@thains.co.th>
|
6062
6068
|
th
|
6063
6069
|
ac.th
|
6064
6070
|
co.th
|
@@ -6086,10 +6092,10 @@ org.tj
|
|
6086
6092
|
test.tj
|
6087
6093
|
web.tj
|
6088
6094
|
|
6089
|
-
// tk :
|
6095
|
+
// tk : https://en.wikipedia.org/wiki/.tk
|
6090
6096
|
tk
|
6091
6097
|
|
6092
|
-
// tl :
|
6098
|
+
// tl : https://en.wikipedia.org/wiki/.tl
|
6093
6099
|
tl
|
6094
6100
|
gov.tl
|
6095
6101
|
|
@@ -6104,7 +6110,7 @@ gov.tm
|
|
6104
6110
|
mil.tm
|
6105
6111
|
edu.tm
|
6106
6112
|
|
6107
|
-
// tn :
|
6113
|
+
// tn : https://en.wikipedia.org/wiki/.tn
|
6108
6114
|
// http://whois.ati.tn/
|
6109
6115
|
tn
|
6110
6116
|
com.tn
|
@@ -6128,8 +6134,8 @@ agrinet.tn
|
|
6128
6134
|
defense.tn
|
6129
6135
|
turen.tn
|
6130
6136
|
|
6131
|
-
// to :
|
6132
|
-
// Submitted by registry <egullich@colo.to>
|
6137
|
+
// to : https://en.wikipedia.org/wiki/.to
|
6138
|
+
// Submitted by registry <egullich@colo.to>
|
6133
6139
|
to
|
6134
6140
|
com.to
|
6135
6141
|
gov.to
|
@@ -6138,13 +6144,9 @@ org.to
|
|
6138
6144
|
edu.to
|
6139
6145
|
mil.to
|
6140
6146
|
|
6141
|
-
// tp : No registrations at this time.
|
6142
|
-
// Submitted by Ryan Sleevi <ryan.sleevi@gmail.com> 2014-01-03
|
6143
|
-
tp
|
6144
|
-
|
6145
6147
|
// subTLDs: https://www.nic.tr/forms/eng/policies.pdf
|
6146
6148
|
// and: https://www.nic.tr/forms/politikalar.pdf
|
6147
|
-
// Submitted by <mehmetgurevin@gmail.com>
|
6149
|
+
// Submitted by <mehmetgurevin@gmail.com>
|
6148
6150
|
tr
|
6149
6151
|
com.tr
|
6150
6152
|
info.tr
|
@@ -6173,7 +6175,7 @@ nc.tr
|
|
6173
6175
|
// Used by government agencies of Northern Cyprus
|
6174
6176
|
gov.nc.tr
|
6175
6177
|
|
6176
|
-
// travel :
|
6178
|
+
// travel : https://en.wikipedia.org/wiki/.travel
|
6177
6179
|
travel
|
6178
6180
|
|
6179
6181
|
// tt : http://www.nic.tt/
|
@@ -6196,12 +6198,12 @@ name.tt
|
|
6196
6198
|
gov.tt
|
6197
6199
|
edu.tt
|
6198
6200
|
|
6199
|
-
// tv :
|
6201
|
+
// tv : https://en.wikipedia.org/wiki/.tv
|
6200
6202
|
// Not listing any 2LDs as reserved since none seem to exist in practice,
|
6201
6203
|
// Wikipedia notwithstanding.
|
6202
6204
|
tv
|
6203
6205
|
|
6204
|
-
// tw :
|
6206
|
+
// tw : https://en.wikipedia.org/wiki/.tw
|
6205
6207
|
tw
|
6206
6208
|
edu.tw
|
6207
6209
|
gov.tw
|
@@ -6218,7 +6220,7 @@ club.tw
|
|
6218
6220
|
商業.tw
|
6219
6221
|
|
6220
6222
|
// tz : http://www.tznic.or.tz/index.php/domains
|
6221
|
-
//
|
6223
|
+
// Submitted by registry <manager@tznic.or.tz>
|
6222
6224
|
tz
|
6223
6225
|
ac.tz
|
6224
6226
|
co.tz
|
@@ -6234,7 +6236,7 @@ sc.tz
|
|
6234
6236
|
tv.tz
|
6235
6237
|
|
6236
6238
|
// ua : https://hostmaster.ua/policy/?ua
|
6237
|
-
// Submitted by registry <dk@cctld.ua>
|
6239
|
+
// Submitted by registry <dk@cctld.ua>
|
6238
6240
|
ua
|
6239
6241
|
// ua 2LD
|
6240
6242
|
com.ua
|
@@ -6327,7 +6329,7 @@ ne.ug
|
|
6327
6329
|
com.ug
|
6328
6330
|
org.ug
|
6329
6331
|
|
6330
|
-
// uk :
|
6332
|
+
// uk : https://en.wikipedia.org/wiki/.uk
|
6331
6333
|
// Submitted by registry <Michael.Daly@nominet.org.uk>
|
6332
6334
|
uk
|
6333
6335
|
ac.uk
|
@@ -6342,7 +6344,7 @@ plc.uk
|
|
6342
6344
|
police.uk
|
6343
6345
|
*.sch.uk
|
6344
6346
|
|
6345
|
-
// us :
|
6347
|
+
// us : https://en.wikipedia.org/wiki/.us
|
6346
6348
|
us
|
6347
6349
|
dni.us
|
6348
6350
|
fed.us
|
@@ -6577,8 +6579,8 @@ lib.wi.us
|
|
6577
6579
|
// lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold@wvlc.lib.wv.us>
|
6578
6580
|
lib.wy.us
|
6579
6581
|
// k12.ma.us contains school districts in Massachusetts. The 4LDs are
|
6580
|
-
// managed
|
6581
|
-
// parochial (PAROCH) schools. Those are delegated
|
6582
|
+
// managed independently except for private (PVT), charter (CHTR) and
|
6583
|
+
// parochial (PAROCH) schools. Those are delegated directly to the
|
6582
6584
|
// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
|
6583
6585
|
pvt.k12.ma.us
|
6584
6586
|
chtr.k12.ma.us
|
@@ -6600,11 +6602,11 @@ com.uz
|
|
6600
6602
|
net.uz
|
6601
6603
|
org.uz
|
6602
6604
|
|
6603
|
-
// va :
|
6605
|
+
// va : https://en.wikipedia.org/wiki/.va
|
6604
6606
|
va
|
6605
6607
|
|
6606
|
-
// vc :
|
6607
|
-
// Submitted by registry <kshah@ca.afilias.info>
|
6608
|
+
// vc : https://en.wikipedia.org/wiki/.vc
|
6609
|
+
// Submitted by registry <kshah@ca.afilias.info>
|
6608
6610
|
vc
|
6609
6611
|
com.vc
|
6610
6612
|
net.vc
|
@@ -6614,8 +6616,7 @@ mil.vc
|
|
6614
6616
|
edu.vc
|
6615
6617
|
|
6616
6618
|
// ve : https://registro.nic.ve/
|
6617
|
-
//
|
6618
|
-
// Updated 2014-05-20 - Bug 940478
|
6619
|
+
// Submitted by registry
|
6619
6620
|
ve
|
6620
6621
|
arts.ve
|
6621
6622
|
co.ve
|
@@ -6635,7 +6636,7 @@ store.ve
|
|
6635
6636
|
tec.ve
|
6636
6637
|
web.ve
|
6637
6638
|
|
6638
|
-
// vg :
|
6639
|
+
// vg : https://en.wikipedia.org/wiki/.vg
|
6639
6640
|
vg
|
6640
6641
|
|
6641
6642
|
// vi : http://www.nic.vi/newdomainform.htm
|
@@ -6664,7 +6665,7 @@ name.vn
|
|
6664
6665
|
pro.vn
|
6665
6666
|
health.vn
|
6666
6667
|
|
6667
|
-
// vu :
|
6668
|
+
// vu : https://en.wikipedia.org/wiki/.vu
|
6668
6669
|
// http://www.vunic.vu/
|
6669
6670
|
vu
|
6670
6671
|
com.vu
|
@@ -6675,7 +6676,7 @@ org.vu
|
|
6675
6676
|
// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf
|
6676
6677
|
wf
|
6677
6678
|
|
6678
|
-
// ws :
|
6679
|
+
// ws : https://en.wikipedia.org/wiki/.ws
|
6679
6680
|
// http://samoanic.ws/index.dhtml
|
6680
6681
|
ws
|
6681
6682
|
com.ws
|
@@ -6726,6 +6727,9 @@ yt
|
|
6726
6727
|
// http://www.dotmasr.eg/
|
6727
6728
|
مصر
|
6728
6729
|
|
6730
|
+
// xn--e1a4c ("eu", Cyrillic) : EU
|
6731
|
+
ею
|
6732
|
+
|
6729
6733
|
// xn--node ("ge", Georgian Mkhedruli) : GE
|
6730
6734
|
გე
|
6731
6735
|
|
@@ -6829,7 +6833,7 @@ yt
|
|
6829
6833
|
فلسطين
|
6830
6834
|
|
6831
6835
|
// xn--90a3ac ("srb", Cyrillic) : RS
|
6832
|
-
//
|
6836
|
+
// https://www.rnids.rs/en/domains/national-domains
|
6833
6837
|
срб
|
6834
6838
|
пр.срб
|
6835
6839
|
орг.срб
|
@@ -6908,7 +6912,7 @@ xxx
|
|
6908
6912
|
|
6909
6913
|
// za : http://www.zadna.org.za/content/page/domain-information
|
6910
6914
|
ac.za
|
6911
|
-
|
6915
|
+
agric.za
|
6912
6916
|
alt.za
|
6913
6917
|
co.za
|
6914
6918
|
edu.za
|
@@ -6925,14 +6929,26 @@ school.za
|
|
6925
6929
|
tm.za
|
6926
6930
|
web.za
|
6927
6931
|
|
6928
|
-
// zm :
|
6929
|
-
|
6930
|
-
|
6931
|
-
|
6932
|
+
// zm : https://zicta.zm/
|
6933
|
+
// Submitted by registry <info@zicta.zm>
|
6934
|
+
zm
|
6935
|
+
ac.zm
|
6936
|
+
biz.zm
|
6937
|
+
co.zm
|
6938
|
+
com.zm
|
6939
|
+
edu.zm
|
6940
|
+
gov.zm
|
6941
|
+
info.zm
|
6942
|
+
mil.zm
|
6943
|
+
net.zm
|
6944
|
+
org.zm
|
6945
|
+
sch.zm
|
6946
|
+
|
6947
|
+
// zw : https://en.wikipedia.org/wiki/.zw
|
6932
6948
|
*.zw
|
6933
6949
|
|
6934
6950
|
|
6935
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on
|
6951
|
+
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2016-04-04T20:12:16Z
|
6936
6952
|
|
6937
6953
|
// aaa : 2015-02-26 American Automobile Association, Inc.
|
6938
6954
|
aaa
|
@@ -7105,6 +7121,9 @@ apple
|
|
7105
7121
|
// aquarelle : 2014-07-24 Aquarelle.com
|
7106
7122
|
aquarelle
|
7107
7123
|
|
7124
|
+
// arab : 2015-11-12 League of Arab States
|
7125
|
+
arab
|
7126
|
+
|
7108
7127
|
// aramco : 2014-11-20 Aramco Services Company
|
7109
7128
|
aramco
|
7110
7129
|
|
@@ -7114,6 +7133,9 @@ archi
|
|
7114
7133
|
// army : 2014-03-06 United TLD Holdco Ltd.
|
7115
7134
|
army
|
7116
7135
|
|
7136
|
+
// art : 2016-03-24 UK Creative Ideas Limited
|
7137
|
+
art
|
7138
|
+
|
7117
7139
|
// arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E.
|
7118
7140
|
arte
|
7119
7141
|
|
@@ -7231,6 +7253,9 @@ bcn
|
|
7231
7253
|
// beats : 2015-05-14 Beats Electronics, LLC
|
7232
7254
|
beats
|
7233
7255
|
|
7256
|
+
// beauty : 2015-12-03 L'Oréal
|
7257
|
+
beauty
|
7258
|
+
|
7234
7259
|
// beer : 2014-01-09 Top Level Domain Holdings Limited
|
7235
7260
|
beer
|
7236
7261
|
|
@@ -7336,12 +7361,18 @@ bosch
|
|
7336
7361
|
// bostik : 2015-05-28 Bostik SA
|
7337
7362
|
bostik
|
7338
7363
|
|
7364
|
+
// boston : 2015-12-10 Boston Globe Media Partners, LLC
|
7365
|
+
boston
|
7366
|
+
|
7339
7367
|
// bot : 2014-12-18 Amazon EU S.à r.l.
|
7340
7368
|
bot
|
7341
7369
|
|
7342
7370
|
// boutique : 2013-11-14 Over Galley, LLC
|
7343
7371
|
boutique
|
7344
7372
|
|
7373
|
+
// box : 2015-11-12 NS1 Limited
|
7374
|
+
box
|
7375
|
+
|
7345
7376
|
// bradesco : 2014-12-18 Banco Bradesco S.A.
|
7346
7377
|
bradesco
|
7347
7378
|
|
@@ -7672,6 +7703,9 @@ crown
|
|
7672
7703
|
// crs : 2014-04-03 Federated Co-operatives Limited
|
7673
7704
|
crs
|
7674
7705
|
|
7706
|
+
// cruise : 2015-12-10 Viking River Cruises (Bermuda) Ltd.
|
7707
|
+
cruise
|
7708
|
+
|
7675
7709
|
// cruises : 2013-12-05 Spring Way, LLC
|
7676
7710
|
cruises
|
7677
7711
|
|
@@ -7804,9 +7838,6 @@ doha
|
|
7804
7838
|
// domains : 2013-10-17 Sugar Cross, LLC
|
7805
7839
|
domains
|
7806
7840
|
|
7807
|
-
// doosan : 2014-04-03 Doosan Corporation
|
7808
|
-
doosan
|
7809
|
-
|
7810
7841
|
// dot : 2015-05-21 Dish DBS Corporation
|
7811
7842
|
dot
|
7812
7843
|
|
@@ -8068,6 +8099,9 @@ foundation
|
|
8068
8099
|
// fox : 2015-09-11 FOX Registry, LLC
|
8069
8100
|
fox
|
8070
8101
|
|
8102
|
+
// free : 2015-12-10 Amazon EU S.à r.l.
|
8103
|
+
free
|
8104
|
+
|
8071
8105
|
// fresenius : 2015-07-30 Fresenius Immobilien-Verwaltungs-GmbH
|
8072
8106
|
fresenius
|
8073
8107
|
|
@@ -8092,6 +8126,9 @@ fujitsu
|
|
8092
8126
|
// fujixerox : 2015-07-23 Xerox DNHC LLC
|
8093
8127
|
fujixerox
|
8094
8128
|
|
8129
|
+
// fun : 2016-01-14 Oriental Trading Company, Inc.
|
8130
|
+
fun
|
8131
|
+
|
8095
8132
|
// fund : 2014-03-20 John Castle, LLC
|
8096
8133
|
fund
|
8097
8134
|
|
@@ -8179,6 +8216,9 @@ globo
|
|
8179
8216
|
// gmail : 2014-05-01 Charleston Road Registry Inc.
|
8180
8217
|
gmail
|
8181
8218
|
|
8219
|
+
// gmbh : 2016-01-29 Extra Dynamite, LLC
|
8220
|
+
gmbh
|
8221
|
+
|
8182
8222
|
// gmo : 2014-01-09 GMO Internet, Inc.
|
8183
8223
|
gmo
|
8184
8224
|
|
@@ -8257,6 +8297,9 @@ guitars
|
|
8257
8297
|
// guru : 2013-08-27 Pioneer Cypress, LLC
|
8258
8298
|
guru
|
8259
8299
|
|
8300
|
+
// hair : 2015-12-03 L'Oréal
|
8301
|
+
hair
|
8302
|
+
|
8260
8303
|
// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH
|
8261
8304
|
hamburg
|
8262
8305
|
|
@@ -8305,7 +8348,7 @@ hisamitsu
|
|
8305
8348
|
// hitachi : 2014-10-31 Hitachi, Ltd.
|
8306
8349
|
hitachi
|
8307
8350
|
|
8308
|
-
// hiv : 2014-03-13
|
8351
|
+
// hiv : 2014-03-13
|
8309
8352
|
hiv
|
8310
8353
|
|
8311
8354
|
// hkt : 2015-05-14 PCCW-HKT DataCom Services Limited
|
@@ -9310,7 +9353,7 @@ prof
|
|
9310
9353
|
// progressive : 2015-07-23 Progressive Casualty Insurance Company
|
9311
9354
|
progressive
|
9312
9355
|
|
9313
|
-
// promo : 2014-12-18
|
9356
|
+
// promo : 2014-12-18
|
9314
9357
|
promo
|
9315
9358
|
|
9316
9359
|
// properties : 2013-12-05 Big Pass, LLC
|
@@ -9445,6 +9488,9 @@ rio
|
|
9445
9488
|
// rip : 2014-07-10 United TLD Holdco Ltd.
|
9446
9489
|
rip
|
9447
9490
|
|
9491
|
+
// rmit : 2015-11-19 Royal Melbourne Institute of Technology
|
9492
|
+
rmit
|
9493
|
+
|
9448
9494
|
// rocher : 2014-12-18 Ferrero Trading Lux S.A.
|
9449
9495
|
rocher
|
9450
9496
|
|
@@ -9628,6 +9674,9 @@ shiksha
|
|
9628
9674
|
// shoes : 2013-10-02 Binky Galley, LLC
|
9629
9675
|
shoes
|
9630
9676
|
|
9677
|
+
// shopping : 2016-03-31 Uniregistry, Corp.
|
9678
|
+
shopping
|
9679
|
+
|
9631
9680
|
// shouji : 2015-01-08 QIHOO 360 TECHNOLOGY CO. LTD.
|
9632
9681
|
shouji
|
9633
9682
|
|
@@ -9760,6 +9809,9 @@ storage
|
|
9760
9809
|
// store : 2015-04-09 DotStore Inc.
|
9761
9810
|
store
|
9762
9811
|
|
9812
|
+
// stream : 2016-01-08 dot Stream Limited
|
9813
|
+
stream
|
9814
|
+
|
9763
9815
|
// studio : 2015-02-11
|
9764
9816
|
studio
|
9765
9817
|
|
@@ -10087,6 +10139,9 @@ vodka
|
|
10087
10139
|
// volkswagen : 2015-05-14 Volkswagen Group of America Inc.
|
10088
10140
|
volkswagen
|
10089
10141
|
|
10142
|
+
// volvo : 2015-11-12 Volvo Holding Sverige Aktiebolag
|
10143
|
+
volvo
|
10144
|
+
|
10090
10145
|
// vote : 2013-11-21 Monolith Registry LLC
|
10091
10146
|
vote
|
10092
10147
|
|
@@ -10432,6 +10487,9 @@ xin
|
|
10432
10487
|
// xn--ngbe9e0a : 2014-12-04 Kuwait Finance House
|
10433
10488
|
بيتك
|
10434
10489
|
|
10490
|
+
// xn--ngbrx : 2015-11-12 League of Arab States
|
10491
|
+
عرب
|
10492
|
+
|
10435
10493
|
// xn--nqv7f : 2013-11-14 Public Interest Registry
|
10436
10494
|
机构
|
10437
10495
|
|
@@ -10563,21 +10621,27 @@ zuerich
|
|
10563
10621
|
// ===BEGIN PRIVATE DOMAINS===
|
10564
10622
|
// (Note: these are in alphabetical order by company name)
|
10565
10623
|
|
10624
|
+
// Alces Software Ltd : http://alces-software.com
|
10625
|
+
// Submitted by Mark J. Titorenko <mark.titorenko@alces-software.com>
|
10626
|
+
*.compute.estate
|
10627
|
+
*.alces.network
|
10628
|
+
|
10566
10629
|
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
|
10567
|
-
// Submitted by Donavan Miller <donavanm@amazon.com>
|
10630
|
+
// Submitted by Donavan Miller <donavanm@amazon.com>
|
10568
10631
|
cloudfront.net
|
10569
10632
|
|
10570
10633
|
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
10571
|
-
// Submitted by
|
10634
|
+
// Submitted by Luke Wells <lawells@amazon.com>
|
10572
10635
|
ap-northeast-1.compute.amazonaws.com
|
10636
|
+
ap-northeast-2.compute.amazonaws.com
|
10573
10637
|
ap-southeast-1.compute.amazonaws.com
|
10574
10638
|
ap-southeast-2.compute.amazonaws.com
|
10575
10639
|
cn-north-1.compute.amazonaws.cn
|
10640
|
+
compute-1.amazonaws.com
|
10576
10641
|
compute.amazonaws.cn
|
10577
10642
|
compute.amazonaws.com
|
10578
|
-
compute-1.amazonaws.com
|
10579
|
-
eu-west-1.compute.amazonaws.com
|
10580
10643
|
eu-central-1.compute.amazonaws.com
|
10644
|
+
eu-west-1.compute.amazonaws.com
|
10581
10645
|
sa-east-1.compute.amazonaws.com
|
10582
10646
|
us-east-1.amazonaws.com
|
10583
10647
|
us-gov-west-1.compute.amazonaws.com
|
@@ -10587,37 +10651,47 @@ z-1.compute-1.amazonaws.com
|
|
10587
10651
|
z-2.compute-1.amazonaws.com
|
10588
10652
|
|
10589
10653
|
// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
|
10590
|
-
// Submitted by Adam Stein <astein@amazon.com>
|
10654
|
+
// Submitted by Adam Stein <astein@amazon.com>
|
10591
10655
|
elasticbeanstalk.com
|
10592
10656
|
|
10593
10657
|
// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
|
10594
|
-
// Submitted by Scott Vidmar <svidmar@amazon.com>
|
10658
|
+
// Submitted by Scott Vidmar <svidmar@amazon.com>
|
10595
10659
|
elb.amazonaws.com
|
10596
10660
|
|
10597
10661
|
// Amazon S3 : https://aws.amazon.com/s3/
|
10598
|
-
// Submitted by
|
10662
|
+
// Submitted by Luke Wells <lawells@amazon.com>
|
10599
10663
|
s3.amazonaws.com
|
10600
10664
|
s3-ap-northeast-1.amazonaws.com
|
10665
|
+
s3-ap-northeast-2.amazonaws.com
|
10601
10666
|
s3-ap-southeast-1.amazonaws.com
|
10602
10667
|
s3-ap-southeast-2.amazonaws.com
|
10668
|
+
s3-eu-central-1.amazonaws.com
|
10669
|
+
s3-eu-west-1.amazonaws.com
|
10603
10670
|
s3-external-1.amazonaws.com
|
10604
10671
|
s3-external-2.amazonaws.com
|
10605
10672
|
s3-fips-us-gov-west-1.amazonaws.com
|
10606
|
-
s3-eu-central-1.amazonaws.com
|
10607
|
-
s3-eu-west-1.amazonaws.com
|
10608
10673
|
s3-sa-east-1.amazonaws.com
|
10609
10674
|
s3-us-gov-west-1.amazonaws.com
|
10610
10675
|
s3-us-west-1.amazonaws.com
|
10611
10676
|
s3-us-west-2.amazonaws.com
|
10677
|
+
s3.ap-northeast-2.amazonaws.com
|
10612
10678
|
s3.cn-north-1.amazonaws.com.cn
|
10613
10679
|
s3.eu-central-1.amazonaws.com
|
10614
10680
|
|
10681
|
+
// Aptible : https://www.aptible.com/
|
10682
|
+
// Submitted by Thomas Orozco <thomas@aptible.com>
|
10683
|
+
on-aptible.com
|
10684
|
+
|
10685
|
+
// AVM : https://avm.de
|
10686
|
+
// Submitted by Andreas Weise <a.weise@avm.de>
|
10687
|
+
myfritz.net
|
10688
|
+
|
10615
10689
|
// BetaInABox
|
10616
|
-
// Submitted by adrian@betainabox.com
|
10690
|
+
// Submitted by Adrian <adrian@betainabox.com>
|
10617
10691
|
betainabox.com
|
10618
10692
|
|
10619
10693
|
// CentralNic : http://www.centralnic.com/names/domains
|
10620
|
-
// Submitted by registry <gavin.brown@centralnic.com>
|
10694
|
+
// Submitted by registry <gavin.brown@centralnic.com>
|
10621
10695
|
ae.org
|
10622
10696
|
ar.com
|
10623
10697
|
br.com
|
@@ -10648,38 +10722,46 @@ za.bz
|
|
10648
10722
|
za.com
|
10649
10723
|
|
10650
10724
|
// Africa.com Web Solutions Ltd : https://registry.africa.com
|
10651
|
-
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10725
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10652
10726
|
africa.com
|
10653
10727
|
|
10654
10728
|
// iDOT Services Limited : http://www.domain.gr.com
|
10655
|
-
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10729
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10656
10730
|
gr.com
|
10657
10731
|
|
10658
10732
|
// Radix FZC : http://domains.in.net
|
10659
|
-
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10733
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10660
10734
|
in.net
|
10661
10735
|
|
10662
10736
|
// US REGISTRY LLC : http://us.org
|
10663
|
-
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10737
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10664
10738
|
us.org
|
10665
10739
|
|
10666
10740
|
// co.com Registry, LLC : https://registry.co.com
|
10667
|
-
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10741
|
+
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
10668
10742
|
co.com
|
10669
10743
|
|
10670
10744
|
// c.la : http://www.c.la/
|
10671
10745
|
c.la
|
10672
10746
|
|
10747
|
+
// Citrix : https://citrix.com
|
10748
|
+
// Submitted by Alex Stoddard <alex.stoddard@citrix.com>
|
10749
|
+
xenapponazure.com
|
10750
|
+
|
10673
10751
|
// cloudControl : https://www.cloudcontrol.com/
|
10674
|
-
// Submitted by Tobias Wilken <tw@cloudcontrol.com>
|
10752
|
+
// Submitted by Tobias Wilken <tw@cloudcontrol.com>
|
10675
10753
|
cloudcontrolled.com
|
10676
10754
|
cloudcontrolapp.com
|
10677
10755
|
|
10678
10756
|
// co.ca : http://registry.co.ca/
|
10679
10757
|
co.ca
|
10680
10758
|
|
10759
|
+
// i-registry s.r.o. : http://www.i-registry.cz/
|
10760
|
+
// Submitted by Martin Semrad <semrad@i-registry.cz>
|
10761
|
+
co.cz
|
10762
|
+
|
10681
10763
|
// CDN77.com : http://www.cdn77.com
|
10682
|
-
// Submitted by Jan Krpes <jan.krpes@cdn77.com>
|
10764
|
+
// Submitted by Jan Krpes <jan.krpes@cdn77.com>
|
10683
10765
|
c.cdn77.org
|
10684
10766
|
cdn77-ssl.net
|
10685
10767
|
r.cdn77.net
|
@@ -10691,19 +10773,44 @@ co.nl
|
|
10691
10773
|
co.no
|
10692
10774
|
|
10693
10775
|
// Commerce Guys, SAS
|
10694
|
-
// Submitted by Damien Tournoud <damien@commerceguys.com>
|
10776
|
+
// Submitted by Damien Tournoud <damien@commerceguys.com>
|
10695
10777
|
*.platform.sh
|
10696
10778
|
|
10697
10779
|
// Cupcake : https://cupcake.io/
|
10698
|
-
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
10780
|
+
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
10699
10781
|
cupcake.is
|
10700
10782
|
|
10783
|
+
// cyon GmbH : https://www.cyon.ch/
|
10784
|
+
// Submitted by Dominic Luechinger <dol@cyon.ch>
|
10785
|
+
cyon.link
|
10786
|
+
cyon.site
|
10787
|
+
|
10788
|
+
// Daplie, Inc : https://daplie.com
|
10789
|
+
// Submitted by AJ ONeal <aj@daplie.com>
|
10790
|
+
daplie.me
|
10791
|
+
|
10792
|
+
// Dansk.net : http://www.dansk.net/
|
10793
|
+
// Submitted by Anani Voule <digital@digital.co.dk>
|
10794
|
+
biz.dk
|
10795
|
+
co.dk
|
10796
|
+
firm.dk
|
10797
|
+
reg.dk
|
10798
|
+
store.dk
|
10799
|
+
|
10800
|
+
// deSEC : https://desec.io/
|
10801
|
+
// Submitted by Peter Thomassen <peter@desec.io>
|
10802
|
+
dedyn.io
|
10803
|
+
|
10701
10804
|
// DreamHost : http://www.dreamhost.com/
|
10702
|
-
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com>
|
10805
|
+
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com>
|
10703
10806
|
dreamhosters.com
|
10704
10807
|
|
10808
|
+
// Drobo : http://www.drobo.com/
|
10809
|
+
// Submitted by Ricardo Padilha <rpadilha@drobo.com>
|
10810
|
+
mydrobo.com
|
10811
|
+
|
10705
10812
|
// DuckDNS : http://www.duckdns.org/
|
10706
|
-
// Submitted by Richard Harper <richard@duckdns.org>
|
10813
|
+
// Submitted by Richard Harper <richard@duckdns.org>
|
10707
10814
|
duckdns.org
|
10708
10815
|
|
10709
10816
|
// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
|
@@ -10987,9 +11094,12 @@ webhop.org
|
|
10987
11094
|
worse-than.tv
|
10988
11095
|
writesthisblog.com
|
10989
11096
|
|
10990
|
-
//
|
10991
|
-
// Submitted by
|
11097
|
+
// dynv6 : https://dynv6.com
|
11098
|
+
// Submitted by Dominik Menke <dom@digineo.de> 2016-01-18
|
11099
|
+
dynv6.net
|
10992
11100
|
|
11101
|
+
// EU.org https://eu.org/
|
11102
|
+
// Submitted by Pierre Beyssac <hostmaster@eu.org>
|
10993
11103
|
eu.org
|
10994
11104
|
al.eu.org
|
10995
11105
|
asso.eu.org
|
@@ -11047,8 +11157,12 @@ tr.eu.org
|
|
11047
11157
|
uk.eu.org
|
11048
11158
|
us.eu.org
|
11049
11159
|
|
11160
|
+
// Facebook, Inc.
|
11161
|
+
// Submitted by Peter Ruibal <public-suffix@fb.com>
|
11162
|
+
apps.fbsbx.com
|
11163
|
+
|
11050
11164
|
// Fastly Inc. http://www.fastly.com/
|
11051
|
-
// Submitted by Vladimir Vuksan <vladimir@fastly.com>
|
11165
|
+
// Submitted by Vladimir Vuksan <vladimir@fastly.com>
|
11052
11166
|
a.ssl.fastly.net
|
11053
11167
|
b.ssl.fastly.net
|
11054
11168
|
global.ssl.fastly.net
|
@@ -11056,28 +11170,38 @@ a.prod.fastly.net
|
|
11056
11170
|
global.prod.fastly.net
|
11057
11171
|
|
11058
11172
|
// Firebase, Inc.
|
11059
|
-
// Submitted by Chris Raynor <chris@firebase.com>
|
11173
|
+
// Submitted by Chris Raynor <chris@firebase.com>
|
11060
11174
|
firebaseapp.com
|
11061
11175
|
|
11062
11176
|
// Flynn : https://flynn.io
|
11063
|
-
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
11177
|
+
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
11064
11178
|
flynnhub.com
|
11065
11179
|
|
11066
11180
|
// GDS : https://www.gov.uk/service-manual/operations/operating-servicegovuk-subdomains
|
11067
|
-
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
|
11181
|
+
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
|
11068
11182
|
service.gov.uk
|
11069
11183
|
|
11070
11184
|
// GitHub, Inc.
|
11071
|
-
// Submitted by
|
11185
|
+
// Submitted by Patrick Toomey <security@github.com>
|
11072
11186
|
github.io
|
11073
11187
|
githubusercontent.com
|
11188
|
+
githubcloud.com
|
11189
|
+
*.api.githubcloud.com
|
11190
|
+
*.ext.githubcloud.com
|
11191
|
+
gist.githubcloud.com
|
11192
|
+
*.githubcloudusercontent.com
|
11074
11193
|
|
11075
11194
|
// GlobeHosting, Inc.
|
11076
|
-
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
11195
|
+
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
11077
11196
|
ro.com
|
11078
11197
|
|
11198
|
+
// GoIP DNS Services : http://www.goip.de
|
11199
|
+
// Submitted by Christian Poulter <milchstrasse@goip.de>
|
11200
|
+
goip.de
|
11201
|
+
|
11079
11202
|
// Google, Inc.
|
11080
|
-
// Submitted by Eduardo Vela <evn@google.com>
|
11203
|
+
// Submitted by Eduardo Vela <evn@google.com>
|
11204
|
+
*.0emm.com
|
11081
11205
|
appspot.com
|
11082
11206
|
blogspot.ae
|
11083
11207
|
blogspot.al
|
@@ -11153,6 +11277,7 @@ blogspot.td
|
|
11153
11277
|
blogspot.tw
|
11154
11278
|
blogspot.ug
|
11155
11279
|
blogspot.vn
|
11280
|
+
cloudfunctions.net
|
11156
11281
|
codespot.com
|
11157
11282
|
googleapis.com
|
11158
11283
|
googlecode.com
|
@@ -11160,13 +11285,16 @@ pagespeedmobilizer.com
|
|
11160
11285
|
withgoogle.com
|
11161
11286
|
withyoutube.com
|
11162
11287
|
|
11288
|
+
// Hashbang : https://hashbang.sh
|
11289
|
+
hashbang.sh
|
11290
|
+
|
11163
11291
|
// Heroku : https://www.heroku.com/
|
11164
|
-
// Submitted by Tom Maher <tmaher@heroku.com>
|
11292
|
+
// Submitted by Tom Maher <tmaher@heroku.com>
|
11165
11293
|
herokuapp.com
|
11166
11294
|
herokussl.com
|
11167
11295
|
|
11168
11296
|
// iki.fi
|
11169
|
-
// Submitted by Hannu Aronsson <haa@iki.fi>
|
11297
|
+
// Submitted by Hannu Aronsson <haa@iki.fi>
|
11170
11298
|
iki.fi
|
11171
11299
|
|
11172
11300
|
// info.at : http://www.info.at/
|
@@ -11177,43 +11305,55 @@ info.at
|
|
11177
11305
|
co.pl
|
11178
11306
|
|
11179
11307
|
// Microsoft : http://microsoft.com
|
11180
|
-
// Submitted by Barry Dorrans <bdorrans@microsoft.com>
|
11308
|
+
// Submitted by Barry Dorrans <bdorrans@microsoft.com>
|
11181
11309
|
azurewebsites.net
|
11182
11310
|
azure-mobile.net
|
11183
11311
|
cloudapp.net
|
11184
11312
|
|
11185
11313
|
// Mozilla Foundation : https://mozilla.org/
|
11186
|
-
//
|
11314
|
+
// Submitted by glob <glob@mozilla.com>
|
11187
11315
|
bmoattachments.org
|
11188
11316
|
|
11189
11317
|
// Neustar Inc.
|
11190
|
-
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
11318
|
+
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
11191
11319
|
4u.com
|
11192
11320
|
|
11193
11321
|
// ngrok : https://ngrok.com/
|
11194
|
-
// Submitted by Alan Shreve <alan@ngrok.com>
|
11322
|
+
// Submitted by Alan Shreve <alan@ngrok.com>
|
11195
11323
|
ngrok.io
|
11196
11324
|
|
11197
11325
|
// NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
|
11198
|
-
// Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net>
|
11326
|
+
// Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net>
|
11199
11327
|
nfshost.com
|
11200
11328
|
|
11329
|
+
// nsupdate.info : https://www.nsupdate.info/
|
11330
|
+
// Submitted by Thomas Waldmann <info@nsupdate.info>
|
11331
|
+
nsupdate.info
|
11332
|
+
|
11201
11333
|
// NYC.mn : http://www.information.nyc.mn
|
11202
|
-
// Submitted by Matthew Brown <mattbrown@nyc.mn>
|
11334
|
+
// Submitted by Matthew Brown <mattbrown@nyc.mn>
|
11203
11335
|
nyc.mn
|
11204
11336
|
|
11205
11337
|
// One Fold Media : http://www.onefoldmedia.com/
|
11206
|
-
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
11338
|
+
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
11207
11339
|
nid.io
|
11208
11340
|
|
11209
11341
|
// Opera Software, A.S.A.
|
11210
|
-
// Submitted by Yngve Pettersen <yngve@opera.com>
|
11342
|
+
// Submitted by Yngve Pettersen <yngve@opera.com>
|
11211
11343
|
operaunite.com
|
11212
11344
|
|
11213
11345
|
// OutSystems
|
11214
|
-
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
|
11346
|
+
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
|
11215
11347
|
outsystemscloud.com
|
11216
11348
|
|
11349
|
+
// oy.lc
|
11350
|
+
// Submitted by Charly Coste <changaco@changaco.oy.lc>
|
11351
|
+
oy.lc
|
11352
|
+
|
11353
|
+
// Pagefront : https://www.pagefronthq.com/
|
11354
|
+
// Submitted by Jason Kriss <jason@pagefronthq.com>
|
11355
|
+
pagefrontapp.com
|
11356
|
+
|
11217
11357
|
// .pl domains (grandfathered)
|
11218
11358
|
art.pl
|
11219
11359
|
gliwice.pl
|
@@ -11223,38 +11363,75 @@ wroc.pl
|
|
11223
11363
|
zakopane.pl
|
11224
11364
|
|
11225
11365
|
// Pantheon Systems, Inc. : https://pantheon.io/
|
11226
|
-
// Submitted by Gary Dylina <gary@pantheon.io>
|
11227
|
-
|
11366
|
+
// Submitted by Gary Dylina <gary@pantheon.io>
|
11367
|
+
pantheonsite.io
|
11228
11368
|
gotpantheon.com
|
11229
11369
|
|
11370
|
+
// Peplink | Pepwave : http://peplink.com/
|
11371
|
+
// Submitted by Steve Leung <steveleung@peplink.com>
|
11372
|
+
mypep.link
|
11373
|
+
|
11374
|
+
// prgmr.com : https://prgmr.com/
|
11375
|
+
// Submitted by Sarah Newman <owner@prgmr.com>
|
11376
|
+
xen.prgmr.com
|
11377
|
+
|
11230
11378
|
// priv.at : http://www.nic.priv.at/
|
11231
|
-
// Submitted by registry <lendl@nic.at>
|
11379
|
+
// Submitted by registry <lendl@nic.at>
|
11232
11380
|
priv.at
|
11233
11381
|
|
11382
|
+
// Publication Presse Communication SARL : https://ppcom.fr
|
11383
|
+
// Submitted by Yaacov Akiba Slama <admin@chirurgiens-dentistes-en-france.fr>
|
11384
|
+
chirurgiens-dentistes-en-france.fr
|
11385
|
+
|
11234
11386
|
// QA2
|
11235
|
-
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
11387
|
+
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
11236
11388
|
qa2.com
|
11237
11389
|
|
11390
|
+
// Rackmaze LLC : https://www.rackmaze.com
|
11391
|
+
// Submitted by Kirill Pertsev <kika@rackmaze.com>
|
11392
|
+
rackmaze.com
|
11393
|
+
rackmaze.net
|
11394
|
+
|
11238
11395
|
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
|
11239
|
-
// Submitted by Tim Kramer <tkramer@rhcloud.com>
|
11396
|
+
// Submitted by Tim Kramer <tkramer@rhcloud.com>
|
11240
11397
|
rhcloud.com
|
11241
11398
|
|
11399
|
+
// RethinkDB : https://www.rethinkdb.com/
|
11400
|
+
// Submitted by Chris Kastorff <info@rethinkdb.com>
|
11401
|
+
hzc.io
|
11402
|
+
|
11242
11403
|
// Sandstorm Development Group, Inc. : https://sandcats.io/
|
11243
|
-
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
11404
|
+
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
11244
11405
|
sandcats.io
|
11245
11406
|
|
11246
11407
|
// Service Online LLC : http://drs.ua/
|
11247
|
-
// Submitted by Serhii Bulakh <support@drs.ua>
|
11408
|
+
// Submitted by Serhii Bulakh <support@drs.ua>
|
11248
11409
|
biz.ua
|
11249
11410
|
co.ua
|
11250
11411
|
pp.ua
|
11251
11412
|
|
11252
11413
|
// SinaAppEngine : http://sae.sina.com.cn/
|
11253
|
-
// Submitted by SinaAppEngine <saesupport@sinacloud.com>
|
11414
|
+
// Submitted by SinaAppEngine <saesupport@sinacloud.com>
|
11254
11415
|
sinaapp.com
|
11255
11416
|
vipsinaapp.com
|
11256
11417
|
1kapp.com
|
11257
11418
|
|
11419
|
+
// Synology, Inc. : https://www.synology.com/
|
11420
|
+
// Submitted by Rony Weng <ronyweng@synology.com>
|
11421
|
+
diskstation.me
|
11422
|
+
dscloud.biz
|
11423
|
+
dscloud.me
|
11424
|
+
dscloud.mobi
|
11425
|
+
dsmynas.com
|
11426
|
+
dsmynas.net
|
11427
|
+
dsmynas.org
|
11428
|
+
familyds.com
|
11429
|
+
familyds.net
|
11430
|
+
familyds.org
|
11431
|
+
i234.me
|
11432
|
+
myds.me
|
11433
|
+
synology.me
|
11434
|
+
|
11258
11435
|
// TASK geographical domains (www.task.gda.pl/uslugi/dns)
|
11259
11436
|
gda.pl
|
11260
11437
|
gdansk.pl
|
@@ -11262,19 +11439,28 @@ gdynia.pl
|
|
11262
11439
|
med.pl
|
11263
11440
|
sopot.pl
|
11264
11441
|
|
11442
|
+
// TownNews.com domains : http://www.townnews.com
|
11443
|
+
// Submitted by Dustin Ward <dward@townnews.com>
|
11444
|
+
bloxcms.com
|
11445
|
+
townnews-staging.com
|
11446
|
+
|
11265
11447
|
// UDR Limited : http://www.udr.hk.com
|
11266
|
-
// Submitted by registry <hostmaster@udr.hk.com>
|
11448
|
+
// Submitted by registry <hostmaster@udr.hk.com>
|
11267
11449
|
hk.com
|
11268
11450
|
hk.org
|
11269
11451
|
ltd.hk
|
11270
11452
|
inc.hk
|
11271
11453
|
|
11454
|
+
// Viprinet Europe GmbH : http://www.viprinet.com
|
11455
|
+
// Submitted by Simon Kissel <hostmaster@viprinet.com>
|
11456
|
+
router.management
|
11457
|
+
|
11272
11458
|
// Yola : https://www.yola.com/
|
11273
|
-
// Submitted by Stefano Rivera <stefano@yola.com>
|
11459
|
+
// Submitted by Stefano Rivera <stefano@yola.com>
|
11274
11460
|
yolasite.com
|
11275
11461
|
|
11276
11462
|
// ZaNiC : http://www.za.net/
|
11277
|
-
// Submitted by registry <hostmaster@nic.za.net>
|
11463
|
+
// Submitted by registry <hostmaster@nic.za.net>
|
11278
11464
|
za.net
|
11279
11465
|
za.org
|
11280
11466
|
|