domainatrix 0.0.1

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.
data/README.textile ADDED
@@ -0,0 +1,63 @@
1
+ h1. Domainatrix
2
+
3
+ "http://github.com/pauldix/domainatrix":http://github.com/pauldix/domainatrix
4
+
5
+ h2. Summary
6
+
7
+ A cruel mistress that uses the public suffix domain list to dominate URLs by canonicalizing, finding TLDs, and breaking them into their domain parts.
8
+
9
+ h2. Description
10
+
11
+ This simple library can parse a URL into its canonical form. It uses the list of domains from "http://publicsuffix.org":http://publicsuffix.org to break the domain into its tld, domain, and subdomain.
12
+
13
+ h2. Installation
14
+
15
+ <pre>
16
+ gem install domainatrix --source http://gemcutter.org
17
+ </pre>
18
+
19
+ h2. Use
20
+
21
+ <pre>
22
+ require 'rubygems'
23
+ require 'domainatrix'
24
+
25
+ url = Domainatrix.parse("http://www.pauldix.net")
26
+ url.tld # => "net"
27
+ url.domain # => "pauldix"
28
+ url.canonical # => "net.pauldix"
29
+
30
+ url = Domainatrix.parse("http://foo.bar.pauldix.co.uk/asdf.html?q=arg")
31
+ url.tld # => "co.uk"
32
+ url.domain # => "pauldix"
33
+ url.subdomain # => "foo.bar"
34
+ url.path # => "/asdf.html?q=arg"
35
+ url.canonical # => "uk.co.pauldix.bar.foo/asdf.html?q=arg"
36
+ </pre>
37
+
38
+ h2. LICENSE
39
+
40
+ (The MIT License)
41
+
42
+ Copyright (c) 2009:
43
+
44
+ "Paul Dix":http://pauldix.net
45
+
46
+ Permission is hereby granted, free of charge, to any person obtaining
47
+ a copy of this software and associated documentation files (the
48
+ 'Software'), to deal in the Software without restriction, including
49
+ without limitation the rights to use, copy, modify, merge, publish,
50
+ distribute, sublicense, and/or sell copies of the Software, and to
51
+ permit persons to whom the Software is furnished to do so, subject to
52
+ the following conditions:
53
+
54
+ The above copyright notice and this permission notice shall be
55
+ included in all copies or substantial portions of the Software.
56
+
57
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
58
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
59
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
60
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
61
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
62
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
63
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,13 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__)) unless $LOAD_PATH.include?(File.dirname(__FILE__))
2
+
3
+ require 'domainatrix/domain_parser.rb'
4
+ require 'domainatrix/url.rb'
5
+
6
+ module Domainatrix
7
+ VERSION = "0.0.1"
8
+
9
+ def self.parse(url)
10
+ @domain_parser ||= DomainParser.new("#{File.dirname(__FILE__)}/effective_tld_names.dat")
11
+ Url.new(@domain_parser.parse(url))
12
+ end
13
+ end
@@ -0,0 +1,63 @@
1
+ module Domainatrix
2
+ class DomainParser
3
+ attr_reader :tlds
4
+
5
+ def initialize(file_name)
6
+ @tlds = {}
7
+ read_dat_file(file_name)
8
+ end
9
+
10
+ def read_dat_file(file_name)
11
+ File.readlines(file_name).each do |line|
12
+ line = line.strip
13
+ unless line.start_with? "//" || line.empty?
14
+ parts = line.split(".").reverse
15
+
16
+ sub_hash = @tlds
17
+ parts.each do |part|
18
+ sub_hash = (sub_hash[part] ||= {})
19
+ end
20
+ end
21
+ end
22
+ end
23
+
24
+ def parse(url)
25
+ uri = URI.parse(url)
26
+ if uri.query
27
+ path = "#{uri.path}?#{uri.query}"
28
+ else
29
+ path = uri.path
30
+ end
31
+ parse_domains_from_host(uri.host).merge({:path => path})
32
+ end
33
+
34
+ def parse_domains_from_host(host)
35
+ parts = host.split(".").reverse
36
+ tld = []
37
+ domain = ""
38
+ subdomains = []
39
+ sub_hash = @tlds
40
+ parts.each_index do |i|
41
+ part = parts[i]
42
+
43
+ sub_parts = sub_hash[part]
44
+ sub_hash = sub_parts
45
+ if sub_parts.has_key? "*"
46
+ tld << part
47
+ tld << parts[i+1]
48
+ domain = parts[i+2]
49
+ subdomains = parts.slice(i+3, parts.size)
50
+ break
51
+ elsif sub_parts.empty? || !sub_parts.has_key?(parts[i+1])
52
+ tld << part
53
+ domain = parts[i+1]
54
+ subdomains = parts.slice(i+2, parts.size)
55
+ break
56
+ else
57
+ tld << part
58
+ end
59
+ end
60
+ {:tld => tld.reverse.join("."), :domain => domain, :subdomain => subdomains.reverse.join(".")}
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,24 @@
1
+ module Domainatrix
2
+ class Url
3
+ attr_reader :tld, :domain, :subdomain, :path
4
+
5
+ def initialize(attrs = {})
6
+ @tld = attrs[:tld]
7
+ @domain = attrs[:domain]
8
+ @subdomain = attrs[:subdomain]
9
+ @path = attrs[:path]
10
+ end
11
+
12
+ def canonical(options = {})
13
+ tld_parts = @tld.split(".")
14
+ url = "#{tld_parts.reverse.join(".")}.#{@domain}"
15
+ if @subdomain && !@subdomain.empty?
16
+ subdomain_parts = @subdomain.split(".")
17
+ url << ".#{subdomain_parts.reverse.join(".")}"
18
+ end
19
+ url << @path if @path
20
+
21
+ url
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,4362 @@
1
+ // ***** BEGIN LICENSE BLOCK *****
2
+ // Version: MPL 1.1/GPL 2.0/LGPL 2.1
3
+ //
4
+ // The contents of this file are subject to the Mozilla Public License Version
5
+ // 1.1 (the "License"); you may not use this file except in compliance with
6
+ // the License. You may obtain a copy of the License at
7
+ // http://www.mozilla.org/MPL/
8
+ //
9
+ // Software distributed under the License is distributed on an "AS IS" basis,
10
+ // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11
+ // for the specific language governing rights and limitations under the
12
+ // License.
13
+ //
14
+ // The Original Code is the Public Suffix List.
15
+ //
16
+ // The Initial Developer of the Original Code is
17
+ // Jo Hermans <jo.hermans@gmail.com>.
18
+ // Portions created by the Initial Developer are Copyright (C) 2007
19
+ // the Initial Developer. All Rights Reserved.
20
+ //
21
+ // Contributor(s):
22
+ // Ruben Arakelyan <ruben@wackomenace.co.uk>
23
+ // Gervase Markham <gerv@gerv.net>
24
+ // Pamela Greene <pamg.bugs@gmail.com>
25
+ // David Triendl <david@triendl.name>
26
+ // The kind representatives of many TLD registries
27
+ //
28
+ // Alternatively, the contents of this file may be used under the terms of
29
+ // either the GNU General Public License Version 2 or later (the "GPL"), or
30
+ // the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31
+ // in which case the provisions of the GPL or the LGPL are applicable instead
32
+ // of those above. If you wish to allow use of your version of this file only
33
+ // under the terms of either the GPL or the LGPL, and not to allow others to
34
+ // use your version of this file under the terms of the MPL, indicate your
35
+ // decision by deleting the provisions above and replace them with the notice
36
+ // and other provisions required by the GPL or the LGPL. If you do not delete
37
+ // the provisions above, a recipient may use your version of this file under
38
+ // the terms of any one of the MPL, the GPL or the LGPL.
39
+ //
40
+ // ***** END LICENSE BLOCK *****
41
+
42
+ // ac : http://en.wikipedia.org/wiki/.ac
43
+ ac
44
+ com.ac
45
+ edu.ac
46
+ gov.ac
47
+ net.ac
48
+ mil.ac
49
+ org.ac
50
+
51
+ // ad : http://en.wikipedia.org/wiki/.ad
52
+ ad
53
+ nom.ad
54
+
55
+ // ae : http://en.wikipedia.org/wiki/.ae
56
+ // see also: "Domain Name Eligibility Policy" at http://www.aeda.ae/eng/aepolicy.php
57
+ ae
58
+ co.ae
59
+ net.ae
60
+ org.ae
61
+ sch.ae
62
+ ac.ae
63
+ gov.ae
64
+ mil.ae
65
+
66
+ // aero : see http://www.information.aero/index.php?id=66
67
+ aero
68
+ accident-investigation.aero
69
+ accident-prevention.aero
70
+ aerobatic.aero
71
+ aeroclub.aero
72
+ aerodrome.aero
73
+ agents.aero
74
+ aircraft.aero
75
+ airline.aero
76
+ airport.aero
77
+ air-surveillance.aero
78
+ airtraffic.aero
79
+ air-traffic-control.aero
80
+ ambulance.aero
81
+ amusement.aero
82
+ association.aero
83
+ author.aero
84
+ ballooning.aero
85
+ broker.aero
86
+ caa.aero
87
+ cargo.aero
88
+ catering.aero
89
+ certification.aero
90
+ championship.aero
91
+ charter.aero
92
+ civilaviation.aero
93
+ club.aero
94
+ conference.aero
95
+ consultant.aero
96
+ consulting.aero
97
+ control.aero
98
+ council.aero
99
+ crew.aero
100
+ design.aero
101
+ dgca.aero
102
+ educator.aero
103
+ emergency.aero
104
+ engine.aero
105
+ engineer.aero
106
+ entertainment.aero
107
+ equipment.aero
108
+ exchange.aero
109
+ express.aero
110
+ federation.aero
111
+ flight.aero
112
+ freight.aero
113
+ fuel.aero
114
+ gliding.aero
115
+ government.aero
116
+ groundhandling.aero
117
+ group.aero
118
+ hanggliding.aero
119
+ homebuilt.aero
120
+ insurance.aero
121
+ journal.aero
122
+ journalist.aero
123
+ leasing.aero
124
+ logistics.aero
125
+ magazine.aero
126
+ maintenance.aero
127
+ marketplace.aero
128
+ media.aero
129
+ microlight.aero
130
+ modelling.aero
131
+ navigation.aero
132
+ parachuting.aero
133
+ paragliding.aero
134
+ passenger-association.aero
135
+ pilot.aero
136
+ press.aero
137
+ production.aero
138
+ recreation.aero
139
+ repbody.aero
140
+ res.aero
141
+ research.aero
142
+ rotorcraft.aero
143
+ safety.aero
144
+ scientist.aero
145
+ services.aero
146
+ show.aero
147
+ skydiving.aero
148
+ software.aero
149
+ student.aero
150
+ taxi.aero
151
+ trader.aero
152
+ trading.aero
153
+ trainer.aero
154
+ union.aero
155
+ workinggroup.aero
156
+ works.aero
157
+
158
+ // af : http://www.nic.af/help.jsp
159
+ af
160
+ gov.af
161
+ com.af
162
+ org.af
163
+ net.af
164
+ edu.af
165
+
166
+ // ag : http://www.nic.ag/prices.htm
167
+ ag
168
+ com.ag
169
+ org.ag
170
+ net.ag
171
+ co.ag
172
+ nom.ag
173
+
174
+ // ai : http://nic.com.ai/
175
+ ai
176
+ off.ai
177
+ com.ai
178
+ net.ai
179
+ org.ai
180
+
181
+ // al : http://www.inima.al/Domains.html
182
+ al
183
+ gov.al
184
+ edu.al
185
+ org.al
186
+ com.al
187
+ net.al
188
+
189
+ // am : http://en.wikipedia.org/wiki/.am
190
+ am
191
+
192
+ // an : http://www.una.an/an_domreg/default.asp
193
+ an
194
+ com.an
195
+ net.an
196
+ org.an
197
+ edu.an
198
+
199
+ // ao : http://en.wikipedia.org/wiki/.ao
200
+ // http://www.dns.ao/REGISTR.DOC
201
+ ao
202
+ ed.ao
203
+ gv.ao
204
+ og.ao
205
+ co.ao
206
+ pb.ao
207
+ it.ao
208
+
209
+ // aq : http://en.wikipedia.org/wiki/.aq
210
+ aq
211
+
212
+ // ar : http://en.wikipedia.org/wiki/.ar
213
+ *.ar
214
+ !congresodelalengua3.ar
215
+ !educ.ar
216
+ !gobiernoelectronico.ar
217
+ !mecon.ar
218
+ !nacion.ar
219
+ !nic.ar
220
+ !promocion.ar
221
+ !retina.ar
222
+ !uba.ar
223
+
224
+ // arpa : http://en.wikipedia.org/wiki/.arpa
225
+ // Confirmed by registry <iana-questions@icann.org> 2008-06-18
226
+ e164.arpa
227
+ in-addr.arpa
228
+ ip6.arpa
229
+ uri.arpa
230
+ urn.arpa
231
+
232
+ // as : http://en.wikipedia.org/wiki/.as
233
+ as
234
+ gov.as
235
+
236
+ // asia: http://en.wikipedia.org/wiki/.asia
237
+ asia
238
+
239
+ // at : http://en.wikipedia.org/wiki/.at
240
+ // Confirmed by registry <it@nic.at> 2008-06-17
241
+ at
242
+ gv.at
243
+ ac.at
244
+ co.at
245
+ or.at
246
+
247
+ // priv.at : http://www.nic.priv.at/
248
+ // Submitted by registry <lendl@nic.at> 2008-06-09
249
+ priv.at
250
+
251
+ // au : http://en.wikipedia.org/wiki/.au
252
+ *.au
253
+ // au geographical names (vic.au etc... are covered above)
254
+ act.edu.au
255
+ nsw.edu.au
256
+ nt.edu.au
257
+ qld.edu.au
258
+ sa.edu.au
259
+ tas.edu.au
260
+ vic.edu.au
261
+ wa.edu.au
262
+ act.gov.au
263
+ nsw.gov.au
264
+ nt.gov.au
265
+ qld.gov.au
266
+ sa.gov.au
267
+ tas.gov.au
268
+ vic.gov.au
269
+ wa.gov.au
270
+
271
+ // aw : http://en.wikipedia.org/wiki/.aw
272
+ aw
273
+ com.aw
274
+
275
+ // ax : http://en.wikipedia.org/wiki/.ax
276
+ ax
277
+
278
+ // az : http://en.wikipedia.org/wiki/.az
279
+ az
280
+ com.az
281
+ net.az
282
+ int.az
283
+ gov.az
284
+ org.az
285
+ edu.az
286
+ info.az
287
+ pp.az
288
+ mil.az
289
+ name.az
290
+ pro.az
291
+ biz.az
292
+
293
+ // ba : http://en.wikipedia.org/wiki/.ba
294
+ ba
295
+ org.ba
296
+ net.ba
297
+ edu.ba
298
+ gov.ba
299
+ mil.ba
300
+ unsa.ba
301
+ unbi.ba
302
+ co.ba
303
+ com.ba
304
+ rs.ba
305
+
306
+ // bb : http://en.wikipedia.org/wiki/.bb
307
+ bb
308
+ com.bb
309
+ edu.bb
310
+ gov.bb
311
+ net.bb
312
+ org.bb
313
+
314
+ // bd : http://en.wikipedia.org/wiki/.bd
315
+ *.bd
316
+
317
+ // be : http://en.wikipedia.org/wiki/.be
318
+ // Confirmed by registry <tech@dns.be> 2008-06-08
319
+ be
320
+ ac.be
321
+
322
+ // bf : http://en.wikipedia.org/wiki/.bf
323
+ bf
324
+ gov.bf
325
+
326
+ // bg : http://en.wikipedia.org/wiki/.bg
327
+ // https://www.register.bg/user/static/rules/en/index.html
328
+ bg
329
+ a.bg
330
+ b.bg
331
+ c.bg
332
+ d.bg
333
+ e.bg
334
+ f.bg
335
+ g.bg
336
+ h.bg
337
+ i.bg
338
+ j.bg
339
+ k.bg
340
+ l.bg
341
+ m.bg
342
+ n.bg
343
+ o.bg
344
+ p.bg
345
+ q.bg
346
+ r.bg
347
+ s.bg
348
+ t.bg
349
+ u.bg
350
+ v.bg
351
+ w.bg
352
+ x.bg
353
+ y.bg
354
+ z.bg
355
+ 0.bg
356
+ 1.bg
357
+ 2.bg
358
+ 3.bg
359
+ 4.bg
360
+ 5.bg
361
+ 6.bg
362
+ 7.bg
363
+ 8.bg
364
+ 9.bg
365
+
366
+ // bh : http://en.wikipedia.org/wiki/.bh
367
+ // list of other 2nd level tlds ?
368
+ bh
369
+ com.bh
370
+
371
+ // bi : http://en.wikipedia.org/wiki/.bi
372
+ // http://whois.nic.bi/
373
+ bi
374
+ co.bi
375
+ com.bi
376
+ edu.bi
377
+ or.bi
378
+ org.bi
379
+
380
+ // biz : http://en.wikipedia.org/wiki/.biz
381
+ biz
382
+
383
+ // bj : http://en.wikipedia.org/wiki/.bj
384
+ // list of 2nd level tlds ?
385
+ bj
386
+
387
+ // bm : http://www.bermudanic.bm/dnr-text.txt
388
+ bm
389
+ com.bm
390
+ edu.bm
391
+ gov.bm
392
+ net.bm
393
+ org.bm
394
+
395
+ // bn : http://en.wikipedia.org/wiki/.bn
396
+ *.bn
397
+
398
+ // bo : http://www.nic.bo/
399
+ bo
400
+ com.bo
401
+ edu.bo
402
+ gov.bo
403
+ gob.bo
404
+ int.bo
405
+ org.bo
406
+ net.bo
407
+ mil.bo
408
+ tv.bo
409
+
410
+ // br : http://en.wikipedia.org/wiki/.br
411
+ // http://registro.br/info/dpn.html
412
+ // Confirmed by registry <fneves@registro.br> 2008-06-24
413
+ br
414
+ adm.br
415
+ adv.br
416
+ agr.br
417
+ am.br
418
+ arq.br
419
+ art.br
420
+ ato.br
421
+ bio.br
422
+ blog.br
423
+ bmd.br
424
+ can.br
425
+ cim.br
426
+ cng.br
427
+ cnt.br
428
+ com.br
429
+ coop.br
430
+ ecn.br
431
+ edu.br
432
+ eng.br
433
+ esp.br
434
+ etc.br
435
+ eti.br
436
+ far.br
437
+ flog.br
438
+ fm.br
439
+ fnd.br
440
+ fot.br
441
+ fst.br
442
+ g12.br
443
+ ggf.br
444
+ gov.br
445
+ imb.br
446
+ ind.br
447
+ inf.br
448
+ jor.br
449
+ jus.br
450
+ lel.br
451
+ mat.br
452
+ med.br
453
+ mil.br
454
+ mus.br
455
+ net.br
456
+ nom.br
457
+ not.br
458
+ ntr.br
459
+ odo.br
460
+ org.br
461
+ ppg.br
462
+ pro.br
463
+ psc.br
464
+ psi.br
465
+ qsl.br
466
+ rec.br
467
+ slg.br
468
+ srv.br
469
+ tmp.br
470
+ trd.br
471
+ tur.br
472
+ tv.br
473
+ vet.br
474
+ vlog.br
475
+ wiki.br
476
+ zlg.br
477
+
478
+ // bs : http://www.nic.bs/rules.html
479
+ bs
480
+ com.bs
481
+ net.bs
482
+ org.bs
483
+ edu.bs
484
+ gov.bs
485
+
486
+ // bt : http://en.wikipedia.org/wiki/.bt
487
+ *.bt
488
+
489
+ // bv : No registrations at this time.
490
+ // Submitted by registry <jarle@uninett.no> 2006-06-16
491
+
492
+ // bw : http://en.wikipedia.org/wiki/.bw
493
+ // http://www.gobin.info/domainname/bw.doc
494
+ // list of other 2nd level tlds ?
495
+ bw
496
+ co.bw
497
+ org.bw
498
+
499
+ // by : http://en.wikipedia.org/wiki/.by
500
+ // http://tld.by/rules_2006_en.html
501
+ // list of other 2nd level tlds ?
502
+ by
503
+ gov.by
504
+ mil.by
505
+ // Official information does not indicate that com.by is a reserved
506
+ // second-level domain, but it's being used as one (see www.google.com.by and
507
+ // www.yahoo.com.by, for example), so we list it here for safety's sake.
508
+ com.by
509
+
510
+ // bz : http://en.wikipedia.org/wiki/.bz
511
+ // http://www.belizenic.bz/
512
+ bz
513
+ com.bz
514
+ net.bz
515
+ org.bz
516
+ edu.bz
517
+ gov.bz
518
+
519
+ // ca : http://en.wikipedia.org/wiki/.ca
520
+ ca
521
+ // ca geographical names
522
+ ab.ca
523
+ bc.ca
524
+ mb.ca
525
+ nb.ca
526
+ nf.ca
527
+ nl.ca
528
+ ns.ca
529
+ nt.ca
530
+ nu.ca
531
+ on.ca
532
+ pe.ca
533
+ qc.ca
534
+ sk.ca
535
+ yk.ca
536
+ // gc.ca: http://en.wikipedia.org/wiki/.gc.ca
537
+ // see also: http://registry.gc.ca/en/SubdomainFAQ
538
+ gc.ca
539
+
540
+ // cat : http://en.wikipedia.org/wiki/.cat
541
+ cat
542
+
543
+ // cc : http://en.wikipedia.org/wiki/.cc
544
+ cc
545
+
546
+ // cd : http://en.wikipedia.org/wiki/.cd
547
+ // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
548
+ cd
549
+ gov.cd
550
+
551
+ // cf : http://en.wikipedia.org/wiki/.cf
552
+ cf
553
+
554
+ // cg : http://en.wikipedia.org/wiki/.cg
555
+ cg
556
+
557
+ // ch : http://en.wikipedia.org/wiki/.ch
558
+ ch
559
+
560
+ // ci : http://en.wikipedia.org/wiki/.ci
561
+ // http://www.nic.ci/index.php?page=charte
562
+ ci
563
+ org.ci
564
+ or.ci
565
+ com.ci
566
+ co.ci
567
+ edu.ci
568
+ ed.ci
569
+ ac.ci
570
+ net.ci
571
+ go.ci
572
+ asso.ci
573
+ aéroport.ci
574
+ int.ci
575
+ presse.ci
576
+ md.ci
577
+ gouv.ci
578
+
579
+ // ck : http://en.wikipedia.org/wiki/.ck
580
+ *.ck
581
+
582
+ // cl : http://en.wikipedia.org/wiki/.cl
583
+ cl
584
+ gov.cl
585
+ gob.cl
586
+
587
+ // cm : http://en.wikipedia.org/wiki/.cm
588
+ cm
589
+ gov.cm
590
+
591
+ // cn : http://en.wikipedia.org/wiki/.cn
592
+ // Submitted by registry <tanyaling@cnnic.cn> 2008-06-11
593
+ cn
594
+ ac.cn
595
+ com.cn
596
+ edu.cn
597
+ gov.cn
598
+ net.cn
599
+ org.cn
600
+ mil.cn
601
+ 公司.cn
602
+ 网络.cn
603
+ 網絡.cn
604
+ // cn geographic names
605
+ ah.cn
606
+ bj.cn
607
+ cq.cn
608
+ fj.cn
609
+ gd.cn
610
+ gs.cn
611
+ gz.cn
612
+ gx.cn
613
+ ha.cn
614
+ hb.cn
615
+ he.cn
616
+ hi.cn
617
+ hl.cn
618
+ hn.cn
619
+ jl.cn
620
+ js.cn
621
+ jx.cn
622
+ ln.cn
623
+ nm.cn
624
+ nx.cn
625
+ qh.cn
626
+ sc.cn
627
+ sd.cn
628
+ sh.cn
629
+ sn.cn
630
+ sx.cn
631
+ tj.cn
632
+ xj.cn
633
+ xz.cn
634
+ yn.cn
635
+ zj.cn
636
+ hk.cn
637
+ mo.cn
638
+ tw.cn
639
+
640
+ // co : http://en.wikipedia.org/wiki/.co
641
+ // Submitted by registry <tecnico@uniandes.edu.co> 2008-06-11
642
+ co
643
+ arts.co
644
+ com.co
645
+ edu.co
646
+ firm.co
647
+ gov.co
648
+ info.co
649
+ int.co
650
+ mil.co
651
+ net.co
652
+ nom.co
653
+ org.co
654
+ rec.co
655
+ web.co
656
+
657
+ // com : http://en.wikipedia.org/wiki/.com
658
+ com
659
+
660
+ // CentralNic names : http://www.centralnic.com/names/domains
661
+ // Confirmed by registry <gavin.brown@centralnic.com> 2008-06-09
662
+ ar.com
663
+ br.com
664
+ cn.com
665
+ de.com
666
+ eu.com
667
+ gb.com
668
+ hu.com
669
+ jpn.com
670
+ kr.com
671
+ no.com
672
+ qc.com
673
+ ru.com
674
+ sa.com
675
+ se.com
676
+ uk.com
677
+ us.com
678
+ uy.com
679
+ za.com
680
+
681
+ // coop : http://en.wikipedia.org/wiki/.coop
682
+ coop
683
+
684
+ // cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do
685
+ cr
686
+ ac.cr
687
+ co.cr
688
+ ed.cr
689
+ fi.cr
690
+ go.cr
691
+ or.cr
692
+ sa.cr
693
+
694
+ // cu : http://en.wikipedia.org/wiki/.cu
695
+ cu
696
+ com.cu
697
+ edu.cu
698
+ org.cu
699
+ net.cu
700
+ gov.cu
701
+ inf.cu
702
+
703
+ // cv : http://en.wikipedia.org/wiki/.cv
704
+ cv
705
+
706
+ // cx : http://en.wikipedia.org/wiki/.cx
707
+ // list of other 2nd level tlds ?
708
+ cx
709
+ gov.cx
710
+
711
+ // cy : http://en.wikipedia.org/wiki/.cy
712
+ *.cy
713
+
714
+ // cz : http://en.wikipedia.org/wiki/.cz
715
+ cz
716
+
717
+ // de : http://en.wikipedia.org/wiki/.de
718
+ // Confirmed by registry <ops@denic.de> (with technical
719
+ // reservations) 2008-07-01
720
+ de
721
+
722
+ // dj : http://en.wikipedia.org/wiki/.dj
723
+ dj
724
+
725
+ // dk : http://en.wikipedia.org/wiki/.dk
726
+ // Confirmed by registry <robert@dk-hostmaster.dk> 2008-06-17
727
+ dk
728
+
729
+ // dm : http://en.wikipedia.org/wiki/.dm
730
+ dm
731
+ com.dm
732
+ net.dm
733
+ org.dm
734
+ edu.dm
735
+ gov.dm
736
+
737
+ // do : http://en.wikipedia.org/wiki/.do
738
+ *.do
739
+
740
+ // dz : http://en.wikipedia.org/wiki/.dz
741
+ dz
742
+ com.dz
743
+ org.dz
744
+ net.dz
745
+ gov.dz
746
+ edu.dz
747
+ asso.dz
748
+ pol.dz
749
+ art.dz
750
+
751
+ // ec : http://www.nic.ec/reg/paso1.asp
752
+ // Submitted by registry <vabboud@nic.ec> 2008-07-04
753
+ ec
754
+ com.ec
755
+ info.ec
756
+ net.ec
757
+ fin.ec
758
+ k12.ec
759
+ med.ec
760
+ pro.ec
761
+ org.ec
762
+ edu.ec
763
+ gov.ec
764
+ mil.ec
765
+
766
+ // edu : http://en.wikipedia.org/wiki/.edu
767
+ edu
768
+
769
+ // ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B
770
+ ee
771
+ edu.ee
772
+ gov.ee
773
+ riik.ee
774
+ lib.ee
775
+ med.ee
776
+ com.ee
777
+ pri.ee
778
+ aip.ee
779
+ org.ee
780
+ fie.ee
781
+
782
+ // eg : http://en.wikipedia.org/wiki/.eg
783
+ *.eg
784
+
785
+ // er : http://en.wikipedia.org/wiki/.er
786
+ *.er
787
+
788
+ // es : https://www.nic.es/site_ingles/ingles/dominios/index.html
789
+ es
790
+ com.es
791
+ nom.es
792
+ org.es
793
+ gob.es
794
+ edu.es
795
+
796
+ // et : http://en.wikipedia.org/wiki/.et
797
+ *.et
798
+
799
+ // eu : http://en.wikipedia.org/wiki/.eu
800
+ eu
801
+
802
+ // fi : http://en.wikipedia.org/wiki/.fi
803
+ fi
804
+ // aland.fi : http://en.wikipedia.org/wiki/.ax
805
+ // This domain is being phased out in favor of .ax. As there are still many
806
+ // domains under aland.fi, we still keep it on the list until aland.fi is
807
+ // completely removed.
808
+ // TODO: Check for updates (expected to be phased out around Q1/2009)
809
+ aland.fi
810
+
811
+ // fj : http://en.wikipedia.org/wiki/.fj
812
+ *.fj
813
+
814
+ // fk : http://en.wikipedia.org/wiki/.fk
815
+ *.fk
816
+
817
+ // fm : http://en.wikipedia.org/wiki/.fm
818
+ fm
819
+
820
+ // fo : http://en.wikipedia.org/wiki/.fo
821
+ fo
822
+
823
+ // fr : http://www.afnic.fr/
824
+ // domaines descriptifs : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-descriptifs
825
+ fr
826
+ com.fr
827
+ asso.fr
828
+ nom.fr
829
+ prd.fr
830
+ presse.fr
831
+ tm.fr
832
+ // domaines sectoriels : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-sectoriels
833
+ aeroport.fr
834
+ assedic.fr
835
+ avocat.fr
836
+ avoues.fr
837
+ cci.fr
838
+ chambagri.fr
839
+ chirurgiens-dentistes.fr
840
+ experts-comptables.fr
841
+ geometre-expert.fr
842
+ gouv.fr
843
+ greta.fr
844
+ huissier-justice.fr
845
+ medecin.fr
846
+ notaires.fr
847
+ pharmacien.fr
848
+ port.fr
849
+ veterinaire.fr
850
+
851
+ // ga : http://en.wikipedia.org/wiki/.ga
852
+ ga
853
+
854
+ // gb : This registry is effectively dormant
855
+ // Submitted by registry <Damien.Shaw@ja.net> 2008-06-12
856
+
857
+ // gd : http://en.wikipedia.org/wiki/.gd
858
+ gd
859
+
860
+ // ge : http://www.nic.net.ge/policy_en.pdf
861
+ ge
862
+ com.ge
863
+ edu.ge
864
+ gov.ge
865
+ org.ge
866
+ mil.ge
867
+ net.ge
868
+ pvt.ge
869
+
870
+ // gf : http://en.wikipedia.org/wiki/.gf
871
+ gf
872
+
873
+ // gg : http://www.channelisles.net/applic/avextn.shtml
874
+ gg
875
+ co.gg
876
+ org.gg
877
+ net.gg
878
+ sch.gg
879
+ gov.gg
880
+
881
+ // gh : http://en.wikipedia.org/wiki/.gh
882
+ // see also: http://www.nic.gh/reg_now.php
883
+ // Although domains directly at second level are not possible at the moment,
884
+ // they have been possible for some time and may come back.
885
+ gh
886
+ com.gh
887
+ edu.gh
888
+ gov.gh
889
+ org.gh
890
+ mil.gh
891
+
892
+ // gi : http://www.nic.gi/rules.html
893
+ gi
894
+ com.gi
895
+ ltd.gi
896
+ gov.gi
897
+ mod.gi
898
+ edu.gi
899
+ org.gi
900
+
901
+ // gl : http://en.wikipedia.org/wiki/.gl
902
+ gl
903
+
904
+ // gm : http://www.nic.gm/htmlpages%5Cgm-policy.htm
905
+ gm
906
+
907
+ // gn : http://psg.com/dns/gn/gn.txt
908
+ // Submitted by registry <randy@psg.com> 2008-06-17
909
+ ac.gn
910
+ com.gn
911
+ edu.gn
912
+ gov.gn
913
+ org.gn
914
+ net.gn
915
+
916
+ // gov : http://en.wikipedia.org/wiki/.gov
917
+ gov
918
+
919
+ // gp : http://www.nic.gp/index.php?lang=en
920
+ gp
921
+ com.gp
922
+ net.gp
923
+ mobi.gp
924
+ edu.gp
925
+ org.gp
926
+ asso.gp
927
+
928
+ // gq : http://en.wikipedia.org/wiki/.gq
929
+ gq
930
+
931
+ // gr : https://grweb.ics.forth.gr/english/1617-B-2005.html
932
+ // Submitted by registry <segred@ics.forth.gr> 2008-06-09
933
+ gr
934
+ com.gr
935
+ edu.gr
936
+ net.gr
937
+ org.gr
938
+ gov.gr
939
+
940
+ // gs : http://en.wikipedia.org/wiki/.gs
941
+ gs
942
+
943
+ // gt : http://www.gt/politicas.html
944
+ *.gt
945
+
946
+ // gu : http://gadao.gov.gu/registration.txt
947
+ *.gu
948
+
949
+ // gw : http://en.wikipedia.org/wiki/.gw
950
+ gw
951
+
952
+ // gy : http://en.wikipedia.org/wiki/.gy
953
+ // http://registry.gy/
954
+ gy
955
+ co.gy
956
+ com.gy
957
+ net.gy
958
+
959
+ // hk : https://www.hkdnr.hk
960
+ // Submitted by registry <hk.tech@hkirc.hk> 2008-06-11
961
+ hk
962
+ com.hk
963
+ edu.hk
964
+ gov.hk
965
+ idv.hk
966
+ net.hk
967
+ org.hk
968
+ 公司.hk
969
+ 教育.hk
970
+ 敎育.hk
971
+ 政府.hk
972
+ 個人.hk
973
+ 个人.hk
974
+ 箇人.hk
975
+ 網络.hk
976
+ 网络.hk
977
+ 组織.hk
978
+ 網絡.hk
979
+ 网絡.hk
980
+ 组织.hk
981
+ 組織.hk
982
+ 組织.hk
983
+
984
+ // hm : http://en.wikipedia.org/wiki/.hm
985
+ hm
986
+
987
+ // hn : http://www.nic.hn/politicas/ps02,,05.html
988
+ hn
989
+ com.hn
990
+ edu.hn
991
+ org.hn
992
+ net.hn
993
+ mil.hn
994
+ gob.hn
995
+
996
+ // hr : http://www.dns.hr/documents/pdf/HRTLD-regulations.pdf
997
+ hr
998
+ iz.hr
999
+ from.hr
1000
+ name.hr
1001
+ com.hr
1002
+
1003
+ // ht : http://www.nic.ht/info/charte.cfm
1004
+ ht
1005
+ com.ht
1006
+ shop.ht
1007
+ firm.ht
1008
+ info.ht
1009
+ adult.ht
1010
+ net.ht
1011
+ pro.ht
1012
+ org.ht
1013
+ med.ht
1014
+ art.ht
1015
+ coop.ht
1016
+ pol.ht
1017
+ asso.ht
1018
+ edu.ht
1019
+ rel.ht
1020
+ gouv.ht
1021
+ perso.ht
1022
+
1023
+ // hu : http://www.domain.hu/domain/English/sld.html
1024
+ // Confirmed by registry <pasztor@iszt.hu> 2008-06-12
1025
+ hu
1026
+ co.hu
1027
+ info.hu
1028
+ org.hu
1029
+ priv.hu
1030
+ sport.hu
1031
+ tm.hu
1032
+ 2000.hu
1033
+ agrar.hu
1034
+ bolt.hu
1035
+ casino.hu
1036
+ city.hu
1037
+ erotica.hu
1038
+ erotika.hu
1039
+ film.hu
1040
+ forum.hu
1041
+ games.hu
1042
+ hotel.hu
1043
+ ingatlan.hu
1044
+ jogasz.hu
1045
+ konyvelo.hu
1046
+ lakas.hu
1047
+ media.hu
1048
+ news.hu
1049
+ reklam.hu
1050
+ sex.hu
1051
+ shop.hu
1052
+ suli.hu
1053
+ szex.hu
1054
+ tozsde.hu
1055
+ utazas.hu
1056
+ video.hu
1057
+
1058
+ // id : http://en.wikipedia.org/wiki/.id
1059
+ *.id
1060
+
1061
+ // ie : http://en.wikipedia.org/wiki/.ie
1062
+ ie
1063
+ gov.ie
1064
+
1065
+ // il : http://en.wikipedia.org/wiki/.il
1066
+ *.il
1067
+
1068
+ // im : https://www.nic.im/pdfs/imfaqs.pdf
1069
+ im
1070
+ co.im
1071
+ ltd.co.im
1072
+ plc.co.im
1073
+ net.im
1074
+ gov.im
1075
+ org.im
1076
+ nic.im
1077
+ ac.im
1078
+
1079
+ // in : http://en.wikipedia.org/wiki/.in
1080
+ // see also: http://www.inregistry.in/policies/
1081
+ // Please note, that nic.in is not an offical eTLD, but used by most
1082
+ // government institutions.
1083
+ in
1084
+ co.in
1085
+ firm.in
1086
+ net.in
1087
+ org.in
1088
+ gen.in
1089
+ ind.in
1090
+ nic.in
1091
+ ac.in
1092
+ edu.in
1093
+ res.in
1094
+ gov.in
1095
+ mil.in
1096
+
1097
+ // info : http://en.wikipedia.org/wiki/.info
1098
+ info
1099
+
1100
+ // int : http://en.wikipedia.org/wiki/.int
1101
+ // Confirmed by registry <iana-questions@icann.org> 2008-06-18
1102
+ int
1103
+ eu.int
1104
+
1105
+ // io : http://www.nic.io/rules.html
1106
+ // list of other 2nd level tlds ?
1107
+ io
1108
+ com.io
1109
+
1110
+ // iq : http://www.cmc.iq/english/iq/iqregister1.htm
1111
+ iq
1112
+ gov.iq
1113
+ edu.iq
1114
+ mil.iq
1115
+ com.iq
1116
+ org.iq
1117
+ net.iq
1118
+
1119
+ // ir : http://www.nic.ir/ascii/Appendix1.htm
1120
+ ir
1121
+ ac.ir
1122
+ co.ir
1123
+ gov.ir
1124
+ id.ir
1125
+ net.ir
1126
+ org.ir
1127
+ sch.ir
1128
+
1129
+ // is : http://www.isnic.is/domain/rules.php
1130
+ // Confirmed by registry <marius@isgate.is> 2008-12-06
1131
+ is
1132
+ net.is
1133
+ com.is
1134
+ edu.is
1135
+ gov.is
1136
+ org.is
1137
+ int.is
1138
+
1139
+ // it : http://en.wikipedia.org/wiki/.it
1140
+ it
1141
+ gov.it
1142
+ edu.it
1143
+ // geo-names found at http://www.nic.it/RA/en/domini/regole/nomi-riservati.pdf
1144
+ agrigento.it
1145
+ ag.it
1146
+ alessandria.it
1147
+ al.it
1148
+ ancona.it
1149
+ an.it
1150
+ aosta.it
1151
+ aoste.it
1152
+ ao.it
1153
+ arezzo.it
1154
+ ar.it
1155
+ ascoli-piceno.it
1156
+ ascolipiceno.it
1157
+ ap.it
1158
+ asti.it
1159
+ at.it
1160
+ avellino.it
1161
+ av.it
1162
+ bari.it
1163
+ ba.it
1164
+ barlettaandriatrani.it
1165
+ barletta-andria-trani.it
1166
+ belluno.it
1167
+ bl.it
1168
+ benevento.it
1169
+ bn.it
1170
+ bergamo.it
1171
+ bg.it
1172
+ biella.it
1173
+ bi.it
1174
+ bologna.it
1175
+ bo.it
1176
+ bolzano.it
1177
+ bozen.it
1178
+ balsan.it
1179
+ alto-adige.it
1180
+ altoadige.it
1181
+ suedtirol.it
1182
+ bz.it
1183
+ brescia.it
1184
+ bs.it
1185
+ brindisi.it
1186
+ br.it
1187
+ cagliari.it
1188
+ ca.it
1189
+ caltanissetta.it
1190
+ cl.it
1191
+ campobasso.it
1192
+ cb.it
1193
+ caserta.it
1194
+ ce.it
1195
+ catania.it
1196
+ ct.it
1197
+ catanzaro.it
1198
+ cz.it
1199
+ chieti.it
1200
+ ch.it
1201
+ como.it
1202
+ co.it
1203
+ cosenza.it
1204
+ cs.it
1205
+ cremona.it
1206
+ cr.it
1207
+ crotone.it
1208
+ kr.it
1209
+ cuneo.it
1210
+ cn.it
1211
+ enna.it
1212
+ en.it
1213
+ fermo.it
1214
+ ferrara.it
1215
+ fe.it
1216
+ firenze.it
1217
+ florence.it
1218
+ fi.it
1219
+ foggia.it
1220
+ fg.it
1221
+ forli-cesena.it
1222
+ forlicesena.it
1223
+ fc.it
1224
+ frosinone.it
1225
+ fr.it
1226
+ genova.it
1227
+ genoa.it
1228
+ ge.it
1229
+ gorizia.it
1230
+ go.it
1231
+ grosseto.it
1232
+ gr.it
1233
+ imperia.it
1234
+ im.it
1235
+ isernia.it
1236
+ is.it
1237
+ laquila.it
1238
+ aquila.it
1239
+ aq.it
1240
+ la-spezia.it
1241
+ laspezia.it
1242
+ sp.it
1243
+ latina.it
1244
+ lt.it
1245
+ lecce.it
1246
+ le.it
1247
+ lecco.it
1248
+ lc.it
1249
+ livorno.it
1250
+ li.it
1251
+ lodi.it
1252
+ lo.it
1253
+ lucca.it
1254
+ lu.it
1255
+ macerata.it
1256
+ mc.it
1257
+ mantova.it
1258
+ mn.it
1259
+ massa-carrara.it
1260
+ massacarrara.it
1261
+ ms.it
1262
+ matera.it
1263
+ mt.it
1264
+ messina.it
1265
+ me.it
1266
+ milano.it
1267
+ milan.it
1268
+ mi.it
1269
+ modena.it
1270
+ mo.it
1271
+ monza.it
1272
+ napoli.it
1273
+ naples.it
1274
+ na.it
1275
+ novara.it
1276
+ no.it
1277
+ nuoro.it
1278
+ nu.it
1279
+ oristano.it
1280
+ or.it
1281
+ padova.it
1282
+ padua.it
1283
+ pd.it
1284
+ palermo.it
1285
+ pa.it
1286
+ parma.it
1287
+ pr.it
1288
+ pavia.it
1289
+ pv.it
1290
+ perugia.it
1291
+ pg.it
1292
+ pescara.it
1293
+ pe.it
1294
+ pesaro-urbino.it
1295
+ pesarourbino.it
1296
+ pu.it
1297
+ piacenza.it
1298
+ pc.it
1299
+ pisa.it
1300
+ pi.it
1301
+ pistoia.it
1302
+ pt.it
1303
+ pordenone.it
1304
+ pn.it
1305
+ potenza.it
1306
+ pz.it
1307
+ prato.it
1308
+ po.it
1309
+ ragusa.it
1310
+ rg.it
1311
+ ravenna.it
1312
+ ra.it
1313
+ reggio-calabria.it
1314
+ reggiocalabria.it
1315
+ rc.it
1316
+ reggio-emilia.it
1317
+ reggioemilia.it
1318
+ re.it
1319
+ rieti.it
1320
+ ri.it
1321
+ rimini.it
1322
+ rn.it
1323
+ roma.it
1324
+ rome.it
1325
+ rm.it
1326
+ rovigo.it
1327
+ ro.it
1328
+ salerno.it
1329
+ sa.it
1330
+ sassari.it
1331
+ ss.it
1332
+ savona.it
1333
+ sv.it
1334
+ siena.it
1335
+ si.it
1336
+ siracusa.it
1337
+ sr.it
1338
+ sondrio.it
1339
+ so.it
1340
+ taranto.it
1341
+ ta.it
1342
+ teramo.it
1343
+ te.it
1344
+ terni.it
1345
+ tr.it
1346
+ torino.it
1347
+ turin.it
1348
+ to.it
1349
+ trapani.it
1350
+ tp.it
1351
+ trento.it
1352
+ trentino.it
1353
+ tn.it
1354
+ treviso.it
1355
+ tv.it
1356
+ trieste.it
1357
+ ts.it
1358
+ udine.it
1359
+ ud.it
1360
+ varese.it
1361
+ va.it
1362
+ venezia.it
1363
+ venice.it
1364
+ ve.it
1365
+ verbania.it
1366
+ vb.it
1367
+ vercelli.it
1368
+ vc.it
1369
+ verona.it
1370
+ vr.it
1371
+ vibo-valentia.it
1372
+ vibovalentia.it
1373
+ vv.it
1374
+ vicenza.it
1375
+ vi.it
1376
+ viterbo.it
1377
+ vt.it
1378
+
1379
+ // je : http://www.channelisles.net/applic/avextn.shtml
1380
+ je
1381
+ co.je
1382
+ org.je
1383
+ net.je
1384
+ sch.je
1385
+ gov.je
1386
+
1387
+ // jm : http://www.com.jm/register.html
1388
+ *.jm
1389
+
1390
+ // jo : http://www.dns.jo/Registration_policy.aspx
1391
+ jo
1392
+ com.jo
1393
+ org.jo
1394
+ net.jo
1395
+ edu.jo
1396
+ sch.jo
1397
+ gov.jo
1398
+ mil.jo
1399
+ name.jo
1400
+
1401
+ // jobs : http://en.wikipedia.org/wiki/.jobs
1402
+ jobs
1403
+
1404
+ // jp : http://en.wikipedia.org/wiki/.jp
1405
+ // http://jprs.co.jp/en/jpdomain.html
1406
+ // Submitted by registry <yone@jprs.co.jp> 2008-06-11
1407
+ // Updated by registry <yone@jprs.co.jp> 2008-12-04
1408
+ jp
1409
+ // jp organizational type names
1410
+ ac.jp
1411
+ ad.jp
1412
+ co.jp
1413
+ ed.jp
1414
+ go.jp
1415
+ gr.jp
1416
+ lg.jp
1417
+ ne.jp
1418
+ or.jp
1419
+ // jp geographic type names
1420
+ // http://jprs.jp/doc/rule/saisoku-1.html
1421
+ *.aichi.jp
1422
+ *.akita.jp
1423
+ *.aomori.jp
1424
+ *.chiba.jp
1425
+ *.ehime.jp
1426
+ *.fukui.jp
1427
+ *.fukuoka.jp
1428
+ *.fukushima.jp
1429
+ *.gifu.jp
1430
+ *.gunma.jp
1431
+ *.hiroshima.jp
1432
+ *.hokkaido.jp
1433
+ *.hyogo.jp
1434
+ *.ibaraki.jp
1435
+ *.ishikawa.jp
1436
+ *.iwate.jp
1437
+ *.kagawa.jp
1438
+ *.kagoshima.jp
1439
+ *.kanagawa.jp
1440
+ *.kawasaki.jp
1441
+ *.kitakyushu.jp
1442
+ *.kobe.jp
1443
+ *.kochi.jp
1444
+ *.kumamoto.jp
1445
+ *.kyoto.jp
1446
+ *.mie.jp
1447
+ *.miyagi.jp
1448
+ *.miyazaki.jp
1449
+ *.nagano.jp
1450
+ *.nagasaki.jp
1451
+ *.nagoya.jp
1452
+ *.nara.jp
1453
+ *.niigata.jp
1454
+ *.oita.jp
1455
+ *.okayama.jp
1456
+ *.okinawa.jp
1457
+ *.osaka.jp
1458
+ *.saga.jp
1459
+ *.saitama.jp
1460
+ *.sapporo.jp
1461
+ *.sendai.jp
1462
+ *.shiga.jp
1463
+ *.shimane.jp
1464
+ *.shizuoka.jp
1465
+ *.tochigi.jp
1466
+ *.tokushima.jp
1467
+ *.tokyo.jp
1468
+ *.tottori.jp
1469
+ *.toyama.jp
1470
+ *.wakayama.jp
1471
+ *.yamagata.jp
1472
+ *.yamaguchi.jp
1473
+ *.yamanashi.jp
1474
+ *.yokohama.jp
1475
+ !metro.tokyo.jp
1476
+ !pref.aichi.jp
1477
+ !pref.akita.jp
1478
+ !pref.aomori.jp
1479
+ !pref.chiba.jp
1480
+ !pref.ehime.jp
1481
+ !pref.fukui.jp
1482
+ !pref.fukuoka.jp
1483
+ !pref.fukushima.jp
1484
+ !pref.gifu.jp
1485
+ !pref.gunma.jp
1486
+ !pref.hiroshima.jp
1487
+ !pref.hokkaido.jp
1488
+ !pref.hyogo.jp
1489
+ !pref.ibaraki.jp
1490
+ !pref.ishikawa.jp
1491
+ !pref.iwate.jp
1492
+ !pref.kagawa.jp
1493
+ !pref.kagoshima.jp
1494
+ !pref.kanagawa.jp
1495
+ !pref.kochi.jp
1496
+ !pref.kumamoto.jp
1497
+ !pref.kyoto.jp
1498
+ !pref.mie.jp
1499
+ !pref.miyagi.jp
1500
+ !pref.miyazaki.jp
1501
+ !pref.nagano.jp
1502
+ !pref.nagasaki.jp
1503
+ !pref.nara.jp
1504
+ !pref.niigata.jp
1505
+ !pref.oita.jp
1506
+ !pref.okayama.jp
1507
+ !pref.okinawa.jp
1508
+ !pref.osaka.jp
1509
+ !pref.saga.jp
1510
+ !pref.saitama.jp
1511
+ !pref.shiga.jp
1512
+ !pref.shimane.jp
1513
+ !pref.shizuoka.jp
1514
+ !pref.tochigi.jp
1515
+ !pref.tokushima.jp
1516
+ !pref.tottori.jp
1517
+ !pref.toyama.jp
1518
+ !pref.wakayama.jp
1519
+ !pref.yamagata.jp
1520
+ !pref.yamaguchi.jp
1521
+ !pref.yamanashi.jp
1522
+ !city.chiba.jp
1523
+ !city.fukuoka.jp
1524
+ !city.hiroshima.jp
1525
+ !city.kawasaki.jp
1526
+ !city.kitakyushu.jp
1527
+ !city.kobe.jp
1528
+ !city.kyoto.jp
1529
+ !city.nagoya.jp
1530
+ !city.niigata.jp
1531
+ !city.okayama.jp
1532
+ !city.osaka.jp
1533
+ !city.saitama.jp
1534
+ !city.sapporo.jp
1535
+ !city.sendai.jp
1536
+ !city.shizuoka.jp
1537
+ !city.yokohama.jp
1538
+
1539
+ // ke : http://www.kenic.or.ke/index.php?option=com_content&task=view&id=117&Itemid=145
1540
+ *.ke
1541
+
1542
+ // kg : http://www.domain.kg/dmn_n.html
1543
+ kg
1544
+ org.kg
1545
+ net.kg
1546
+ com.kg
1547
+ edu.kg
1548
+ gov.kg
1549
+ mil.kg
1550
+
1551
+ // kh : http://www.mptc.gov.kh/dns_registration.htm
1552
+ *.kh
1553
+
1554
+ // ki : http://www.ki/dns/index.html
1555
+ ki
1556
+ edu.ki
1557
+ biz.ki
1558
+ net.ki
1559
+ org.ki
1560
+ gov.ki
1561
+ info.ki
1562
+ com.ki
1563
+
1564
+ // km : http://en.wikipedia.org/wiki/.km
1565
+ // http://www.domaine.km/documents/charte.doc
1566
+ km
1567
+ org.km
1568
+ nom.km
1569
+ gov.km
1570
+ prd.km
1571
+ tm.km
1572
+ edu.km
1573
+ mil.km
1574
+ ass.km
1575
+ com.km
1576
+ // These are only mentioned as proposed suggestions at domaine.km, but
1577
+ // http://en.wikipedia.org/wiki/.km says they're available for registration:
1578
+ coop.km
1579
+ asso.km
1580
+ presse.km
1581
+ medecin.km
1582
+ notaires.km
1583
+ pharmaciens.km
1584
+ veterinaire.km
1585
+ gouv.km
1586
+
1587
+ // kn : http://en.wikipedia.org/wiki/.kn
1588
+ // http://www.dot.kn/domainRules.html
1589
+ kn
1590
+ net.kn
1591
+ org.kn
1592
+ edu.kn
1593
+ gov.kn
1594
+
1595
+ // kr : http://en.wikipedia.org/wiki/.kr
1596
+ // see also: http://domain.nida.or.kr/eng/registration.jsp
1597
+ kr
1598
+ ac.kr
1599
+ co.kr
1600
+ es.kr
1601
+ go.kr
1602
+ hs.kr
1603
+ kg.kr
1604
+ mil.kr
1605
+ ms.kr
1606
+ ne.kr
1607
+ or.kr
1608
+ pe.kr
1609
+ re.kr
1610
+ sc.kr
1611
+ // kr geographical names
1612
+ busan.kr
1613
+ chungbuk.kr
1614
+ chungnam.kr
1615
+ daegu.kr
1616
+ daejeon.kr
1617
+ gangwon.kr
1618
+ gwangju.kr
1619
+ gyeongbuk.kr
1620
+ gyeonggi.kr
1621
+ gyeongnam.kr
1622
+ incheon.kr
1623
+ jeju.kr
1624
+ jeonbuk.kr
1625
+ jeonnam.kr
1626
+ seoul.kr
1627
+ ulsan.kr
1628
+
1629
+ // kw : http://en.wikipedia.org/wiki/.kw
1630
+ *.kw
1631
+
1632
+ // ky : http://www.icta.ky/da_ky_reg_dom.php
1633
+ // Confirmed by registry <kysupport@perimeterusa.com> 2008-06-17
1634
+ ky
1635
+ edu.ky
1636
+ gov.ky
1637
+ com.ky
1638
+ org.ky
1639
+ net.ky
1640
+
1641
+ // kz : http://en.wikipedia.org/wiki/.kz
1642
+ // see also: http://www.nic.kz/rules/index.jsp
1643
+ kz
1644
+ org.kz
1645
+ edu.kz
1646
+ net.kz
1647
+ gov.kz
1648
+ mil.kz
1649
+ com.kz
1650
+
1651
+ // la : http://en.wikipedia.org/wiki/.la
1652
+ // Submitted by registry <gavin.brown@nic.la> 2008-06-10
1653
+ la
1654
+ int.la
1655
+ net.la
1656
+ info.la
1657
+ edu.la
1658
+ gov.la
1659
+ per.la
1660
+ com.la
1661
+ org.la
1662
+ // see http://www.c.la/
1663
+ c.la
1664
+
1665
+ // lb : http://en.wikipedia.org/wiki/.lb
1666
+ // Submitted by registry <randy@psg.com> 2008-06-17
1667
+ com.lb
1668
+ edu.lb
1669
+ gov.lb
1670
+ net.lb
1671
+ org.lb
1672
+
1673
+ // lc : http://en.wikipedia.org/wiki/.lc
1674
+ // see also: http://www.nic.lc/rules.htm
1675
+ lc
1676
+ com.lc
1677
+ net.lc
1678
+ co.lc
1679
+ org.lc
1680
+ edu.lc
1681
+ gov.lc
1682
+
1683
+ // li : http://en.wikipedia.org/wiki/.li
1684
+ li
1685
+
1686
+ // lk : http://www.nic.lk/seclevpr.html
1687
+ lk
1688
+ gov.lk
1689
+ sch.lk
1690
+ net.lk
1691
+ int.lk
1692
+ com.lk
1693
+ org.lk
1694
+ edu.lk
1695
+ ngo.lk
1696
+ soc.lk
1697
+ web.lk
1698
+ ltd.lk
1699
+ assn.lk
1700
+ grp.lk
1701
+ hotel.lk
1702
+
1703
+ // local : http://en.wikipedia.org/wiki/.local
1704
+ local
1705
+
1706
+ // lr : http://psg.com/dns/lr/lr.txt
1707
+ // Submitted by registry <randy@psg.com> 2008-06-17
1708
+ com.lr
1709
+ edu.lr
1710
+ gov.lr
1711
+ org.lr
1712
+ net.lr
1713
+
1714
+ // ls : http://en.wikipedia.org/wiki/.ls
1715
+ ls
1716
+ co.ls
1717
+ org.ls
1718
+
1719
+ // lt : http://en.wikipedia.org/wiki/.lt
1720
+ lt
1721
+ // gov.lt : http://www.gov.lt/index_en.php
1722
+ gov.lt
1723
+
1724
+ // lu : http://www.dns.lu/en/
1725
+ lu
1726
+
1727
+ // lv : http://www.nic.lv/DNS/En/generic.php
1728
+ lv
1729
+ com.lv
1730
+ edu.lv
1731
+ gov.lv
1732
+ org.lv
1733
+ mil.lv
1734
+ id.lv
1735
+ net.lv
1736
+ asn.lv
1737
+ conf.lv
1738
+
1739
+ // ly : http://www.nic.ly/regulations.php
1740
+ ly
1741
+ com.ly
1742
+ net.ly
1743
+ gov.ly
1744
+ plc.ly
1745
+ edu.ly
1746
+ sch.ly
1747
+ med.ly
1748
+ org.ly
1749
+ id.ly
1750
+
1751
+ // ma : http://en.wikipedia.org/wiki/.ma
1752
+ // http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf
1753
+ ma
1754
+ co.ma
1755
+ net.ma
1756
+ gov.ma
1757
+ org.ma
1758
+ ac.ma
1759
+ press.ma
1760
+
1761
+ // mc : http://www.nic.mc/
1762
+ mc
1763
+ tm.mc
1764
+ asso.mc
1765
+
1766
+ // md : http://en.wikipedia.org/wiki/.md
1767
+ md
1768
+
1769
+ // me : http://en.wikipedia.org/wiki/.me
1770
+ me
1771
+ co.me
1772
+ net.me
1773
+ org.me
1774
+ edu.me
1775
+ ac.me
1776
+ gov.me
1777
+ its.me
1778
+ priv.me
1779
+
1780
+ // mg : http://www.nic.mg/tarif.htm
1781
+ mg
1782
+ org.mg
1783
+ nom.mg
1784
+ gov.mg
1785
+ prd.mg
1786
+ tm.mg
1787
+ edu.mg
1788
+ mil.mg
1789
+ com.mg
1790
+
1791
+ // mh : http://en.wikipedia.org/wiki/.mh
1792
+ mh
1793
+
1794
+ // mil : http://en.wikipedia.org/wiki/.mil
1795
+ mil
1796
+
1797
+ // mk : http://en.wikipedia.org/wiki/.mk
1798
+ // see also: http://dns.marnet.net.mk/postapka.php
1799
+ mk
1800
+ com.mk
1801
+ org.mk
1802
+ net.mk
1803
+ edu.mk
1804
+ gov.mk
1805
+ inf.mk
1806
+ name.mk
1807
+
1808
+ // ml : http://www.gobin.info/domainname/ml-template.doc
1809
+ *.ml
1810
+
1811
+ // mm : http://en.wikipedia.org/wiki/.mm
1812
+ *.mm
1813
+
1814
+ // mn : http://en.wikipedia.org/wiki/.mn
1815
+ mn
1816
+ gov.mn
1817
+ edu.mn
1818
+ org.mn
1819
+
1820
+ // mo : http://www.monic.net.mo/
1821
+ mo
1822
+ com.mo
1823
+ net.mo
1824
+ org.mo
1825
+ edu.mo
1826
+ gov.mo
1827
+
1828
+ // mobi : http://en.wikipedia.org/wiki/.mobi
1829
+ mobi
1830
+
1831
+ // mp : http://www.dot.mp/
1832
+ // Confirmed by registry <dcamacho@saipan.com> 2008-06-17
1833
+ mp
1834
+
1835
+ // mq : http://en.wikipedia.org/wiki/.mq
1836
+ mq
1837
+
1838
+ // mr : http://en.wikipedia.org/wiki/.mr
1839
+ mr
1840
+ gov.mr
1841
+
1842
+ // ms : http://en.wikipedia.org/wiki/.ms
1843
+ ms
1844
+
1845
+ // mt : https://www.nic.org.mt/dotmt/
1846
+ *.mt
1847
+
1848
+ // mu : http://en.wikipedia.org/wiki/.mu
1849
+ mu
1850
+ com.mu
1851
+ net.mu
1852
+ org.mu
1853
+ gov.mu
1854
+ ac.mu
1855
+ co.mu
1856
+ or.mu
1857
+
1858
+ // museum : http://about.museum/naming/
1859
+ // http://index.museum/
1860
+ museum
1861
+ academy.museum
1862
+ agriculture.museum
1863
+ air.museum
1864
+ airguard.museum
1865
+ alabama.museum
1866
+ alaska.museum
1867
+ amber.museum
1868
+ ambulance.museum
1869
+ american.museum
1870
+ americana.museum
1871
+ americanantiques.museum
1872
+ americanart.museum
1873
+ amsterdam.museum
1874
+ and.museum
1875
+ annefrank.museum
1876
+ anthro.museum
1877
+ anthropology.museum
1878
+ antiques.museum
1879
+ aquarium.museum
1880
+ arboretum.museum
1881
+ archaeological.museum
1882
+ archaeology.museum
1883
+ architecture.museum
1884
+ art.museum
1885
+ artanddesign.museum
1886
+ artcenter.museum
1887
+ artdeco.museum
1888
+ arteducation.museum
1889
+ artgallery.museum
1890
+ arts.museum
1891
+ artsandcrafts.museum
1892
+ asmatart.museum
1893
+ assassination.museum
1894
+ assisi.museum
1895
+ association.museum
1896
+ astronomy.museum
1897
+ atlanta.museum
1898
+ austin.museum
1899
+ australia.museum
1900
+ automotive.museum
1901
+ aviation.museum
1902
+ axis.museum
1903
+ badajoz.museum
1904
+ baghdad.museum
1905
+ bahn.museum
1906
+ bale.museum
1907
+ baltimore.museum
1908
+ barcelona.museum
1909
+ baseball.museum
1910
+ basel.museum
1911
+ baths.museum
1912
+ bauern.museum
1913
+ beauxarts.museum
1914
+ beeldengeluid.museum
1915
+ bellevue.museum
1916
+ bergbau.museum
1917
+ berkeley.museum
1918
+ berlin.museum
1919
+ bern.museum
1920
+ bible.museum
1921
+ bilbao.museum
1922
+ bill.museum
1923
+ birdart.museum
1924
+ birthplace.museum
1925
+ bonn.museum
1926
+ boston.museum
1927
+ botanical.museum
1928
+ botanicalgarden.museum
1929
+ botanicgarden.museum
1930
+ botany.museum
1931
+ brandywinevalley.museum
1932
+ brasil.museum
1933
+ bristol.museum
1934
+ british.museum
1935
+ britishcolumbia.museum
1936
+ broadcast.museum
1937
+ brunel.museum
1938
+ brussel.museum
1939
+ brussels.museum
1940
+ bruxelles.museum
1941
+ building.museum
1942
+ burghof.museum
1943
+ bus.museum
1944
+ bushey.museum
1945
+ cadaques.museum
1946
+ california.museum
1947
+ cambridge.museum
1948
+ can.museum
1949
+ canada.museum
1950
+ capebreton.museum
1951
+ carrier.museum
1952
+ cartoonart.museum
1953
+ casadelamoneda.museum
1954
+ castle.museum
1955
+ castres.museum
1956
+ celtic.museum
1957
+ center.museum
1958
+ chattanooga.museum
1959
+ cheltenham.museum
1960
+ chesapeakebay.museum
1961
+ chicago.museum
1962
+ children.museum
1963
+ childrens.museum
1964
+ childrensgarden.museum
1965
+ chiropractic.museum
1966
+ chocolate.museum
1967
+ christiansburg.museum
1968
+ cincinnati.museum
1969
+ cinema.museum
1970
+ circus.museum
1971
+ civilisation.museum
1972
+ civilization.museum
1973
+ civilwar.museum
1974
+ clinton.museum
1975
+ clock.museum
1976
+ coal.museum
1977
+ coastaldefence.museum
1978
+ cody.museum
1979
+ coldwar.museum
1980
+ collection.museum
1981
+ colonialwilliamsburg.museum
1982
+ coloradoplateau.museum
1983
+ columbia.museum
1984
+ columbus.museum
1985
+ communication.museum
1986
+ communications.museum
1987
+ community.museum
1988
+ computer.museum
1989
+ computerhistory.museum
1990
+ comunicações.museum
1991
+ contemporary.museum
1992
+ contemporaryart.museum
1993
+ convent.museum
1994
+ copenhagen.museum
1995
+ corporation.museum
1996
+ correios-e-telecomunicações.museum
1997
+ corvette.museum
1998
+ costume.museum
1999
+ countryestate.museum
2000
+ county.museum
2001
+ crafts.museum
2002
+ cranbrook.museum
2003
+ creation.museum
2004
+ cultural.museum
2005
+ culturalcenter.museum
2006
+ culture.museum
2007
+ cyber.museum
2008
+ cymru.museum
2009
+ dali.museum
2010
+ dallas.museum
2011
+ database.museum
2012
+ ddr.museum
2013
+ decorativearts.museum
2014
+ delaware.museum
2015
+ delmenhorst.museum
2016
+ denmark.museum
2017
+ depot.museum
2018
+ design.museum
2019
+ detroit.museum
2020
+ dinosaur.museum
2021
+ discovery.museum
2022
+ dolls.museum
2023
+ donostia.museum
2024
+ durham.museum
2025
+ eastafrica.museum
2026
+ eastcoast.museum
2027
+ education.museum
2028
+ educational.museum
2029
+ egyptian.museum
2030
+ eisenbahn.museum
2031
+ elburg.museum
2032
+ elvendrell.museum
2033
+ embroidery.museum
2034
+ encyclopedic.museum
2035
+ england.museum
2036
+ entomology.museum
2037
+ environment.museum
2038
+ environmentalconservation.museum
2039
+ epilepsy.museum
2040
+ essex.museum
2041
+ estate.museum
2042
+ ethnology.museum
2043
+ exeter.museum
2044
+ exhibition.museum
2045
+ family.museum
2046
+ farm.museum
2047
+ farmequipment.museum
2048
+ farmers.museum
2049
+ farmstead.museum
2050
+ field.museum
2051
+ figueres.museum
2052
+ filatelia.museum
2053
+ film.museum
2054
+ fineart.museum
2055
+ finearts.museum
2056
+ finland.museum
2057
+ flanders.museum
2058
+ florida.museum
2059
+ force.museum
2060
+ fortmissoula.museum
2061
+ fortworth.museum
2062
+ foundation.museum
2063
+ francaise.museum
2064
+ frankfurt.museum
2065
+ franziskaner.museum
2066
+ freemasonry.museum
2067
+ freiburg.museum
2068
+ fribourg.museum
2069
+ frog.museum
2070
+ fundacio.museum
2071
+ furniture.museum
2072
+ gallery.museum
2073
+ garden.museum
2074
+ gateway.museum
2075
+ geelvinck.museum
2076
+ gemological.museum
2077
+ geology.museum
2078
+ georgia.museum
2079
+ giessen.museum
2080
+ glas.museum
2081
+ glass.museum
2082
+ gorge.museum
2083
+ grandrapids.museum
2084
+ graz.museum
2085
+ guernsey.museum
2086
+ halloffame.museum
2087
+ hamburg.museum
2088
+ handson.museum
2089
+ harvestcelebration.museum
2090
+ hawaii.museum
2091
+ health.museum
2092
+ heimatunduhren.museum
2093
+ hellas.museum
2094
+ helsinki.museum
2095
+ hembygdsforbund.museum
2096
+ heritage.museum
2097
+ histoire.museum
2098
+ historical.museum
2099
+ historicalsociety.museum
2100
+ historichouses.museum
2101
+ historisch.museum
2102
+ historisches.museum
2103
+ history.museum
2104
+ historyofscience.museum
2105
+ horology.museum
2106
+ house.museum
2107
+ humanities.museum
2108
+ illustration.museum
2109
+ imageandsound.museum
2110
+ indian.museum
2111
+ indiana.museum
2112
+ indianapolis.museum
2113
+ indianmarket.museum
2114
+ intelligence.museum
2115
+ interactive.museum
2116
+ iraq.museum
2117
+ iron.museum
2118
+ isleofman.museum
2119
+ jamison.museum
2120
+ jefferson.museum
2121
+ jerusalem.museum
2122
+ jewelry.museum
2123
+ jewish.museum
2124
+ jewishart.museum
2125
+ jfk.museum
2126
+ journalism.museum
2127
+ judaica.museum
2128
+ judygarland.museum
2129
+ juedisches.museum
2130
+ juif.museum
2131
+ karate.museum
2132
+ karikatur.museum
2133
+ kids.museum
2134
+ koebenhavn.museum
2135
+ koeln.museum
2136
+ kunst.museum
2137
+ kunstsammlung.museum
2138
+ kunstunddesign.museum
2139
+ labor.museum
2140
+ labour.museum
2141
+ lajolla.museum
2142
+ lancashire.museum
2143
+ landes.museum
2144
+ lans.museum
2145
+ läns.museum
2146
+ larsson.museum
2147
+ lewismiller.museum
2148
+ lincoln.museum
2149
+ linz.museum
2150
+ living.museum
2151
+ livinghistory.museum
2152
+ localhistory.museum
2153
+ london.museum
2154
+ losangeles.museum
2155
+ louvre.museum
2156
+ loyalist.museum
2157
+ lucerne.museum
2158
+ luxembourg.museum
2159
+ luzern.museum
2160
+ mad.museum
2161
+ madrid.museum
2162
+ mallorca.museum
2163
+ manchester.museum
2164
+ mansion.museum
2165
+ mansions.museum
2166
+ manx.museum
2167
+ marburg.museum
2168
+ maritime.museum
2169
+ maritimo.museum
2170
+ maryland.museum
2171
+ marylhurst.museum
2172
+ media.museum
2173
+ medical.museum
2174
+ medizinhistorisches.museum
2175
+ meeres.museum
2176
+ memorial.museum
2177
+ mesaverde.museum
2178
+ michigan.museum
2179
+ midatlantic.museum
2180
+ military.museum
2181
+ mill.museum
2182
+ miners.museum
2183
+ mining.museum
2184
+ minnesota.museum
2185
+ missile.museum
2186
+ missoula.museum
2187
+ modern.museum
2188
+ moma.museum
2189
+ money.museum
2190
+ monmouth.museum
2191
+ monticello.museum
2192
+ montreal.museum
2193
+ moscow.museum
2194
+ motorcycle.museum
2195
+ muenchen.museum
2196
+ muenster.museum
2197
+ mulhouse.museum
2198
+ muncie.museum
2199
+ museet.museum
2200
+ museumcenter.museum
2201
+ museumvereniging.museum
2202
+ music.museum
2203
+ national.museum
2204
+ nationalfirearms.museum
2205
+ nationalheritage.museum
2206
+ nativeamerican.museum
2207
+ naturalhistory.museum
2208
+ naturalhistorymuseum.museum
2209
+ naturalsciences.museum
2210
+ nature.museum
2211
+ naturhistorisches.museum
2212
+ natuurwetenschappen.museum
2213
+ naumburg.museum
2214
+ naval.museum
2215
+ nebraska.museum
2216
+ neues.museum
2217
+ newhampshire.museum
2218
+ newjersey.museum
2219
+ newmexico.museum
2220
+ newport.museum
2221
+ newspaper.museum
2222
+ newyork.museum
2223
+ niepce.museum
2224
+ norfolk.museum
2225
+ north.museum
2226
+ nrw.museum
2227
+ nuernberg.museum
2228
+ nuremberg.museum
2229
+ nyc.museum
2230
+ nyny.museum
2231
+ oceanographic.museum
2232
+ oceanographique.museum
2233
+ omaha.museum
2234
+ online.museum
2235
+ ontario.museum
2236
+ openair.museum
2237
+ oregon.museum
2238
+ oregontrail.museum
2239
+ otago.museum
2240
+ oxford.museum
2241
+ pacific.museum
2242
+ paderborn.museum
2243
+ palace.museum
2244
+ paleo.museum
2245
+ palmsprings.museum
2246
+ panama.museum
2247
+ paris.museum
2248
+ pasadena.museum
2249
+ pharmacy.museum
2250
+ philadelphia.museum
2251
+ philadelphiaarea.museum
2252
+ philately.museum
2253
+ phoenix.museum
2254
+ photography.museum
2255
+ pilots.museum
2256
+ pittsburgh.museum
2257
+ planetarium.museum
2258
+ plantation.museum
2259
+ plants.museum
2260
+ plaza.museum
2261
+ portal.museum
2262
+ portland.museum
2263
+ portlligat.museum
2264
+ posts-and-telecommunications.museum
2265
+ preservation.museum
2266
+ presidio.museum
2267
+ press.museum
2268
+ project.museum
2269
+ public.museum
2270
+ pubol.museum
2271
+ quebec.museum
2272
+ railroad.museum
2273
+ railway.museum
2274
+ research.museum
2275
+ resistance.museum
2276
+ riodejaneiro.museum
2277
+ rochester.museum
2278
+ rockart.museum
2279
+ roma.museum
2280
+ russia.museum
2281
+ saintlouis.museum
2282
+ salem.museum
2283
+ salvadordali.museum
2284
+ salzburg.museum
2285
+ sandiego.museum
2286
+ sanfrancisco.museum
2287
+ santabarbara.museum
2288
+ santacruz.museum
2289
+ santafe.museum
2290
+ saskatchewan.museum
2291
+ satx.museum
2292
+ savannahga.museum
2293
+ schlesisches.museum
2294
+ schoenbrunn.museum
2295
+ schokoladen.museum
2296
+ school.museum
2297
+ schweiz.museum
2298
+ science.museum
2299
+ scienceandhistory.museum
2300
+ scienceandindustry.museum
2301
+ sciencecenter.museum
2302
+ sciencecenters.museum
2303
+ science-fiction.museum
2304
+ sciencehistory.museum
2305
+ sciences.museum
2306
+ sciencesnaturelles.museum
2307
+ scotland.museum
2308
+ seaport.museum
2309
+ settlement.museum
2310
+ settlers.museum
2311
+ shell.museum
2312
+ sherbrooke.museum
2313
+ sibenik.museum
2314
+ silk.museum
2315
+ ski.museum
2316
+ skole.museum
2317
+ society.museum
2318
+ sologne.museum
2319
+ soundandvision.museum
2320
+ southcarolina.museum
2321
+ southwest.museum
2322
+ space.museum
2323
+ spy.museum
2324
+ square.museum
2325
+ stadt.museum
2326
+ stalbans.museum
2327
+ starnberg.museum
2328
+ state.museum
2329
+ stateofdelaware.museum
2330
+ station.museum
2331
+ steam.museum
2332
+ steiermark.museum
2333
+ stjohn.museum
2334
+ stockholm.museum
2335
+ stpetersburg.museum
2336
+ stuttgart.museum
2337
+ suisse.museum
2338
+ surgeonshall.museum
2339
+ surrey.museum
2340
+ svizzera.museum
2341
+ sweden.museum
2342
+ sydney.museum
2343
+ tank.museum
2344
+ tcm.museum
2345
+ technology.museum
2346
+ telekommunikation.museum
2347
+ television.museum
2348
+ texas.museum
2349
+ textile.museum
2350
+ theater.museum
2351
+ time.museum
2352
+ timekeeping.museum
2353
+ topology.museum
2354
+ torino.museum
2355
+ touch.museum
2356
+ town.museum
2357
+ transport.museum
2358
+ tree.museum
2359
+ trolley.museum
2360
+ trust.museum
2361
+ trustee.museum
2362
+ uhren.museum
2363
+ ulm.museum
2364
+ undersea.museum
2365
+ university.museum
2366
+ usa.museum
2367
+ usantiques.museum
2368
+ usarts.museum
2369
+ uscountryestate.museum
2370
+ usculture.museum
2371
+ usdecorativearts.museum
2372
+ usgarden.museum
2373
+ ushistory.museum
2374
+ ushuaia.museum
2375
+ uslivinghistory.museum
2376
+ utah.museum
2377
+ uvic.museum
2378
+ valley.museum
2379
+ vantaa.museum
2380
+ versailles.museum
2381
+ viking.museum
2382
+ village.museum
2383
+ virginia.museum
2384
+ virtual.museum
2385
+ virtuel.museum
2386
+ vlaanderen.museum
2387
+ volkenkunde.museum
2388
+ wales.museum
2389
+ wallonie.museum
2390
+ war.museum
2391
+ washingtondc.museum
2392
+ watchandclock.museum
2393
+ watch-and-clock.museum
2394
+ western.museum
2395
+ westfalen.museum
2396
+ whaling.museum
2397
+ wildlife.museum
2398
+ williamsburg.museum
2399
+ windmill.museum
2400
+ workshop.museum
2401
+ york.museum
2402
+ yorkshire.museum
2403
+ yosemite.museum
2404
+ youth.museum
2405
+ zoological.museum
2406
+ zoology.museum
2407
+ ירושלים.museum
2408
+ иком.museum
2409
+
2410
+ // mv : http://en.wikipedia.org/wiki/.mv
2411
+ *.mv
2412
+
2413
+ // mw : http://www.registrar.mw/
2414
+ mw
2415
+ ac.mw
2416
+ biz.mw
2417
+ co.mw
2418
+ com.mw
2419
+ coop.mw
2420
+ edu.mw
2421
+ gov.mw
2422
+ int.mw
2423
+ net.mw
2424
+ org.mw
2425
+
2426
+ // mx : http://www.nic.mx/
2427
+ // Submitted by registry <farias@nic.mx> 2008-06-19
2428
+ mx
2429
+ com.mx
2430
+ org.mx
2431
+ gob.mx
2432
+ edu.mx
2433
+ net.mx
2434
+
2435
+ // my : http://www.mynic.net.my/
2436
+ my
2437
+ com.my
2438
+ net.my
2439
+ org.my
2440
+ gov.my
2441
+ edu.my
2442
+ mil.my
2443
+ name.my
2444
+
2445
+ // mz : http://www.gobin.info/domainname/mz-template.doc
2446
+ *.mz
2447
+
2448
+ // na : http://www.na-nic.com.na/
2449
+ // http://www.info.na/domain/
2450
+ na
2451
+ info.na
2452
+ pro.na
2453
+ name.na
2454
+ school.na
2455
+ or.na
2456
+ dr.na
2457
+ us.na
2458
+ mx.na
2459
+ ca.na
2460
+ in.na
2461
+ cc.na
2462
+ tv.na
2463
+ ws.na
2464
+ mobi.na
2465
+ co.na
2466
+ com.na
2467
+ org.na
2468
+
2469
+ // name : has 2nd-level tlds, but there's no list of them
2470
+ name
2471
+
2472
+ // nc : http://www.cctld.nc/
2473
+ nc
2474
+
2475
+ // ne : http://en.wikipedia.org/wiki/.ne
2476
+ ne
2477
+
2478
+ // net : http://en.wikipedia.org/wiki/.net
2479
+ net
2480
+
2481
+ // CentralNic names : http://www.centralnic.com/names/domains
2482
+ // Submitted by registry <gavin.brown@centralnic.com> 2008-06-17
2483
+ gb.net
2484
+ se.net
2485
+ uk.net
2486
+
2487
+ // ZaNiC names : http://www.za.net/
2488
+ // Confirmed by registry <hostmaster@nic.za.net> 2009-10-03
2489
+ za.net
2490
+
2491
+ // nf : http://en.wikipedia.org/wiki/.nf
2492
+ nf
2493
+ com.nf
2494
+ net.nf
2495
+ per.nf
2496
+ rec.nf
2497
+ web.nf
2498
+ arts.nf
2499
+ firm.nf
2500
+ info.nf
2501
+ other.nf
2502
+ store.nf
2503
+
2504
+ // ng : http://psg.com/dns/ng/
2505
+ // Submitted by registry <randy@psg.com> 2008-06-17
2506
+ ac.ng
2507
+ com.ng
2508
+ edu.ng
2509
+ gov.ng
2510
+ net.ng
2511
+ org.ng
2512
+
2513
+ // ni : http://www.nic.ni/dominios.htm
2514
+ *.ni
2515
+
2516
+ // nl : http://www.domain-registry.nl/ace.php/c,728,122,,,,Home.html
2517
+ // Confirmed by registry <Antoin.Verschuren@sidn.nl> (with technical
2518
+ // reservations) 2008-06-08
2519
+ nl
2520
+
2521
+ // no : http://www.norid.no/regelverk/index.en.html
2522
+ // The Norwegian registry has declined to notify us of updates. The web pages
2523
+ // referenced below are the official source of the data. There is also an
2524
+ // announce mailing list:
2525
+ // https://postlister.uninett.no/sympa/info/norid-diskusjon
2526
+ no
2527
+ // Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html
2528
+ fhs.no
2529
+ vgs.no
2530
+ fylkesbibl.no
2531
+ folkebibl.no
2532
+ museum.no
2533
+ idrett.no
2534
+ priv.no
2535
+ // Non-Norid generic domains : http://www.norid.no/regelverk/vedlegg-d.en.html
2536
+ mil.no
2537
+ stat.no
2538
+ dep.no
2539
+ kommune.no
2540
+ herad.no
2541
+ // no geographical names : http://www.norid.no/regelverk/vedlegg-b.en.html
2542
+ // counties
2543
+ aa.no
2544
+ ah.no
2545
+ bu.no
2546
+ fm.no
2547
+ hl.no
2548
+ hm.no
2549
+ jan-mayen.no
2550
+ mr.no
2551
+ nl.no
2552
+ nt.no
2553
+ of.no
2554
+ ol.no
2555
+ oslo.no
2556
+ rl.no
2557
+ sf.no
2558
+ st.no
2559
+ svalbard.no
2560
+ tm.no
2561
+ tr.no
2562
+ va.no
2563
+ vf.no
2564
+ // primary and lower secondary schools per county
2565
+ gs.aa.no
2566
+ gs.ah.no
2567
+ gs.bu.no
2568
+ gs.fm.no
2569
+ gs.hl.no
2570
+ gs.hm.no
2571
+ gs.jan-mayen.no
2572
+ gs.mr.no
2573
+ gs.nl.no
2574
+ gs.nt.no
2575
+ gs.of.no
2576
+ gs.ol.no
2577
+ gs.oslo.no
2578
+ gs.rl.no
2579
+ gs.sf.no
2580
+ gs.st.no
2581
+ gs.svalbard.no
2582
+ gs.tm.no
2583
+ gs.tr.no
2584
+ gs.va.no
2585
+ gs.vf.no
2586
+ // cities
2587
+ akrehamn.no
2588
+ åkrehamn.no
2589
+ algard.no
2590
+ ålgård.no
2591
+ arna.no
2592
+ brumunddal.no
2593
+ bryne.no
2594
+ bronnoysund.no
2595
+ brønnøysund.no
2596
+ drobak.no
2597
+ drøbak.no
2598
+ egersund.no
2599
+ fetsund.no
2600
+ floro.no
2601
+ florø.no
2602
+ fredrikstad.no
2603
+ hokksund.no
2604
+ honefoss.no
2605
+ hønefoss.no
2606
+ jessheim.no
2607
+ jorpeland.no
2608
+ jørpeland.no
2609
+ kirkenes.no
2610
+ kopervik.no
2611
+ krokstadelva.no
2612
+ langevag.no
2613
+ langevåg.no
2614
+ leirvik.no
2615
+ mjondalen.no
2616
+ mjøndalen.no
2617
+ mo-i-rana.no
2618
+ mosjoen.no
2619
+ mosjøen.no
2620
+ nesoddtangen.no
2621
+ orkanger.no
2622
+ osoyro.no
2623
+ osøyro.no
2624
+ raholt.no
2625
+ råholt.no
2626
+ sandnessjoen.no
2627
+ sandnessjøen.no
2628
+ skedsmokorset.no
2629
+ slattum.no
2630
+ spjelkavik.no
2631
+ stathelle.no
2632
+ stavern.no
2633
+ stjordalshalsen.no
2634
+ stjørdalshalsen.no
2635
+ tananger.no
2636
+ tranby.no
2637
+ vossevangen.no
2638
+ // communities
2639
+ afjord.no
2640
+ åfjord.no
2641
+ agdenes.no
2642
+ al.no
2643
+ ål.no
2644
+ alesund.no
2645
+ ålesund.no
2646
+ alstahaug.no
2647
+ alta.no
2648
+ áltá.no
2649
+ alaheadju.no
2650
+ álaheadju.no
2651
+ alvdal.no
2652
+ amli.no
2653
+ åmli.no
2654
+ amot.no
2655
+ åmot.no
2656
+ andebu.no
2657
+ andoy.no
2658
+ andøy.no
2659
+ andasuolo.no
2660
+ ardal.no
2661
+ årdal.no
2662
+ aremark.no
2663
+ arendal.no
2664
+ ås.no
2665
+ aseral.no
2666
+ åseral.no
2667
+ asker.no
2668
+ askim.no
2669
+ askvoll.no
2670
+ askoy.no
2671
+ askøy.no
2672
+ asnes.no
2673
+ åsnes.no
2674
+ audnedaln.no
2675
+ aukra.no
2676
+ aure.no
2677
+ aurland.no
2678
+ aurskog-holand.no
2679
+ aurskog-høland.no
2680
+ austevoll.no
2681
+ austrheim.no
2682
+ averoy.no
2683
+ averøy.no
2684
+ balestrand.no
2685
+ ballangen.no
2686
+ balat.no
2687
+ bálát.no
2688
+ balsfjord.no
2689
+ bahccavuotna.no
2690
+ báhccavuotna.no
2691
+ bamble.no
2692
+ bardu.no
2693
+ beardu.no
2694
+ beiarn.no
2695
+ bajddar.no
2696
+ bájddar.no
2697
+ baidar.no
2698
+ báidár.no
2699
+ berg.no
2700
+ bergen.no
2701
+ berlevag.no
2702
+ berlevåg.no
2703
+ bearalvahki.no
2704
+ bearalváhki.no
2705
+ bindal.no
2706
+ birkenes.no
2707
+ bjarkoy.no
2708
+ bjarkøy.no
2709
+ bjerkreim.no
2710
+ bjugn.no
2711
+ bodo.no
2712
+ bodø.no
2713
+ badaddja.no
2714
+ bådåddjå.no
2715
+ budejju.no
2716
+ bokn.no
2717
+ bremanger.no
2718
+ bronnoy.no
2719
+ brønnøy.no
2720
+ bygland.no
2721
+ bykle.no
2722
+ barum.no
2723
+ bærum.no
2724
+ bo.telemark.no
2725
+ bø.telemark.no
2726
+ bo.nordland.no
2727
+ bø.nordland.no
2728
+ bievat.no
2729
+ bievát.no
2730
+ bomlo.no
2731
+ bømlo.no
2732
+ batsfjord.no
2733
+ båtsfjord.no
2734
+ bahcavuotna.no
2735
+ báhcavuotna.no
2736
+ dovre.no
2737
+ drammen.no
2738
+ drangedal.no
2739
+ dyroy.no
2740
+ dyrøy.no
2741
+ donna.no
2742
+ dønna.no
2743
+ eid.no
2744
+ eidfjord.no
2745
+ eidsberg.no
2746
+ eidskog.no
2747
+ eidsvoll.no
2748
+ eigersund.no
2749
+ elverum.no
2750
+ enebakk.no
2751
+ engerdal.no
2752
+ etne.no
2753
+ etnedal.no
2754
+ evenes.no
2755
+ evenassi.no
2756
+ evenášši.no
2757
+ evje-og-hornnes.no
2758
+ farsund.no
2759
+ fauske.no
2760
+ fuossko.no
2761
+ fuoisku.no
2762
+ fedje.no
2763
+ fet.no
2764
+ finnoy.no
2765
+ finnøy.no
2766
+ fitjar.no
2767
+ fjaler.no
2768
+ fjell.no
2769
+ flakstad.no
2770
+ flatanger.no
2771
+ flekkefjord.no
2772
+ flesberg.no
2773
+ flora.no
2774
+ fla.no
2775
+ flå.no
2776
+ folldal.no
2777
+ forsand.no
2778
+ fosnes.no
2779
+ frei.no
2780
+ frogn.no
2781
+ froland.no
2782
+ frosta.no
2783
+ frana.no
2784
+ fræna.no
2785
+ froya.no
2786
+ frøya.no
2787
+ fusa.no
2788
+ fyresdal.no
2789
+ forde.no
2790
+ førde.no
2791
+ gamvik.no
2792
+ gangaviika.no
2793
+ gáŋgaviika.no
2794
+ gaular.no
2795
+ gausdal.no
2796
+ gildeskal.no
2797
+ gildeskål.no
2798
+ giske.no
2799
+ gjemnes.no
2800
+ gjerdrum.no
2801
+ gjerstad.no
2802
+ gjesdal.no
2803
+ gjovik.no
2804
+ gjøvik.no
2805
+ gloppen.no
2806
+ gol.no
2807
+ gran.no
2808
+ grane.no
2809
+ granvin.no
2810
+ gratangen.no
2811
+ grimstad.no
2812
+ grong.no
2813
+ kraanghke.no
2814
+ kråanghke.no
2815
+ grue.no
2816
+ gulen.no
2817
+ hadsel.no
2818
+ halden.no
2819
+ halsa.no
2820
+ hamar.no
2821
+ hamaroy.no
2822
+ habmer.no
2823
+ hábmer.no
2824
+ hapmir.no
2825
+ hápmir.no
2826
+ hammerfest.no
2827
+ hammarfeasta.no
2828
+ hámmárfeasta.no
2829
+ haram.no
2830
+ hareid.no
2831
+ harstad.no
2832
+ hasvik.no
2833
+ aknoluokta.no
2834
+ ákŋoluokta.no
2835
+ hattfjelldal.no
2836
+ aarborte.no
2837
+ haugesund.no
2838
+ hemne.no
2839
+ hemnes.no
2840
+ hemsedal.no
2841
+ heroy.more-og-romsdal.no
2842
+ herøy.møre-og-romsdal.no
2843
+ heroy.nordland.no
2844
+ herøy.nordland.no
2845
+ hitra.no
2846
+ hjartdal.no
2847
+ hjelmeland.no
2848
+ hobol.no
2849
+ hobøl.no
2850
+ hof.no
2851
+ hol.no
2852
+ hole.no
2853
+ holmestrand.no
2854
+ holtalen.no
2855
+ holtålen.no
2856
+ hornindal.no
2857
+ horten.no
2858
+ hurdal.no
2859
+ hurum.no
2860
+ hvaler.no
2861
+ hyllestad.no
2862
+ hagebostad.no
2863
+ hægebostad.no
2864
+ hoyanger.no
2865
+ høyanger.no
2866
+ hoylandet.no
2867
+ høylandet.no
2868
+ ha.no
2869
+ hå.no
2870
+ ibestad.no
2871
+ inderoy.no
2872
+ inderøy.no
2873
+ iveland.no
2874
+ jevnaker.no
2875
+ jondal.no
2876
+ jolster.no
2877
+ jølster.no
2878
+ karasjok.no
2879
+ karasjohka.no
2880
+ kárášjohka.no
2881
+ karlsoy.no
2882
+ galsa.no
2883
+ gálsá.no
2884
+ karmoy.no
2885
+ karmøy.no
2886
+ kautokeino.no
2887
+ guovdageaidnu.no
2888
+ klepp.no
2889
+ klabu.no
2890
+ klæbu.no
2891
+ kongsberg.no
2892
+ kongsvinger.no
2893
+ kragero.no
2894
+ kragerø.no
2895
+ kristiansand.no
2896
+ kristiansund.no
2897
+ krodsherad.no
2898
+ krødsherad.no
2899
+ kvalsund.no
2900
+ rahkkeravju.no
2901
+ ráhkkerávju.no
2902
+ kvam.no
2903
+ kvinesdal.no
2904
+ kvinnherad.no
2905
+ kviteseid.no
2906
+ kvitsoy.no
2907
+ kvitsøy.no
2908
+ kvafjord.no
2909
+ kvæfjord.no
2910
+ giehtavuoatna.no
2911
+ kvanangen.no
2912
+ kvænangen.no
2913
+ navuotna.no
2914
+ návuotna.no
2915
+ kafjord.no
2916
+ kåfjord.no
2917
+ gaivuotna.no
2918
+ gáivuotna.no
2919
+ larvik.no
2920
+ lavangen.no
2921
+ lavagis.no
2922
+ loabat.no
2923
+ loabát.no
2924
+ lebesby.no
2925
+ davvesiida.no
2926
+ leikanger.no
2927
+ leirfjord.no
2928
+ leka.no
2929
+ leksvik.no
2930
+ lenvik.no
2931
+ leangaviika.no
2932
+ leaŋgaviika.no
2933
+ lesja.no
2934
+ levanger.no
2935
+ lier.no
2936
+ lierne.no
2937
+ lillehammer.no
2938
+ lillesand.no
2939
+ lindesnes.no
2940
+ lindas.no
2941
+ lindås.no
2942
+ lom.no
2943
+ loppa.no
2944
+ lahppi.no
2945
+ láhppi.no
2946
+ lund.no
2947
+ lunner.no
2948
+ luroy.no
2949
+ lurøy.no
2950
+ luster.no
2951
+ lyngdal.no
2952
+ lyngen.no
2953
+ ivgu.no
2954
+ lardal.no
2955
+ lerdal.no
2956
+ lærdal.no
2957
+ lodingen.no
2958
+ lødingen.no
2959
+ lorenskog.no
2960
+ lørenskog.no
2961
+ loten.no
2962
+ løten.no
2963
+ malvik.no
2964
+ masoy.no
2965
+ måsøy.no
2966
+ muosat.no
2967
+ muosát.no
2968
+ mandal.no
2969
+ marker.no
2970
+ marnardal.no
2971
+ masfjorden.no
2972
+ meland.no
2973
+ meldal.no
2974
+ melhus.no
2975
+ meloy.no
2976
+ meløy.no
2977
+ meraker.no
2978
+ meråker.no
2979
+ moareke.no
2980
+ moåreke.no
2981
+ midsund.no
2982
+ midtre-gauldal.no
2983
+ modalen.no
2984
+ modum.no
2985
+ molde.no
2986
+ moskenes.no
2987
+ moss.no
2988
+ mosvik.no
2989
+ malselv.no
2990
+ målselv.no
2991
+ malatvuopmi.no
2992
+ málatvuopmi.no
2993
+ namdalseid.no
2994
+ aejrie.no
2995
+ namsos.no
2996
+ namsskogan.no
2997
+ naamesjevuemie.no
2998
+ nååmesjevuemie.no
2999
+ laakesvuemie.no
3000
+ nannestad.no
3001
+ narvik.no
3002
+ narviika.no
3003
+ naustdal.no
3004
+ nedre-eiker.no
3005
+ nes.akershus.no
3006
+ nes.buskerud.no
3007
+ nesna.no
3008
+ nesodden.no
3009
+ nesseby.no
3010
+ unjarga.no
3011
+ unjárga.no
3012
+ nesset.no
3013
+ nissedal.no
3014
+ nittedal.no
3015
+ nord-aurdal.no
3016
+ nord-fron.no
3017
+ nord-odal.no
3018
+ norddal.no
3019
+ nordkapp.no
3020
+ davvenjarga.no
3021
+ davvenjárga.no
3022
+ nordre-land.no
3023
+ nordreisa.no
3024
+ raisa.no
3025
+ ráisa.no
3026
+ nore-og-uvdal.no
3027
+ notodden.no
3028
+ naroy.no
3029
+ nærøy.no
3030
+ notteroy.no
3031
+ nøtterøy.no
3032
+ odda.no
3033
+ oksnes.no
3034
+ øksnes.no
3035
+ oppdal.no
3036
+ oppegard.no
3037
+ oppegård.no
3038
+ orkdal.no
3039
+ orland.no
3040
+ ørland.no
3041
+ orskog.no
3042
+ ørskog.no
3043
+ orsta.no
3044
+ ørsta.no
3045
+ os.hedmark.no
3046
+ os.hordaland.no
3047
+ osen.no
3048
+ osteroy.no
3049
+ osterøy.no
3050
+ ostre-toten.no
3051
+ østre-toten.no
3052
+ overhalla.no
3053
+ ovre-eiker.no
3054
+ øvre-eiker.no
3055
+ oyer.no
3056
+ øyer.no
3057
+ oygarden.no
3058
+ øygarden.no
3059
+ oystre-slidre.no
3060
+ øystre-slidre.no
3061
+ porsanger.no
3062
+ porsangu.no
3063
+ porsáŋgu.no
3064
+ porsgrunn.no
3065
+ radoy.no
3066
+ radøy.no
3067
+ rakkestad.no
3068
+ rana.no
3069
+ ruovat.no
3070
+ randaberg.no
3071
+ rauma.no
3072
+ rendalen.no
3073
+ rennebu.no
3074
+ rennesoy.no
3075
+ rennesøy.no
3076
+ rindal.no
3077
+ ringebu.no
3078
+ ringerike.no
3079
+ ringsaker.no
3080
+ rissa.no
3081
+ risor.no
3082
+ risør.no
3083
+ roan.no
3084
+ rollag.no
3085
+ rygge.no
3086
+ ralingen.no
3087
+ rælingen.no
3088
+ rodoy.no
3089
+ rødøy.no
3090
+ romskog.no
3091
+ rømskog.no
3092
+ roros.no
3093
+ røros.no
3094
+ rost.no
3095
+ røst.no
3096
+ royken.no
3097
+ røyken.no
3098
+ royrvik.no
3099
+ røyrvik.no
3100
+ rade.no
3101
+ råde.no
3102
+ salangen.no
3103
+ siellak.no
3104
+ saltdal.no
3105
+ salat.no
3106
+ sálát.no
3107
+ sálat.no
3108
+ samnanger.no
3109
+ sande.more-og-romsdal.no
3110
+ sande.møre-og-romsdal.no
3111
+ sande.vestfold.no
3112
+ sandefjord.no
3113
+ sandnes.no
3114
+ sandoy.no
3115
+ sandøy.no
3116
+ sarpsborg.no
3117
+ sauda.no
3118
+ sauherad.no
3119
+ sel.no
3120
+ selbu.no
3121
+ selje.no
3122
+ seljord.no
3123
+ sigdal.no
3124
+ siljan.no
3125
+ sirdal.no
3126
+ skaun.no
3127
+ skedsmo.no
3128
+ ski.no
3129
+ skien.no
3130
+ skiptvet.no
3131
+ skjervoy.no
3132
+ skjervøy.no
3133
+ skierva.no
3134
+ skiervá.no
3135
+ skjak.no
3136
+ skjåk.no
3137
+ skodje.no
3138
+ skanland.no
3139
+ skånland.no
3140
+ skanit.no
3141
+ skánit.no
3142
+ smola.no
3143
+ smøla.no
3144
+ snillfjord.no
3145
+ snasa.no
3146
+ snåsa.no
3147
+ snoasa.no
3148
+ snaase.no
3149
+ snåase.no
3150
+ sogndal.no
3151
+ sokndal.no
3152
+ sola.no
3153
+ solund.no
3154
+ songdalen.no
3155
+ sortland.no
3156
+ spydeberg.no
3157
+ stange.no
3158
+ stavanger.no
3159
+ steigen.no
3160
+ steinkjer.no
3161
+ stjordal.no
3162
+ stjørdal.no
3163
+ stokke.no
3164
+ stor-elvdal.no
3165
+ stord.no
3166
+ stordal.no
3167
+ storfjord.no
3168
+ omasvuotna.no
3169
+ strand.no
3170
+ stranda.no
3171
+ stryn.no
3172
+ sula.no
3173
+ suldal.no
3174
+ sund.no
3175
+ sunndal.no
3176
+ surnadal.no
3177
+ sveio.no
3178
+ svelvik.no
3179
+ sykkylven.no
3180
+ sogne.no
3181
+ søgne.no
3182
+ somna.no
3183
+ sømna.no
3184
+ sondre-land.no
3185
+ søndre-land.no
3186
+ sor-aurdal.no
3187
+ sør-aurdal.no
3188
+ sor-fron.no
3189
+ sør-fron.no
3190
+ sor-odal.no
3191
+ sør-odal.no
3192
+ sor-varanger.no
3193
+ sør-varanger.no
3194
+ matta-varjjat.no
3195
+ mátta-várjjat.no
3196
+ sorfold.no
3197
+ sørfold.no
3198
+ sorreisa.no
3199
+ sørreisa.no
3200
+ sorum.no
3201
+ sørum.no
3202
+ tana.no
3203
+ deatnu.no
3204
+ time.no
3205
+ tingvoll.no
3206
+ tinn.no
3207
+ tjeldsund.no
3208
+ dielddanuorri.no
3209
+ tjome.no
3210
+ tjøme.no
3211
+ tokke.no
3212
+ tolga.no
3213
+ torsken.no
3214
+ tranoy.no
3215
+ tranøy.no
3216
+ tromso.no
3217
+ tromsø.no
3218
+ tromsa.no
3219
+ romsa.no
3220
+ trondheim.no
3221
+ troandin.no
3222
+ trysil.no
3223
+ trana.no
3224
+ træna.no
3225
+ trogstad.no
3226
+ trøgstad.no
3227
+ tvedestrand.no
3228
+ tydal.no
3229
+ tynset.no
3230
+ tysfjord.no
3231
+ divtasvuodna.no
3232
+ divttasvuotna.no
3233
+ tysnes.no
3234
+ tysvar.no
3235
+ tysvær.no
3236
+ tonsberg.no
3237
+ tønsberg.no
3238
+ ullensaker.no
3239
+ ullensvang.no
3240
+ ulvik.no
3241
+ utsira.no
3242
+ vadso.no
3243
+ vadsø.no
3244
+ cahcesuolo.no
3245
+ čáhcesuolo.no
3246
+ vaksdal.no
3247
+ valle.no
3248
+ vang.no
3249
+ vanylven.no
3250
+ vardo.no
3251
+ vardø.no
3252
+ varggat.no
3253
+ várggát.no
3254
+ vefsn.no
3255
+ vaapste.no
3256
+ vega.no
3257
+ vegarshei.no
3258
+ vegårshei.no
3259
+ vennesla.no
3260
+ verdal.no
3261
+ verran.no
3262
+ vestby.no
3263
+ vestnes.no
3264
+ vestre-slidre.no
3265
+ vestre-toten.no
3266
+ vestvagoy.no
3267
+ vestvågøy.no
3268
+ vevelstad.no
3269
+ vik.no
3270
+ vikna.no
3271
+ vindafjord.no
3272
+ volda.no
3273
+ voss.no
3274
+ varoy.no
3275
+ værøy.no
3276
+ vagan.no
3277
+ vågan.no
3278
+ voagat.no
3279
+ vagsoy.no
3280
+ vågsøy.no
3281
+ vaga.no
3282
+ vågå.no
3283
+ valer.ostfold.no
3284
+ våler.østfold.no
3285
+ valer.hedmark.no
3286
+ våler.hedmark.no
3287
+
3288
+ // np : http://www.mos.com.np/register.html
3289
+ *.np
3290
+
3291
+ // nr : http://cenpac.net.nr/dns/index.html
3292
+ // Confirmed by registry <technician@cenpac.net.nr> 2008-06-17
3293
+ nr
3294
+ biz.nr
3295
+ info.nr
3296
+ gov.nr
3297
+ edu.nr
3298
+ org.nr
3299
+ net.nr
3300
+ com.nr
3301
+
3302
+ // nu : http://en.wikipedia.org/wiki/.nu
3303
+ nu
3304
+
3305
+ // nz : http://en.wikipedia.org/wiki/.nz
3306
+ *.nz
3307
+
3308
+ // om : http://en.wikipedia.org/wiki/.om
3309
+ *.om
3310
+
3311
+ // org : http://en.wikipedia.org/wiki/.org
3312
+ org
3313
+
3314
+ // CentralNic names : http://www.centralnic.com/names/domains
3315
+ // Submitted by registry <gavin.brown@centralnic.com> 2008-06-17
3316
+ ae.org
3317
+
3318
+ // ZaNiC names : http://www.za.net/
3319
+ // Confirmed by registry <hostmaster@nic.za.net> 2009-10-03
3320
+ za.org
3321
+
3322
+ // pa : http://www.nic.pa/
3323
+ // Some additional second level "domains" resolve directly as hostnames, such as
3324
+ // pannet.pa, so we add a rule for "pa".
3325
+ pa
3326
+ ac.pa
3327
+ gob.pa
3328
+ com.pa
3329
+ org.pa
3330
+ sld.pa
3331
+ edu.pa
3332
+ net.pa
3333
+ ing.pa
3334
+ abo.pa
3335
+ med.pa
3336
+ nom.pa
3337
+
3338
+ // pe : https://www.nic.pe/InformeFinalComision.pdf
3339
+ pe
3340
+ edu.pe
3341
+ gob.pe
3342
+ nom.pe
3343
+ mil.pe
3344
+ org.pe
3345
+ com.pe
3346
+ net.pe
3347
+
3348
+ // pf : http://www.gobin.info/domainname/formulaire-pf.pdf
3349
+ pf
3350
+ com.pf
3351
+ org.pf
3352
+ edu.pf
3353
+
3354
+ // pg : http://en.wikipedia.org/wiki/.pg
3355
+ *.pg
3356
+
3357
+ // ph : http://www.domains.ph/FAQ2.asp
3358
+ // Submitted by registry <jed@email.com.ph> 2008-06-13
3359
+ ph
3360
+ com.ph
3361
+ net.ph
3362
+ org.ph
3363
+ gov.ph
3364
+ edu.ph
3365
+ ngo.ph
3366
+ mil.ph
3367
+ i.ph
3368
+
3369
+ // pk : http://pk5.pknic.net.pk/pk5/msgNamepk.PK
3370
+ pk
3371
+ com.pk
3372
+ net.pk
3373
+ edu.pk
3374
+ org.pk
3375
+ fam.pk
3376
+ biz.pk
3377
+ web.pk
3378
+ gov.pk
3379
+ gob.pk
3380
+ gok.pk
3381
+ gon.pk
3382
+ gop.pk
3383
+ gos.pk
3384
+ info.pk
3385
+
3386
+ // pl : http://www.dns.pl/english/
3387
+ pl
3388
+ // NASK functional domains (nask.pl / dns.pl) : http://www.dns.pl/english/dns-funk.html
3389
+ aid.pl
3390
+ agro.pl
3391
+ atm.pl
3392
+ auto.pl
3393
+ biz.pl
3394
+ com.pl
3395
+ edu.pl
3396
+ gmina.pl
3397
+ gsm.pl
3398
+ info.pl
3399
+ mail.pl
3400
+ miasta.pl
3401
+ media.pl
3402
+ mil.pl
3403
+ net.pl
3404
+ nieruchomosci.pl
3405
+ nom.pl
3406
+ org.pl
3407
+ pc.pl
3408
+ powiat.pl
3409
+ priv.pl
3410
+ realestate.pl
3411
+ rel.pl
3412
+ sex.pl
3413
+ shop.pl
3414
+ sklep.pl
3415
+ sos.pl
3416
+ szkola.pl
3417
+ targi.pl
3418
+ tm.pl
3419
+ tourism.pl
3420
+ travel.pl
3421
+ turystyka.pl
3422
+ // ICM functional domains (icm.edu.pl)
3423
+ 6bone.pl
3424
+ art.pl
3425
+ mbone.pl
3426
+ // Government domains (administred by ippt.gov.pl)
3427
+ gov.pl
3428
+ uw.gov.pl
3429
+ um.gov.pl
3430
+ ug.gov.pl
3431
+ upow.gov.pl
3432
+ starostwo.gov.pl
3433
+ so.gov.pl
3434
+ sr.gov.pl
3435
+ po.gov.pl
3436
+ pa.gov.pl
3437
+ // other functional domains
3438
+ med.pl
3439
+ ngo.pl
3440
+ irc.pl
3441
+ usenet.pl
3442
+ // NASK geographical domains : http://www.dns.pl/english/dns-regiony.html
3443
+ augustow.pl
3444
+ babia-gora.pl
3445
+ bedzin.pl
3446
+ beskidy.pl
3447
+ bialowieza.pl
3448
+ bialystok.pl
3449
+ bielawa.pl
3450
+ bieszczady.pl
3451
+ boleslawiec.pl
3452
+ bydgoszcz.pl
3453
+ bytom.pl
3454
+ cieszyn.pl
3455
+ czeladz.pl
3456
+ czest.pl
3457
+ dlugoleka.pl
3458
+ elblag.pl
3459
+ elk.pl
3460
+ glogow.pl
3461
+ gniezno.pl
3462
+ gorlice.pl
3463
+ grajewo.pl
3464
+ ilawa.pl
3465
+ jaworzno.pl
3466
+ jelenia-gora.pl
3467
+ jgora.pl
3468
+ kalisz.pl
3469
+ kazimierz-dolny.pl
3470
+ karpacz.pl
3471
+ kartuzy.pl
3472
+ kaszuby.pl
3473
+ katowice.pl
3474
+ kepno.pl
3475
+ ketrzyn.pl
3476
+ klodzko.pl
3477
+ kobierzyce.pl
3478
+ kolobrzeg.pl
3479
+ konin.pl
3480
+ konskowola.pl
3481
+ kutno.pl
3482
+ lapy.pl
3483
+ lebork.pl
3484
+ legnica.pl
3485
+ lezajsk.pl
3486
+ limanowa.pl
3487
+ lomza.pl
3488
+ lowicz.pl
3489
+ lubin.pl
3490
+ lukow.pl
3491
+ malbork.pl
3492
+ malopolska.pl
3493
+ mazowsze.pl
3494
+ mazury.pl
3495
+ mielec.pl
3496
+ mielno.pl
3497
+ mragowo.pl
3498
+ naklo.pl
3499
+ nowaruda.pl
3500
+ nysa.pl
3501
+ olawa.pl
3502
+ olecko.pl
3503
+ olkusz.pl
3504
+ olsztyn.pl
3505
+ opoczno.pl
3506
+ opole.pl
3507
+ ostroda.pl
3508
+ ostroleka.pl
3509
+ ostrowiec.pl
3510
+ ostrowwlkp.pl
3511
+ pila.pl
3512
+ pisz.pl
3513
+ podhale.pl
3514
+ podlasie.pl
3515
+ polkowice.pl
3516
+ pomorze.pl
3517
+ pomorskie.pl
3518
+ prochowice.pl
3519
+ pruszkow.pl
3520
+ przeworsk.pl
3521
+ pulawy.pl
3522
+ radom.pl
3523
+ rawa-maz.pl
3524
+ rybnik.pl
3525
+ rzeszow.pl
3526
+ sanok.pl
3527
+ sejny.pl
3528
+ slask.pl
3529
+ slupsk.pl
3530
+ sosnowiec.pl
3531
+ stalowa-wola.pl
3532
+ skoczow.pl
3533
+ starachowice.pl
3534
+ stargard.pl
3535
+ suwalki.pl
3536
+ swidnica.pl
3537
+ swiebodzin.pl
3538
+ swinoujscie.pl
3539
+ szczecin.pl
3540
+ szczytno.pl
3541
+ tarnobrzeg.pl
3542
+ tgory.pl
3543
+ turek.pl
3544
+ tychy.pl
3545
+ ustka.pl
3546
+ walbrzych.pl
3547
+ warmia.pl
3548
+ warszawa.pl
3549
+ waw.pl
3550
+ wegrow.pl
3551
+ wielun.pl
3552
+ wlocl.pl
3553
+ wloclawek.pl
3554
+ wodzislaw.pl
3555
+ wolomin.pl
3556
+ wroclaw.pl
3557
+ zachpomor.pl
3558
+ zagan.pl
3559
+ zarow.pl
3560
+ zgora.pl
3561
+ zgorzelec.pl
3562
+ // TASK geographical domains (www.task.gda.pl/uslugi/dns)
3563
+ gda.pl
3564
+ gdansk.pl
3565
+ gdynia.pl
3566
+ sopot.pl
3567
+ // other geographical domains
3568
+ gliwice.pl
3569
+ krakow.pl
3570
+ poznan.pl
3571
+ wroc.pl
3572
+ zakopane.pl
3573
+
3574
+ // pn : http://www.government.pn/PnRegistry/policies.htm
3575
+ pn
3576
+ gov.pn
3577
+ co.pn
3578
+ org.pn
3579
+ edu.pn
3580
+ net.pn
3581
+
3582
+ // pr : http://www.nic.pr/index.asp?f=1
3583
+ pr
3584
+ com.pr
3585
+ net.pr
3586
+ org.pr
3587
+ gov.pr
3588
+ edu.pr
3589
+ isla.pr
3590
+ pro.pr
3591
+ biz.pr
3592
+ info.pr
3593
+ name.pr
3594
+ // these aren't mentioned on nic.pr, but on http://en.wikipedia.org/wiki/.pr
3595
+ est.pr
3596
+ prof.pr
3597
+ ac.pr
3598
+
3599
+ // pro : http://www.nic.pro/support_faq.htm
3600
+ pro
3601
+ aca.pro
3602
+ bar.pro
3603
+ cpa.pro
3604
+ jur.pro
3605
+ law.pro
3606
+ med.pro
3607
+ eng.pro
3608
+
3609
+ // ps : http://en.wikipedia.org/wiki/.ps
3610
+ // http://www.nic.ps/registration/policy.html#reg
3611
+ ps
3612
+ edu.ps
3613
+ gov.ps
3614
+ sec.ps
3615
+ plo.ps
3616
+ com.ps
3617
+ org.ps
3618
+ net.ps
3619
+
3620
+ // pt : http://online.dns.pt/dns/start_dns
3621
+ pt
3622
+ net.pt
3623
+ gov.pt
3624
+ org.pt
3625
+ edu.pt
3626
+ int.pt
3627
+ publ.pt
3628
+ com.pt
3629
+ nome.pt
3630
+
3631
+ // pw : http://en.wikipedia.org/wiki/.pw
3632
+ pw
3633
+ co.pw
3634
+ ne.pw
3635
+ or.pw
3636
+ ed.pw
3637
+ go.pw
3638
+ belau.pw
3639
+
3640
+ // py : http://www.nic.py/faq_a.html#faq_b
3641
+ *.py
3642
+
3643
+ // qa : http://www.qatar.net.qa/services/virtual.htm
3644
+ *.qa
3645
+
3646
+ // re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs
3647
+ re
3648
+ com.re
3649
+ asso.re
3650
+ nom.re
3651
+
3652
+ // ro : http://www.rotld.ro/
3653
+ ro
3654
+ com.ro
3655
+ org.ro
3656
+ tm.ro
3657
+ nt.ro
3658
+ nom.ro
3659
+ info.ro
3660
+ rec.ro
3661
+ arts.ro
3662
+ firm.ro
3663
+ store.ro
3664
+ www.ro
3665
+
3666
+ // rs : http://en.wikipedia.org/wiki/.rs
3667
+ rs
3668
+ co.rs
3669
+ org.rs
3670
+ edu.rs
3671
+ ac.rs
3672
+ gov.rs
3673
+ in.rs
3674
+
3675
+ // ru : http://www.cctld.ru/ru/docs/aktiv_8.php
3676
+ // Industry domains
3677
+ ru
3678
+ ac.ru
3679
+ com.ru
3680
+ edu.ru
3681
+ int.ru
3682
+ net.ru
3683
+ org.ru
3684
+ pp.ru
3685
+ // Geographical domains
3686
+ adygeya.ru
3687
+ altai.ru
3688
+ amur.ru
3689
+ arkhangelsk.ru
3690
+ astrakhan.ru
3691
+ bashkiria.ru
3692
+ belgorod.ru
3693
+ bir.ru
3694
+ bryansk.ru
3695
+ buryatia.ru
3696
+ cbg.ru
3697
+ chel.ru
3698
+ chelyabinsk.ru
3699
+ chita.ru
3700
+ chukotka.ru
3701
+ chuvashia.ru
3702
+ dagestan.ru
3703
+ dudinka.ru
3704
+ e-burg.ru
3705
+ grozny.ru
3706
+ irkutsk.ru
3707
+ ivanovo.ru
3708
+ izhevsk.ru
3709
+ jar.ru
3710
+ joshkar-ola.ru
3711
+ kalmykia.ru
3712
+ kaluga.ru
3713
+ kamchatka.ru
3714
+ karelia.ru
3715
+ kazan.ru
3716
+ kchr.ru
3717
+ kemerovo.ru
3718
+ khabarovsk.ru
3719
+ khakassia.ru
3720
+ khv.ru
3721
+ kirov.ru
3722
+ koenig.ru
3723
+ komi.ru
3724
+ kostroma.ru
3725
+ krasnoyarsk.ru
3726
+ kuban.ru
3727
+ kurgan.ru
3728
+ kursk.ru
3729
+ lipetsk.ru
3730
+ magadan.ru
3731
+ mari.ru
3732
+ mari-el.ru
3733
+ marine.ru
3734
+ mordovia.ru
3735
+ mosreg.ru
3736
+ msk.ru
3737
+ murmansk.ru
3738
+ nalchik.ru
3739
+ nnov.ru
3740
+ nov.ru
3741
+ novosibirsk.ru
3742
+ nsk.ru
3743
+ omsk.ru
3744
+ orenburg.ru
3745
+ oryol.ru
3746
+ palana.ru
3747
+ penza.ru
3748
+ perm.ru
3749
+ pskov.ru
3750
+ ptz.ru
3751
+ rnd.ru
3752
+ ryazan.ru
3753
+ sakhalin.ru
3754
+ samara.ru
3755
+ saratov.ru
3756
+ simbirsk.ru
3757
+ smolensk.ru
3758
+ spb.ru
3759
+ stavropol.ru
3760
+ stv.ru
3761
+ surgut.ru
3762
+ tambov.ru
3763
+ tatarstan.ru
3764
+ tom.ru
3765
+ tomsk.ru
3766
+ tsaritsyn.ru
3767
+ tsk.ru
3768
+ tula.ru
3769
+ tuva.ru
3770
+ tver.ru
3771
+ tyumen.ru
3772
+ udm.ru
3773
+ udmurtia.ru
3774
+ ulan-ude.ru
3775
+ vladikavkaz.ru
3776
+ vladimir.ru
3777
+ vladivostok.ru
3778
+ volgograd.ru
3779
+ vologda.ru
3780
+ voronezh.ru
3781
+ vrn.ru
3782
+ vyatka.ru
3783
+ yakutia.ru
3784
+ yamal.ru
3785
+ yaroslavl.ru
3786
+ yekaterinburg.ru
3787
+ yuzhno-sakhalinsk.ru
3788
+ // More geographical domains
3789
+ amursk.ru
3790
+ baikal.ru
3791
+ cmw.ru
3792
+ fareast.ru
3793
+ jamal.ru
3794
+ kms.ru
3795
+ k-uralsk.ru
3796
+ kustanai.ru
3797
+ kuzbass.ru
3798
+ magnitka.ru
3799
+ mytis.ru
3800
+ nakhodka.ru
3801
+ nkz.ru
3802
+ norilsk.ru
3803
+ oskol.ru
3804
+ pyatigorsk.ru
3805
+ rubtsovsk.ru
3806
+ snz.ru
3807
+ syzran.ru
3808
+ vdonsk.ru
3809
+ zgrad.ru
3810
+ // State domains
3811
+ gov.ru
3812
+ mil.ru
3813
+ // Technical domains
3814
+ test.ru
3815
+
3816
+ // rw : http://www.nic.rw/cgi-bin/policy.pl
3817
+ rw
3818
+ gov.rw
3819
+ net.rw
3820
+ edu.rw
3821
+ ac.rw
3822
+ com.rw
3823
+ co.rw
3824
+ int.rw
3825
+ mil.rw
3826
+ gouv.rw
3827
+
3828
+ // sa : http://www.nic.net.sa/
3829
+ com.sa
3830
+ net.sa
3831
+ org.sa
3832
+ gov.sa
3833
+ med.sa
3834
+ pub.sa
3835
+ edu.sa
3836
+ sch.sa
3837
+
3838
+ // sb : http://www.sbnic.net.sb/
3839
+ // Submitted by registry <lee.humphries@telekom.com.sb> 2008-06-08
3840
+ sb
3841
+ com.sb
3842
+ edu.sb
3843
+ gov.sb
3844
+ net.sb
3845
+ org.sb
3846
+
3847
+ // sc : http://www.nic.sc/
3848
+ sc
3849
+ com.sc
3850
+ gov.sc
3851
+ net.sc
3852
+ org.sc
3853
+ edu.sc
3854
+
3855
+ // sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm
3856
+ // Submitted by registry <admin@isoc.sd> 2008-06-17
3857
+ sd
3858
+ com.sd
3859
+ net.sd
3860
+ org.sd
3861
+ edu.sd
3862
+ med.sd
3863
+ gov.sd
3864
+ info.sd
3865
+
3866
+ // se : http://en.wikipedia.org/wiki/.se
3867
+ // Submitted by registry <Patrik.Wallstrom@iis.se> 2008-06-24
3868
+ se
3869
+ a.se
3870
+ ac.se
3871
+ b.se
3872
+ bd.se
3873
+ brand.se
3874
+ c.se
3875
+ d.se
3876
+ e.se
3877
+ f.se
3878
+ fh.se
3879
+ fhsk.se
3880
+ fhv.se
3881
+ g.se
3882
+ h.se
3883
+ i.se
3884
+ k.se
3885
+ komforb.se
3886
+ kommunalforbund.se
3887
+ komvux.se
3888
+ l.se
3889
+ lanbib.se
3890
+ m.se
3891
+ n.se
3892
+ naturbruksgymn.se
3893
+ o.se
3894
+ org.se
3895
+ p.se
3896
+ parti.se
3897
+ pp.se
3898
+ press.se
3899
+ r.se
3900
+ s.se
3901
+ sshn.se
3902
+ t.se
3903
+ tm.se
3904
+ u.se
3905
+ w.se
3906
+ x.se
3907
+ y.se
3908
+ z.se
3909
+
3910
+ // sg : http://www.nic.net.sg/sub_policies_agreement/2ld.html
3911
+ sg
3912
+ com.sg
3913
+ net.sg
3914
+ org.sg
3915
+ gov.sg
3916
+ edu.sg
3917
+ per.sg
3918
+
3919
+ // sh : http://www.nic.sh/rules.html
3920
+ // list of 2nd level domains ?
3921
+ sh
3922
+
3923
+ // si : http://en.wikipedia.org/wiki/.si
3924
+ si
3925
+
3926
+ // sj : No registrations at this time.
3927
+ // Submitted by registry <jarle@uninett.no> 2008-06-16
3928
+
3929
+ // sk : http://en.wikipedia.org/wiki/.sk
3930
+ // list of 2nd level domains ?
3931
+ sk
3932
+
3933
+ // sl : http://www.nic.sl
3934
+ // Submitted by registry <adam@neoip.com> 2008-06-12
3935
+ sl
3936
+ com.sl
3937
+ net.sl
3938
+ edu.sl
3939
+ gov.sl
3940
+ org.sl
3941
+
3942
+ // sm : http://en.wikipedia.org/wiki/.sm
3943
+ sm
3944
+
3945
+ // sn : http://en.wikipedia.org/wiki/.sn
3946
+ sn
3947
+
3948
+ // sr : http://en.wikipedia.org/wiki/.sr
3949
+ sr
3950
+
3951
+ // st : http://www.nic.st/html/policyrules/
3952
+ st
3953
+ gov.st
3954
+ saotome.st
3955
+ principe.st
3956
+ consulado.st
3957
+ org.st
3958
+ edu.st
3959
+ net.st
3960
+ com.st
3961
+ store.st
3962
+ mil.st
3963
+ co.st
3964
+
3965
+ // su : http://en.wikipedia.org/wiki/.su
3966
+ su
3967
+
3968
+ // sv : http://www.svnet.org.sv/svpolicy.html
3969
+ *.sv
3970
+
3971
+ // sy : http://en.wikipedia.org/wiki/.sy
3972
+ // see also: http://www.gobin.info/domainname/sy.doc
3973
+ sy
3974
+ edu.sy
3975
+ gov.sy
3976
+ net.sy
3977
+ mil.sy
3978
+ com.sy
3979
+ org.sy
3980
+
3981
+ // sz : http://en.wikipedia.org/wiki/.sz
3982
+ // http://www.sispa.org.sz/
3983
+ sz
3984
+ co.sz
3985
+ ac.sz
3986
+ org.sz
3987
+
3988
+ // tc : http://en.wikipedia.org/wiki/.tc
3989
+ tc
3990
+
3991
+ // td : http://en.wikipedia.org/wiki/.td
3992
+ td
3993
+
3994
+ // tel: http://en.wikipedia.org/wiki/.tel
3995
+ // http://www.telnic.org/
3996
+ tel
3997
+
3998
+ // tf : http://en.wikipedia.org/wiki/.tf
3999
+ tf
4000
+
4001
+ // tg : http://en.wikipedia.org/wiki/.tg
4002
+ // http://www.nic.tg/nictg/index.php implies no reserved 2nd-level domains,
4003
+ // although this contradicts wikipedia.
4004
+ tg
4005
+
4006
+ // th : http://en.wikipedia.org/wiki/.th
4007
+ // Submitted by registry <krit@thains.co.th> 2008-06-17
4008
+ th
4009
+ ac.th
4010
+ co.th
4011
+ go.th
4012
+ in.th
4013
+ mi.th
4014
+ net.th
4015
+ or.th
4016
+
4017
+ // tj : http://www.nic.tj/policy.htm
4018
+ tj
4019
+ ac.tj
4020
+ biz.tj
4021
+ com.tj
4022
+ co.tj
4023
+ edu.tj
4024
+ int.tj
4025
+ name.tj
4026
+ net.tj
4027
+ org.tj
4028
+ web.tj
4029
+ gov.tj
4030
+ go.tj
4031
+ mil.tj
4032
+
4033
+ // tk : http://en.wikipedia.org/wiki/.tk
4034
+ tk
4035
+
4036
+ // tl : http://en.wikipedia.org/wiki/.tl
4037
+ tl
4038
+ gov.tl
4039
+
4040
+ // tm : http://www.nic.tm/rules.html
4041
+ // list of 2nd level tlds ?
4042
+ tm
4043
+
4044
+ // tn : http://en.wikipedia.org/wiki/.tn
4045
+ // http://whois.ati.tn/
4046
+ tn
4047
+ com.tn
4048
+ ens.tn
4049
+ fin.tn
4050
+ gov.tn
4051
+ ind.tn
4052
+ intl.tn
4053
+ nat.tn
4054
+ net.tn
4055
+ org.tn
4056
+ info.tn
4057
+ perso.tn
4058
+ tourism.tn
4059
+ edunet.tn
4060
+ rnrt.tn
4061
+ rns.tn
4062
+ rnu.tn
4063
+ mincom.tn
4064
+ agrinet.tn
4065
+ defense.tn
4066
+ turen.tn
4067
+
4068
+ // to : http://en.wikipedia.org/wiki/.to
4069
+ // Submitted by registry <egullich@colo.to> 2008-06-17
4070
+ to
4071
+ com.to
4072
+ gov.to
4073
+ net.to
4074
+ org.to
4075
+ edu.to
4076
+ mil.to
4077
+
4078
+ // tr : http://en.wikipedia.org/wiki/.tr
4079
+ *.tr
4080
+
4081
+ // travel : http://en.wikipedia.org/wiki/.travel
4082
+ travel
4083
+
4084
+ // tt : http://www.nic.tt/
4085
+ tt
4086
+ co.tt
4087
+ com.tt
4088
+ org.tt
4089
+ net.tt
4090
+ biz.tt
4091
+ info.tt
4092
+ pro.tt
4093
+ int.tt
4094
+ coop.tt
4095
+ jobs.tt
4096
+ mobi.tt
4097
+ travel.tt
4098
+ museum.tt
4099
+ aero.tt
4100
+ name.tt
4101
+ gov.tt
4102
+ edu.tt
4103
+
4104
+ // tv : http://en.wikipedia.org/wiki/.tv
4105
+ // list of other 2nd level tlds ?
4106
+ tv
4107
+ com.tv
4108
+ net.tv
4109
+ org.tv
4110
+ gov.tv
4111
+
4112
+ // tw : http://en.wikipedia.org/wiki/.tw
4113
+ tw
4114
+ edu.tw
4115
+ gov.tw
4116
+ mil.tw
4117
+ com.tw
4118
+ net.tw
4119
+ org.tw
4120
+ idv.tw
4121
+ game.tw
4122
+ ebiz.tw
4123
+ club.tw
4124
+ 網路.tw
4125
+ 組織.tw
4126
+ 商業.tw
4127
+
4128
+ // tz : http://en.wikipedia.org/wiki/.tz
4129
+ // Submitted by registry <randy@psg.com> 2008-06-17
4130
+ ac.tz
4131
+ co.tz
4132
+ go.tz
4133
+ ne.tz
4134
+ or.tz
4135
+
4136
+ // ua : http://www.nic.net.ua/
4137
+ ua
4138
+ com.ua
4139
+ edu.ua
4140
+ gov.ua
4141
+ in.ua
4142
+ net.ua
4143
+ org.ua
4144
+ // ua geo-names
4145
+ cherkassy.ua
4146
+ chernigov.ua
4147
+ chernovtsy.ua
4148
+ ck.ua
4149
+ cn.ua
4150
+ crimea.ua
4151
+ cv.ua
4152
+ dn.ua
4153
+ dnepropetrovsk.ua
4154
+ donetsk.ua
4155
+ dp.ua
4156
+ if.ua
4157
+ ivano-frankivsk.ua
4158
+ kh.ua
4159
+ kharkov.ua
4160
+ kherson.ua
4161
+ khmelnitskiy.ua
4162
+ kiev.ua
4163
+ kirovograd.ua
4164
+ km.ua
4165
+ kr.ua
4166
+ ks.ua
4167
+ kv.ua
4168
+ lg.ua
4169
+ lugansk.ua
4170
+ lutsk.ua
4171
+ lviv.ua
4172
+ mk.ua
4173
+ nikolaev.ua
4174
+ od.ua
4175
+ odessa.ua
4176
+ pl.ua
4177
+ poltava.ua
4178
+ rovno.ua
4179
+ rv.ua
4180
+ sebastopol.ua
4181
+ sumy.ua
4182
+ te.ua
4183
+ ternopil.ua
4184
+ uzhgorod.ua
4185
+ vinnica.ua
4186
+ vn.ua
4187
+ zaporizhzhe.ua
4188
+ zp.ua
4189
+ zhitomir.ua
4190
+ zt.ua
4191
+
4192
+ // ug : http://www.registry.co.ug/
4193
+ ug
4194
+ co.ug
4195
+ ac.ug
4196
+ sc.ug
4197
+ go.ug
4198
+ ne.ug
4199
+ or.ug
4200
+
4201
+ // uk : http://en.wikipedia.org/wiki/.uk
4202
+ *.uk
4203
+ *.sch.uk
4204
+ !bl.uk
4205
+ !british-library.uk
4206
+ !icnet.uk
4207
+ !jet.uk
4208
+ !nel.uk
4209
+ !nhs.uk
4210
+ !nls.uk
4211
+ !national-library-scotland.uk
4212
+ !parliament.uk
4213
+
4214
+ // us : http://en.wikipedia.org/wiki/.us
4215
+ us
4216
+ dni.us
4217
+ fed.us
4218
+ isa.us
4219
+ kids.us
4220
+ nsn.us
4221
+ // us geographic names
4222
+ ak.us
4223
+ al.us
4224
+ ar.us
4225
+ as.us
4226
+ az.us
4227
+ ca.us
4228
+ co.us
4229
+ ct.us
4230
+ dc.us
4231
+ de.us
4232
+ fl.us
4233
+ ga.us
4234
+ gu.us
4235
+ hi.us
4236
+ ia.us
4237
+ id.us
4238
+ il.us
4239
+ in.us
4240
+ ks.us
4241
+ ky.us
4242
+ la.us
4243
+ ma.us
4244
+ md.us
4245
+ me.us
4246
+ mi.us
4247
+ mn.us
4248
+ mo.us
4249
+ ms.us
4250
+ mt.us
4251
+ nc.us
4252
+ nd.us
4253
+ ne.us
4254
+ nh.us
4255
+ nj.us
4256
+ nm.us
4257
+ nv.us
4258
+ ny.us
4259
+ oh.us
4260
+ ok.us
4261
+ or.us
4262
+ pa.us
4263
+ pr.us
4264
+ ri.us
4265
+ sc.us
4266
+ sd.us
4267
+ tn.us
4268
+ tx.us
4269
+ ut.us
4270
+ vi.us
4271
+ vt.us
4272
+ va.us
4273
+ wa.us
4274
+ wi.us
4275
+ wv.us
4276
+ wy.us
4277
+ // The registrar notes several more specific domains available in each state,
4278
+ // such as state.*.us, dst.*.us, etc., but resolution of these is somewhat
4279
+ // haphazard; in some states these domains resolve as addresses, while in others
4280
+ // only subdomains are avilable, or even nothing at all.
4281
+
4282
+ // uy : http://www.antel.com.uy/
4283
+ *.uy
4284
+
4285
+ // uz : http://www.reg.uz/registerr.html
4286
+ // are there other 2nd level tlds ?
4287
+ uz
4288
+ com.uz
4289
+ co.uz
4290
+
4291
+ // va : http://en.wikipedia.org/wiki/.va
4292
+ va
4293
+
4294
+ // vc : http://en.wikipedia.org/wiki/.vc
4295
+ // Submitted by registry <kshah@ca.afilias.info> 2008-06-13
4296
+ vc
4297
+ com.vc
4298
+ net.vc
4299
+ org.vc
4300
+ gov.vc
4301
+ mil.vc
4302
+ edu.vc
4303
+
4304
+ // ve : http://registro.nic.ve/nicve/registro/index.html
4305
+ *.ve
4306
+
4307
+ // vg : http://en.wikipedia.org/wiki/.vg
4308
+ vg
4309
+
4310
+ // vi : http://www.nic.vi/newdomainform.htm
4311
+ // http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other
4312
+ // TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they
4313
+ // are available for registration (which they do not seem to be).
4314
+ vi
4315
+ co.vi
4316
+ com.vi
4317
+ k12.vi
4318
+ net.vi
4319
+ org.vi
4320
+
4321
+ // vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp
4322
+ vn
4323
+ com.vn
4324
+ net.vn
4325
+ org.vn
4326
+ edu.vn
4327
+ gov.vn
4328
+ int.vn
4329
+ ac.vn
4330
+ biz.vn
4331
+ info.vn
4332
+ name.vn
4333
+ pro.vn
4334
+ health.vn
4335
+
4336
+ // vu : http://en.wikipedia.org/wiki/.vu
4337
+ // list of 2nd level tlds ?
4338
+ vu
4339
+
4340
+ // ws : http://en.wikipedia.org/wiki/.ws
4341
+ // http://samoanic.ws/index.dhtml
4342
+ ws
4343
+ com.ws
4344
+ net.ws
4345
+ org.ws
4346
+ gov.ws
4347
+ edu.ws
4348
+
4349
+ // ye : http://www.y.net.ye/services/domain_name.htm
4350
+ *.ye
4351
+
4352
+ // yu : http://www.nic.yu/pravilnik-e.html
4353
+ *.yu
4354
+
4355
+ // za : http://www.zadna.org.za/slds.html
4356
+ *.za
4357
+
4358
+ // zm : http://en.wikipedia.org/wiki/.zm
4359
+ *.zm
4360
+
4361
+ // zw : http://en.wikipedia.org/wiki/.zw
4362
+ *.zw