iudex-core 1.0.0-java

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