domain_name 0.5.20160615 → 0.5.20161021
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +7 -2
- data/CHANGELOG.md +189 -0
- data/LICENSE.txt +10 -39
- data/README.md +3 -5
- data/Rakefile +2 -3
- data/data/{effective_tld_names.dat → public_suffix_list.dat} +284 -51
- data/domain_name.gemspec +1 -10
- data/lib/domain_name/etld_data.rb +127 -24
- data/lib/domain_name/version.rb +1 -1
- data/test/helper.rb +0 -1
- data/test/test_domain_name-punycode.rb +1 -1
- data/test/test_domain_name.rb +9 -9
- data/tool/gen_etld_data.rb +1 -1
- metadata +6 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 578e983a7d2bfce1e2ba8d1239fb1c5a3b048ab7
|
4
|
+
data.tar.gz: 053c2ed1c2dba0effe83e184b10df96d6c8e9bae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bfc806530e7ef41274f0c447f7ba87cdf03ffb73c8a8c9290ea9a41d57a9f21496cd8e19796dadfb80da5890b7ffb422eea75d11c1dd623aec6fd282a98b5f2
|
7
|
+
data.tar.gz: 46f9e29879d77c57a91835e3529c66b1ee7ac43c9dff235f57450f3f41c726b6e7c78a71d829eb3270aa96518530a4f0c1e84512c65d6d97b3df8b7ce89792fd
|
data/.travis.yml
CHANGED
@@ -4,9 +4,12 @@ rvm:
|
|
4
4
|
- ree
|
5
5
|
- 1.9.3
|
6
6
|
- 2.0.0
|
7
|
-
- 2.1.
|
7
|
+
- 2.1.9
|
8
|
+
- 2.2.5
|
9
|
+
- 2.3.1
|
8
10
|
- ruby-head
|
9
|
-
- jruby-
|
11
|
+
- jruby-1.7.20
|
12
|
+
- jruby-9.0.5.0
|
10
13
|
- jruby-head
|
11
14
|
- rbx-2
|
12
15
|
matrix:
|
@@ -14,3 +17,5 @@ matrix:
|
|
14
17
|
- rvm: ruby-head
|
15
18
|
- rvm: jruby-head
|
16
19
|
- rvm: rbx-2
|
20
|
+
before_install:
|
21
|
+
- gem update bundler
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,189 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## [v0.5.20160826](https://github.com/knu/ruby-domain_name/tree/v0.5.20160826) (2016-09-01)
|
4
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20160615...v0.5.20160826)
|
5
|
+
|
6
|
+
- Update the license for the eTLD database
|
7
|
+
- Update the eTLD database to 2016-08-26T16:52:03Z
|
8
|
+
|
9
|
+
## [v0.5.20160615](https://github.com/knu/ruby-domain_name/tree/v0.5.20160615) (2016-06-16)
|
10
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20160310...v0.5.20160615)
|
11
|
+
|
12
|
+
- Always set `@domain` to avoid a warning when `$VERBOSE` is on
|
13
|
+
- Update the eTLD database to 2016-06-15T16:22:11Z
|
14
|
+
|
15
|
+
## [v0.5.20160310](https://github.com/knu/ruby-domain_name/tree/v0.5.20160310) (2016-03-17)
|
16
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20160309...v0.5.20160310)
|
17
|
+
|
18
|
+
- Update development dependencies for obsolete rubies
|
19
|
+
- Update the eTLD database to 2016-03-10T21:22:02Z
|
20
|
+
|
21
|
+
## [v0.5.20160309](https://github.com/knu/ruby-domain_name/tree/v0.5.20160309) (2016-03-09)
|
22
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20160216...v0.5.20160309)
|
23
|
+
|
24
|
+
- Fix support for Ruby 1.8
|
25
|
+
- Update the eTLD database to 2016-03-09T09:52:02Z
|
26
|
+
|
27
|
+
## [v0.5.20160216](https://github.com/knu/ruby-domain_name/tree/v0.5.20160216) (2016-02-24)
|
28
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20160128...v0.5.20160216)
|
29
|
+
|
30
|
+
- Update the eTLD database to 2016-02-16T19:22:02Z
|
31
|
+
|
32
|
+
## [v0.5.20160128](https://github.com/knu/ruby-domain_name/tree/v0.5.20160128) (2016-01-29)
|
33
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.25...v0.5.20160128)
|
34
|
+
|
35
|
+
- Use the date as part of VERSION
|
36
|
+
- Update the eTLD database to 2016-01-28T23:22:02Z
|
37
|
+
|
38
|
+
## [v0.5.25](https://github.com/knu/ruby-domain_name/tree/v0.5.25) (2015-10-06)
|
39
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.24...v0.5.25)
|
40
|
+
|
41
|
+
- Restrict i18n < 0.7.0 on ruby 1.8.
|
42
|
+
- Update the eTLD database to 2015-09-29T17:22:03Z
|
43
|
+
|
44
|
+
## [v0.5.24](https://github.com/knu/ruby-domain_name/tree/v0.5.24) (2015-04-16)
|
45
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.23...v0.5.24)
|
46
|
+
|
47
|
+
- Update the eTLD database to 2015-04-07T20:26:05Z
|
48
|
+
|
49
|
+
## [v0.5.23](https://github.com/knu/ruby-domain_name/tree/v0.5.23) (2014-12-19)
|
50
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.22...v0.5.23)
|
51
|
+
|
52
|
+
- Update the eTLD database to 2014-12-18T02:26:03Z
|
53
|
+
|
54
|
+
## [v0.5.22](https://github.com/knu/ruby-domain_name/tree/v0.5.22) (2014-10-28)
|
55
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.21...v0.5.22)
|
56
|
+
|
57
|
+
- Update the eTLD database to 2014-10-27T15:26:07Z
|
58
|
+
|
59
|
+
## [v0.5.21](https://github.com/knu/ruby-domain_name/tree/v0.5.21) (2014-09-09)
|
60
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.20...v0.5.21)
|
61
|
+
|
62
|
+
- Update the eTLD database to 2014-09-05T01:56:10Z
|
63
|
+
|
64
|
+
## [v0.5.20](https://github.com/knu/ruby-domain_name/tree/v0.5.20) (2014-08-18)
|
65
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.19...v0.5.20)
|
66
|
+
|
67
|
+
- Update the eTLD database to 2014-08-14T00:56:09Z
|
68
|
+
|
69
|
+
## [v0.5.19](https://github.com/knu/ruby-domain_name/tree/v0.5.19) (2014-06-12)
|
70
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.18...v0.5.19)
|
71
|
+
|
72
|
+
- Update the eTLD database to 2014-06-11T15:26:13Z
|
73
|
+
|
74
|
+
## [v0.5.18](https://github.com/knu/ruby-domain_name/tree/v0.5.18) (2014-03-27)
|
75
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.17...v0.5.18)
|
76
|
+
|
77
|
+
- Update the eTLD database to 2014-03-27T03:00:59Z
|
78
|
+
|
79
|
+
## [v0.5.17](https://github.com/knu/ruby-domain_name/tree/v0.5.17) (2014-03-21)
|
80
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.16...v0.5.17)
|
81
|
+
|
82
|
+
- Update the eTLD database to 2014-03-20T15:01:09Z
|
83
|
+
|
84
|
+
## [v0.5.16](https://github.com/knu/ruby-domain_name/tree/v0.5.16) (2014-02-12)
|
85
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.15...v0.5.16)
|
86
|
+
|
87
|
+
- Update the eTLD database to 2014-02-11T16:01:07Z
|
88
|
+
|
89
|
+
## [v0.5.15](https://github.com/knu/ruby-domain_name/tree/v0.5.15) (2013-11-15)
|
90
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.14...v0.5.15)
|
91
|
+
|
92
|
+
- Update the eTLD database to 2013-11-15T16:01:28Z
|
93
|
+
- Merge IDN tests from mozilla-central/netwerk/test/unit/data/test_psl.txt
|
94
|
+
|
95
|
+
## [v0.5.14](https://github.com/knu/ruby-domain_name/tree/v0.5.14) (2013-10-16)
|
96
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.13...v0.5.14)
|
97
|
+
|
98
|
+
- Update the eTLD database to 2013-10-16T07:01:24Z
|
99
|
+
|
100
|
+
## [v0.5.13](https://github.com/knu/ruby-domain_name/tree/v0.5.13) (2013-08-18)
|
101
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.12...v0.5.13)
|
102
|
+
|
103
|
+
- Update the eTLD database to 2013-08-15T11:01:26Z
|
104
|
+
- Adjust dependencies for Ruby 1.8
|
105
|
+
|
106
|
+
## [v0.5.12](https://github.com/knu/ruby-domain_name/tree/v0.5.12) (2013-06-07)
|
107
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.11...v0.5.12)
|
108
|
+
|
109
|
+
- Update the eTLD database to 2013-06-06T23:00:56Z
|
110
|
+
- Add *_idn methods that do ToUnicode conversion
|
111
|
+
|
112
|
+
## [v0.5.11](https://github.com/knu/ruby-domain_name/tree/v0.5.11) (2013-04-12)
|
113
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.10...v0.5.11)
|
114
|
+
|
115
|
+
- Add DomainName#superdomain
|
116
|
+
- Update the database to 2013-04-05T23:00:49Z
|
117
|
+
|
118
|
+
## [v0.5.10](https://github.com/knu/ruby-domain_name/tree/v0.5.10) (2013-04-01)
|
119
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.9...v0.5.10)
|
120
|
+
|
121
|
+
- Update the eTLD database to that of 2013-03-31T03:02:39Z
|
122
|
+
|
123
|
+
## [v0.5.9](https://github.com/knu/ruby-domain_name/tree/v0.5.9) (2013-03-17)
|
124
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.8...v0.5.9)
|
125
|
+
|
126
|
+
- Support unf 0.1.0
|
127
|
+
|
128
|
+
## [v0.5.8](https://github.com/knu/ruby-domain_name/tree/v0.5.8) (2013-03-14)
|
129
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.7...v0.5.8)
|
130
|
+
|
131
|
+
- Update the eTLD database to the version as of 2013-02-18T20:02:07Z
|
132
|
+
|
133
|
+
## [v0.5.7](https://github.com/knu/ruby-domain_name/tree/v0.5.7) (2013-01-07)
|
134
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.6...v0.5.7)
|
135
|
+
|
136
|
+
- Update the eTLD list
|
137
|
+
|
138
|
+
## [v0.5.6](https://github.com/knu/ruby-domain_name/tree/v0.5.6) (2012-12-06)
|
139
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.5...v0.5.6)
|
140
|
+
|
141
|
+
- Update the eTLD list
|
142
|
+
|
143
|
+
## [v0.5.5](https://github.com/knu/ruby-domain_name/tree/v0.5.5) (2012-12-06)
|
144
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.4...v0.5.5)
|
145
|
+
|
146
|
+
- Add an optional host_only flag to DomainName#cookie_domain?
|
147
|
+
- Migrate from jeweler to bundle gem
|
148
|
+
|
149
|
+
## [v0.5.4](https://github.com/knu/ruby-domain_name/tree/v0.5.4) (2012-09-18)
|
150
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.3...v0.5.4)
|
151
|
+
|
152
|
+
- Update the eTLD list
|
153
|
+
- Import updated test cases suggested by Mozilla developers
|
154
|
+
|
155
|
+
## [v0.5.3](https://github.com/knu/ruby-domain_name/tree/v0.5.3) (2012-04-06)
|
156
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.2...v0.5.3)
|
157
|
+
|
158
|
+
- Implement Punycode decoder
|
159
|
+
|
160
|
+
**Closed issues:**
|
161
|
+
|
162
|
+
- Running DomainName multi-threaded leads to Stack Errors [\#2](https://github.com/knu/ruby-domain_name/issues/2)
|
163
|
+
|
164
|
+
## [v0.5.2](https://github.com/knu/ruby-domain_name/tree/v0.5.2) (2012-01-18)
|
165
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.1...v0.5.2)
|
166
|
+
|
167
|
+
- Update the eTLD list
|
168
|
+
|
169
|
+
## [v0.5.1](https://github.com/knu/ruby-domain_name/tree/v0.5.1) (2011-11-09)
|
170
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.5.0...v0.5.1)
|
171
|
+
|
172
|
+
- DomainName.new calls #to_str if a non-string object is given
|
173
|
+
- Fix support for IPv6 addresses enclosed in square brackets
|
174
|
+
|
175
|
+
**Merged pull requests:**
|
176
|
+
|
177
|
+
- Fixed DomainName\#\<=\> for use with Ruby 1.8.7 [\#1](https://github.com/knu/ruby-domain_name/pull/1) ([drbrain](https://github.com/drbrain))
|
178
|
+
|
179
|
+
## [v0.5.0](https://github.com/knu/ruby-domain_name/tree/v0.5.0) (2011-11-04)
|
180
|
+
[Full Changelog](https://github.com/knu/ruby-domain_name/compare/v0.0.0...v0.5.0)
|
181
|
+
|
182
|
+
- Implement DomainName comparison and fix cookie_domain?()
|
183
|
+
- Avoid warnings about uninitialized instance variables
|
184
|
+
|
185
|
+
## [v0.0.0](https://github.com/knu/ruby-domain_name/tree/v0.0.0) (2011-10-29)
|
186
|
+
|
187
|
+
- Initial release
|
188
|
+
|
189
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/LICENSE.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c) 2011
|
1
|
+
Copyright (c) 2011-2016 Akinori MUSHA
|
2
2
|
|
3
3
|
All rights reserved.
|
4
4
|
|
@@ -25,6 +25,11 @@ SUCH DAMAGE.
|
|
25
25
|
|
26
26
|
* lib/domain_name/punycode.rb
|
27
27
|
|
28
|
+
This file is derived from the implementation of punycode available at
|
29
|
+
here:
|
30
|
+
|
31
|
+
https://www.verisign.com/en_US/channel-resources/domain-registry-products/idn-sdks/index.xhtml
|
32
|
+
|
28
33
|
Copyright (C) 2000-2002 Verisign Inc., All rights reserved.
|
29
34
|
|
30
35
|
Redistribution and use in source and binary forms, with or
|
@@ -67,41 +72,7 @@ Authors:
|
|
67
72
|
|
68
73
|
* lib/domain_name/etld_data.rb
|
69
74
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
the License. You may obtain a copy of the License at
|
75
|
-
http://www.mozilla.org/MPL/
|
76
|
-
|
77
|
-
Software distributed under the License is distributed on an "AS IS" basis,
|
78
|
-
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
79
|
-
for the specific language governing rights and limitations under the
|
80
|
-
License.
|
81
|
-
|
82
|
-
The Original Code is the Public Suffix List.
|
83
|
-
|
84
|
-
The Initial Developer of the Original Code is
|
85
|
-
Jo Hermans <jo.hermans@gmail.com>.
|
86
|
-
Portions created by the Initial Developer are Copyright (C) 2007
|
87
|
-
the Initial Developer. All Rights Reserved.
|
88
|
-
|
89
|
-
Contributor(s):
|
90
|
-
Ruben Arakelyan <ruben@rubenarakelyan.com>
|
91
|
-
Gervase Markham <gerv@gerv.net>
|
92
|
-
Pamela Greene <pamg.bugs@gmail.com>
|
93
|
-
David Triendl <david@triendl.name>
|
94
|
-
Jothan Frakes <jothan@gmail.com>
|
95
|
-
The kind representatives of many TLD registries
|
96
|
-
|
97
|
-
Alternatively, the contents of this file may be used under the terms of
|
98
|
-
either the GNU General Public License Version 2 or later (the "GPL"), or
|
99
|
-
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
100
|
-
in which case the provisions of the GPL or the LGPL are applicable instead
|
101
|
-
of those above. If you wish to allow use of your version of this file only
|
102
|
-
under the terms of either the GPL or the LGPL, and not to allow others to
|
103
|
-
use your version of this file under the terms of the MPL, indicate your
|
104
|
-
decision by deleting the provisions above and replace them with the notice
|
105
|
-
and other provisions required by the GPL or the LGPL. If you do not delete
|
106
|
-
the provisions above, a recipient may use your version of this file under
|
107
|
-
the terms of any one of the MPL, the GPL or the LGPL.
|
75
|
+
This file is generated from the Public Suffix List
|
76
|
+
(https://publicsuffix.org/), which is licensed under MPL 2.0:
|
77
|
+
|
78
|
+
https://mozilla.org/MPL/2.0/
|
data/README.md
CHANGED
@@ -53,17 +53,15 @@ References
|
|
53
53
|
|
54
54
|
* [RFC 5893](http://tools.ietf.org/html/rfc5892)
|
55
55
|
|
56
|
-
* [Public Suffix List](
|
57
|
-
|
58
|
-
* [Effective TLD Names List](http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/effective_tld_names.dat?raw=1)
|
56
|
+
* [Public Suffix List](https://publicsuffix.org/list/)
|
59
57
|
|
60
58
|
License
|
61
59
|
-------
|
62
60
|
|
63
|
-
Copyright (c) 2011
|
61
|
+
Copyright (c) 2011-2016 Akinori MUSHA
|
64
62
|
|
65
63
|
Licensed under the 2-clause BSD license.
|
66
64
|
|
67
65
|
Some portion of this library is copyrighted by third parties and
|
68
|
-
licensed under MPL
|
66
|
+
licensed under MPL 2.0 or 3-clause BSD license,
|
69
67
|
See `LICENSE.txt` for details.
|
data/Rakefile
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
require 'bundler/gem_tasks'
|
2
2
|
require 'uri'
|
3
|
-
|
4
|
-
|
5
|
-
ETLD_DATA_FILE = 'data/effective_tld_names.dat'
|
3
|
+
ETLD_DATA_URI = URI('https://publicsuffix.org/list/public_suffix_list.dat')
|
4
|
+
ETLD_DATA_FILE = 'data/public_suffix_list.dat'
|
6
5
|
ETLD_DATA_RB = 'lib/domain_name/etld_data.rb'
|
7
6
|
VERSION_RB = 'lib/domain_name/version.rb'
|
8
7
|
|
@@ -2,6 +2,11 @@
|
|
2
2
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
3
3
|
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
4
4
|
|
5
|
+
// Please pull this list from, and only from https://publicsuffix.org/list/public_suffix_list.dat,
|
6
|
+
// rather than any other VCS sites. Pulling from any other URL is not guaranteed to be supported.
|
7
|
+
|
8
|
+
// Instructions on pulling and using this list can be found at https://publicsuffix.org/list/.
|
9
|
+
|
5
10
|
// ===BEGIN ICANN DOMAINS===
|
6
11
|
|
7
12
|
// ac : https://en.wikipedia.org/wiki/.ac
|
@@ -699,7 +704,9 @@ org.cw
|
|
699
704
|
cx
|
700
705
|
gov.cx
|
701
706
|
|
702
|
-
// cy :
|
707
|
+
// cy : http://www.nic.cy/
|
708
|
+
// Submitted by registry Panayiotou Fotia <cydns@ucy.ac.cy>
|
709
|
+
cy
|
703
710
|
ac.cy
|
704
711
|
biz.cy
|
705
712
|
com.cy
|
@@ -2545,7 +2552,6 @@ hitoyoshi.kumamoto.jp
|
|
2545
2552
|
kamiamakusa.kumamoto.jp
|
2546
2553
|
kashima.kumamoto.jp
|
2547
2554
|
kikuchi.kumamoto.jp
|
2548
|
-
kosa.kumamoto.jp
|
2549
2555
|
kumamoto.kumamoto.jp
|
2550
2556
|
mashiki.kumamoto.jp
|
2551
2557
|
mifune.kumamoto.jp
|
@@ -4363,9 +4369,17 @@ edu.my
|
|
4363
4369
|
mil.my
|
4364
4370
|
name.my
|
4365
4371
|
|
4366
|
-
// mz : http://www.
|
4367
|
-
|
4368
|
-
|
4372
|
+
// mz : http://www.uem.mz/
|
4373
|
+
// Submitted by registry <antonio@uem.mz>
|
4374
|
+
mz
|
4375
|
+
ac.mz
|
4376
|
+
adv.mz
|
4377
|
+
co.mz
|
4378
|
+
edu.mz
|
4379
|
+
gov.mz
|
4380
|
+
mil.mz
|
4381
|
+
net.mz
|
4382
|
+
org.mz
|
4369
4383
|
|
4370
4384
|
// na : http://www.na-nic.com.na/
|
4371
4385
|
// http://www.info.na/domain/
|
@@ -6527,7 +6541,7 @@ lib.ca.us
|
|
6527
6541
|
lib.co.us
|
6528
6542
|
lib.ct.us
|
6529
6543
|
lib.dc.us
|
6530
|
-
lib.de.us
|
6544
|
+
// lib.de.us Issue #243 - Moved to Private section at request of Ed Moore <Ed.Moore@lib.de.us>
|
6531
6545
|
lib.fl.us
|
6532
6546
|
lib.ga.us
|
6533
6547
|
lib.gu.us
|
@@ -6943,7 +6957,7 @@ sch.zm
|
|
6943
6957
|
*.zw
|
6944
6958
|
|
6945
6959
|
|
6946
|
-
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2016-
|
6960
|
+
// List of new gTLDs imported from https://newgtlds.icann.org/newgtlds.csv on 2016-08-17T00:17:46Z
|
6947
6961
|
|
6948
6962
|
// aaa : 2015-02-26 American Automobile Association, Inc.
|
6949
6963
|
aaa
|
@@ -7020,9 +7034,6 @@ afl
|
|
7020
7034
|
// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa
|
7021
7035
|
africa
|
7022
7036
|
|
7023
|
-
// africamagic : 2015-03-05 Electronic Media Network (Pty) Ltd
|
7024
|
-
africamagic
|
7025
|
-
|
7026
7037
|
// agakhan : 2015-04-23 Fondation Aga Khan (Aga Khan Foundation)
|
7027
7038
|
agakhan
|
7028
7039
|
|
@@ -7302,7 +7313,7 @@ blanco
|
|
7302
7313
|
// blockbuster : 2015-07-30 Dish DBS Corporation
|
7303
7314
|
blockbuster
|
7304
7315
|
|
7305
|
-
// blog : 2015-05-14
|
7316
|
+
// blog : 2015-05-14
|
7306
7317
|
blog
|
7307
7318
|
|
7308
7319
|
// bloomberg : 2014-07-17 Bloomberg IP Holdings LLC
|
@@ -7728,6 +7739,9 @@ dad
|
|
7728
7739
|
// dance : 2013-10-24 United TLD Holdco Ltd.
|
7729
7740
|
dance
|
7730
7741
|
|
7742
|
+
// data : 2016-06-02 Dish DBS Corporation
|
7743
|
+
data
|
7744
|
+
|
7731
7745
|
// date : 2014-11-20 dot Date Limited
|
7732
7746
|
date
|
7733
7747
|
|
@@ -7824,6 +7838,9 @@ dnp
|
|
7824
7838
|
// docs : 2014-10-16 Charleston Road Registry Inc.
|
7825
7839
|
docs
|
7826
7840
|
|
7841
|
+
// doctor : 2016-06-02 Brice Trail, LLC
|
7842
|
+
doctor
|
7843
|
+
|
7827
7844
|
// dodge : 2015-07-30 FCA US LLC.
|
7828
7845
|
dodge
|
7829
7846
|
|
@@ -7845,9 +7862,6 @@ download
|
|
7845
7862
|
// drive : 2015-03-05 Charleston Road Registry Inc.
|
7846
7863
|
drive
|
7847
7864
|
|
7848
|
-
// dstv : 2015-03-12 MultiChoice (Proprietary) Limited
|
7849
|
-
dstv
|
7850
|
-
|
7851
7865
|
// dtv : 2015-06-04 Dish DBS Corporation
|
7852
7866
|
dtv
|
7853
7867
|
|
@@ -7872,6 +7886,9 @@ durban
|
|
7872
7886
|
// dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG
|
7873
7887
|
dvag
|
7874
7888
|
|
7889
|
+
// dvr : 2016-05-26 Hughes Satellite Systems Corporation
|
7890
|
+
dvr
|
7891
|
+
|
7875
7892
|
// dwg : 2015-07-23 Autodesk, Inc.
|
7876
7893
|
dwg
|
7877
7894
|
|
@@ -7881,6 +7898,9 @@ earth
|
|
7881
7898
|
// eat : 2014-01-23 Charleston Road Registry Inc.
|
7882
7899
|
eat
|
7883
7900
|
|
7901
|
+
// eco : 2016-07-08 Big Room Inc.
|
7902
|
+
eco
|
7903
|
+
|
7884
7904
|
// edeka : 2014-12-18 EDEKA Verband kaufmännischer Genossenschaften e.V.
|
7885
7905
|
edeka
|
7886
7906
|
|
@@ -8064,9 +8084,6 @@ florist
|
|
8064
8084
|
// flowers : 2014-10-09 Uniregistry, Corp.
|
8065
8085
|
flowers
|
8066
8086
|
|
8067
|
-
// flsmidth : 2014-07-24 FLSmidth A/S
|
8068
|
-
flsmidth
|
8069
|
-
|
8070
8087
|
// fly : 2014-05-08 Charleston Road Registry Inc.
|
8071
8088
|
fly
|
8072
8089
|
|
@@ -8157,7 +8174,7 @@ gallup
|
|
8157
8174
|
// game : 2015-05-28 Uniregistry, Corp.
|
8158
8175
|
game
|
8159
8176
|
|
8160
|
-
// games : 2015-05-28
|
8177
|
+
// games : 2015-05-28
|
8161
8178
|
games
|
8162
8179
|
|
8163
8180
|
// gap : 2015-07-31 The Gap, Inc.
|
@@ -8259,9 +8276,6 @@ gop
|
|
8259
8276
|
// got : 2014-12-18 Amazon EU S.à r.l.
|
8260
8277
|
got
|
8261
8278
|
|
8262
|
-
// gotv : 2015-03-12 MultiChoice (Proprietary) Limited
|
8263
|
-
gotv
|
8264
|
-
|
8265
8279
|
// grainger : 2015-05-07 Grainger Registry Services, LLC
|
8266
8280
|
grainger
|
8267
8281
|
|
@@ -8277,6 +8291,9 @@ green
|
|
8277
8291
|
// gripe : 2014-03-06 Corn Sunset, LLC
|
8278
8292
|
gripe
|
8279
8293
|
|
8294
|
+
// grocery : 2016-06-16 Wal-Mart Stores, Inc.
|
8295
|
+
grocery
|
8296
|
+
|
8280
8297
|
// group : 2014-08-15 Romeo Town, LLC
|
8281
8298
|
group
|
8282
8299
|
|
@@ -8640,9 +8657,6 @@ kred
|
|
8640
8657
|
// kuokgroup : 2015-04-09 Kerry Trading Co. Limited
|
8641
8658
|
kuokgroup
|
8642
8659
|
|
8643
|
-
// kyknet : 2015-03-05 Electronic Media Network (Pty) Ltd
|
8644
|
-
kyknet
|
8645
|
-
|
8646
8660
|
// kyoto : 2014-11-07 Academic Institution: Kyoto Jyoho Gakuen
|
8647
8661
|
kyoto
|
8648
8662
|
|
@@ -8847,6 +8861,9 @@ management
|
|
8847
8861
|
// mango : 2013-10-24 PUNTO FA S.L.
|
8848
8862
|
mango
|
8849
8863
|
|
8864
|
+
// map : 2016-06-09 Charleston Road Registry Inc.
|
8865
|
+
map
|
8866
|
+
|
8850
8867
|
// market : 2014-03-06
|
8851
8868
|
market
|
8852
8869
|
|
@@ -8907,6 +8924,9 @@ menu
|
|
8907
8924
|
// meo : 2014-11-07 PT Comunicacoes S.A.
|
8908
8925
|
meo
|
8909
8926
|
|
8927
|
+
// merckmsd : 2016-07-14 MSD Registry Holdings, Inc.
|
8928
|
+
merckmsd
|
8929
|
+
|
8910
8930
|
// metlife : 2015-05-07 MetLife Services and Solutions, LLC
|
8911
8931
|
metlife
|
8912
8932
|
|
@@ -8937,8 +8957,8 @@ mls
|
|
8937
8957
|
// mma : 2014-11-07 MMA IARD
|
8938
8958
|
mma
|
8939
8959
|
|
8940
|
-
//
|
8941
|
-
|
8960
|
+
// mobile : 2016-06-02 Dish DBS Corporation
|
8961
|
+
mobile
|
8942
8962
|
|
8943
8963
|
// mobily : 2014-12-18 GreenTech Consultancy Company W.L.L.
|
8944
8964
|
mobily
|
@@ -9006,18 +9026,12 @@ mtpc
|
|
9006
9026
|
// mtr : 2015-03-12 MTR Corporation Limited
|
9007
9027
|
mtr
|
9008
9028
|
|
9009
|
-
// multichoice : 2015-03-12 MultiChoice (Proprietary) Limited
|
9010
|
-
multichoice
|
9011
|
-
|
9012
9029
|
// mutual : 2015-04-02 Northwestern Mutual MU TLD Registry, LLC
|
9013
9030
|
mutual
|
9014
9031
|
|
9015
9032
|
// mutuelle : 2015-06-18 Fédération Nationale de la Mutualité Française
|
9016
9033
|
mutuelle
|
9017
9034
|
|
9018
|
-
// mzansimagic : 2015-03-05 Electronic Media Network (Pty) Ltd
|
9019
|
-
mzansimagic
|
9020
|
-
|
9021
9035
|
// nab : 2015-08-20 National Australia Bank Limited
|
9022
9036
|
nab
|
9023
9037
|
|
@@ -9027,9 +9041,6 @@ nadex
|
|
9027
9041
|
// nagoya : 2013-10-24 GMO Registry, Inc.
|
9028
9042
|
nagoya
|
9029
9043
|
|
9030
|
-
// naspers : 2015-02-12 Intelprop (Proprietary) Limited
|
9031
|
-
naspers
|
9032
|
-
|
9033
9044
|
// nationwide : 2015-07-23 Nationwide Mutual Insurance Company
|
9034
9045
|
nationwide
|
9035
9046
|
|
@@ -9192,7 +9203,7 @@ orange
|
|
9192
9203
|
// organic : 2014-03-27 Afilias Limited
|
9193
9204
|
organic
|
9194
9205
|
|
9195
|
-
// orientexpress : 2015-02-05
|
9206
|
+
// orientexpress : 2015-02-05
|
9196
9207
|
orientexpress
|
9197
9208
|
|
9198
9209
|
// origins : 2015-10-01 The Estée Lauder Companies Inc.
|
@@ -9243,9 +9254,6 @@ passagens
|
|
9243
9254
|
// pay : 2015-08-27 Amazon EU S.à r.l.
|
9244
9255
|
pay
|
9245
9256
|
|
9246
|
-
// payu : 2015-02-12 MIH PayU B.V.
|
9247
|
-
payu
|
9248
|
-
|
9249
9257
|
// pccw : 2015-05-14 PCCW Enterprises Limited
|
9250
9258
|
pccw
|
9251
9259
|
|
@@ -9258,9 +9266,15 @@ pfizer
|
|
9258
9266
|
// pharmacy : 2014-06-19 National Association of Boards of Pharmacy
|
9259
9267
|
pharmacy
|
9260
9268
|
|
9269
|
+
// phd : 2016-07-28 Charleston Road Registry Inc.
|
9270
|
+
phd
|
9271
|
+
|
9261
9272
|
// philips : 2014-11-07 Koninklijke Philips N.V.
|
9262
9273
|
philips
|
9263
9274
|
|
9275
|
+
// phone : 2016-06-02 Dish DBS Corporation
|
9276
|
+
phone
|
9277
|
+
|
9264
9278
|
// photo : 2013-11-14 Uniregistry, Corp.
|
9265
9279
|
photo
|
9266
9280
|
|
@@ -9396,6 +9410,9 @@ qvc
|
|
9396
9410
|
// racing : 2014-12-04 Premier Registry Limited
|
9397
9411
|
racing
|
9398
9412
|
|
9413
|
+
// radio : 2016-07-21 European Broadcasting Union (EBU)
|
9414
|
+
radio
|
9415
|
+
|
9399
9416
|
// raid : 2015-07-23 Johnson Shareholdings, Inc.
|
9400
9417
|
raid
|
9401
9418
|
|
@@ -9618,6 +9635,9 @@ scor
|
|
9618
9635
|
// scot : 2014-01-23 Dot Scot Registry Limited
|
9619
9636
|
scot
|
9620
9637
|
|
9638
|
+
// search : 2016-06-09 Charleston Road Registry Inc.
|
9639
|
+
search
|
9640
|
+
|
9621
9641
|
// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal)
|
9622
9642
|
seat
|
9623
9643
|
|
@@ -9831,9 +9851,6 @@ style
|
|
9831
9851
|
// sucks : 2014-12-22 Vox Populi Registry Inc.
|
9832
9852
|
sucks
|
9833
9853
|
|
9834
|
-
// supersport : 2015-03-05 SuperSport International Holdings Proprietary Limited
|
9835
|
-
supersport
|
9836
|
-
|
9837
9854
|
// supplies : 2013-12-19 Atomic Fields, LLC
|
9838
9855
|
supplies
|
9839
9856
|
|
@@ -10628,34 +10645,42 @@ zuerich
|
|
10628
10645
|
// ===BEGIN PRIVATE DOMAINS===
|
10629
10646
|
// (Note: these are in alphabetical order by company name)
|
10630
10647
|
|
10648
|
+
// Agnat sp. z o.o. : https://domena.pl
|
10649
|
+
// Submitted by Przemyslaw Plewa <it-admin@domena.pl>
|
10650
|
+
beep.pl
|
10651
|
+
|
10631
10652
|
// Alces Software Ltd : http://alces-software.com
|
10632
10653
|
// Submitted by Mark J. Titorenko <mark.titorenko@alces-software.com>
|
10633
10654
|
*.compute.estate
|
10634
10655
|
*.alces.network
|
10635
10656
|
|
10657
|
+
// alwaysdata : https://www.alwaysdata.com
|
10658
|
+
// Submitted by Cyril <admin@alwaysdata.com>
|
10659
|
+
*.alwaysdata.net
|
10660
|
+
|
10636
10661
|
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
|
10637
10662
|
// Submitted by Donavan Miller <donavanm@amazon.com>
|
10638
10663
|
cloudfront.net
|
10639
10664
|
|
10640
10665
|
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
10641
|
-
// Submitted by
|
10666
|
+
// Submitted by Philip Allchin <pallchin@amazon.com>
|
10667
|
+
compute.amazonaws.com
|
10642
10668
|
ap-northeast-1.compute.amazonaws.com
|
10643
10669
|
ap-northeast-2.compute.amazonaws.com
|
10644
10670
|
ap-southeast-1.compute.amazonaws.com
|
10645
10671
|
ap-southeast-2.compute.amazonaws.com
|
10646
|
-
cn-north-1.compute.amazonaws.cn
|
10647
|
-
compute-1.amazonaws.com
|
10648
|
-
compute.amazonaws.cn
|
10649
|
-
compute.amazonaws.com
|
10650
10672
|
eu-central-1.compute.amazonaws.com
|
10651
10673
|
eu-west-1.compute.amazonaws.com
|
10652
10674
|
sa-east-1.compute.amazonaws.com
|
10653
|
-
us-east-1.amazonaws.com
|
10654
10675
|
us-gov-west-1.compute.amazonaws.com
|
10655
10676
|
us-west-1.compute.amazonaws.com
|
10656
10677
|
us-west-2.compute.amazonaws.com
|
10678
|
+
compute-1.amazonaws.com
|
10657
10679
|
z-1.compute-1.amazonaws.com
|
10658
10680
|
z-2.compute-1.amazonaws.com
|
10681
|
+
us-east-1.amazonaws.com
|
10682
|
+
compute.amazonaws.com.cn
|
10683
|
+
cn-north-1.compute.amazonaws.com.cn
|
10659
10684
|
|
10660
10685
|
// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
|
10661
10686
|
// Submitted by Adam Stein <astein@amazon.com>
|
@@ -10691,23 +10716,43 @@ on-aptible.com
|
|
10691
10716
|
|
10692
10717
|
// Association potager.org : https://potager.org/
|
10693
10718
|
// Submitted by Lunar <jardiniers@potager.org>
|
10694
|
-
|
10719
|
+
pimienta.org
|
10695
10720
|
poivron.org
|
10721
|
+
potager.org
|
10696
10722
|
sweetpepper.org
|
10697
|
-
|
10723
|
+
|
10724
|
+
// ASUSTOR Inc. : http://www.asustor.com
|
10725
|
+
// Submitted by Vincent Tseng <vincenttseng@asustor.com>
|
10726
|
+
myasustor.com
|
10698
10727
|
|
10699
10728
|
// AVM : https://avm.de
|
10700
10729
|
// Submitted by Andreas Weise <a.weise@avm.de>
|
10701
10730
|
myfritz.net
|
10702
10731
|
|
10732
|
+
// backplane : https://www.backplane.io
|
10733
|
+
// Submitted by Anthony Voutas <anthony@backplane.io>
|
10734
|
+
backplaneapp.io
|
10735
|
+
|
10703
10736
|
// BetaInABox
|
10704
10737
|
// Submitted by Adrian <adrian@betainabox.com>
|
10705
10738
|
betainabox.com
|
10706
10739
|
|
10740
|
+
// BinaryLane : http://www.binarylane.com
|
10741
|
+
// Submitted by Nathan O'Sullivan <nathan@mammoth.com.au>
|
10742
|
+
bnr.la
|
10743
|
+
|
10707
10744
|
// Boxfuse : https://boxfuse.com
|
10708
10745
|
// Submitted by Axel Fontaine <axel@boxfuse.com>
|
10709
10746
|
boxfuse.io
|
10710
10747
|
|
10748
|
+
// BrowserSafetyMark
|
10749
|
+
// Submitted by Dave Tharp <browsersafetymark.io@quicinc.com>
|
10750
|
+
browsersafetymark.io
|
10751
|
+
|
10752
|
+
// callidomus: https://www.callidomus.com/
|
10753
|
+
// Submitted by Marcus Popp <admin@callidomus.com>
|
10754
|
+
mycd.eu
|
10755
|
+
|
10711
10756
|
// CentralNic : http://www.centralnic.com/names/domains
|
10712
10757
|
// Submitted by registry <gavin.brown@centralnic.com>
|
10713
10758
|
ae.org
|
@@ -10762,10 +10807,18 @@ co.com
|
|
10762
10807
|
// c.la : http://www.c.la/
|
10763
10808
|
c.la
|
10764
10809
|
|
10810
|
+
// certmgr.org : https://certmgr.org
|
10811
|
+
// Submitted by B. Blechschmidt <hostmaster@certmgr.org>
|
10812
|
+
certmgr.org
|
10813
|
+
|
10765
10814
|
// Citrix : https://citrix.com
|
10766
10815
|
// Submitted by Alex Stoddard <alex.stoddard@citrix.com>
|
10767
10816
|
xenapponazure.com
|
10768
10817
|
|
10818
|
+
// ClearVox : http://www.clearvox.nl/
|
10819
|
+
// Submitted by Leon Rowland <leon@clearvox.nl>
|
10820
|
+
virtueeldomein.nl
|
10821
|
+
|
10769
10822
|
// cloudControl : https://www.cloudcontrol.com/
|
10770
10823
|
// Submitted by Tobias Wilken <tw@cloudcontrol.com>
|
10771
10824
|
cloudcontrolled.com
|
@@ -10786,6 +10839,20 @@ r.cdn77.net
|
|
10786
10839
|
rsc.cdn77.org
|
10787
10840
|
ssl.origin.cdn77-secure.org
|
10788
10841
|
|
10842
|
+
// Cloud DNS Ltd : http://www.cloudns.net
|
10843
|
+
// Submitted by Aleksander Hristov <noc@cloudns.net>
|
10844
|
+
cloudns.asia
|
10845
|
+
cloudns.biz
|
10846
|
+
cloudns.club
|
10847
|
+
cloudns.cc
|
10848
|
+
cloudns.eu
|
10849
|
+
cloudns.in
|
10850
|
+
cloudns.info
|
10851
|
+
cloudns.org
|
10852
|
+
cloudns.pro
|
10853
|
+
cloudns.pw
|
10854
|
+
cloudns.us
|
10855
|
+
|
10789
10856
|
// CoDNS B.V.
|
10790
10857
|
co.nl
|
10791
10858
|
co.no
|
@@ -10794,6 +10861,14 @@ co.no
|
|
10794
10861
|
// Submitted by Damien Tournoud <damien@commerceguys.com>
|
10795
10862
|
*.platform.sh
|
10796
10863
|
|
10864
|
+
// Craynic, s.r.o. : http://www.craynic.com/
|
10865
|
+
// Submitted by Ales Krajnik <ales.krajnik@craynic.com>
|
10866
|
+
realm.cz
|
10867
|
+
|
10868
|
+
// Cryptonomic : https://cryptonomic.net/
|
10869
|
+
// Submitted by Andrew Cady <public-suffix-list@cryptonomic.net>
|
10870
|
+
*.cryptonomic.net
|
10871
|
+
|
10797
10872
|
// Cupcake : https://cupcake.io/
|
10798
10873
|
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
10799
10874
|
cupcake.is
|
@@ -10831,6 +10906,11 @@ dreamhosters.com
|
|
10831
10906
|
// Submitted by Ricardo Padilha <rpadilha@drobo.com>
|
10832
10907
|
mydrobo.com
|
10833
10908
|
|
10909
|
+
// Drud Holdings, LLC. : https://www.drud.com/
|
10910
|
+
// Submitted by Kevin Bridges <kevin@drud.com>
|
10911
|
+
drud.io
|
10912
|
+
drud.us
|
10913
|
+
|
10834
10914
|
// DuckDNS : http://www.duckdns.org/
|
10835
10915
|
// Submitted by Richard Harper <richard@duckdns.org>
|
10836
10916
|
duckdns.org
|
@@ -11188,6 +11268,13 @@ tr.eu.org
|
|
11188
11268
|
uk.eu.org
|
11189
11269
|
us.eu.org
|
11190
11270
|
|
11271
|
+
// Evennode : http://www.evennode.com/
|
11272
|
+
// Submitted by Michal Kralik <support@evennode.com>
|
11273
|
+
eu-1.evennode.com
|
11274
|
+
eu-2.evennode.com
|
11275
|
+
us-1.evennode.com
|
11276
|
+
us-2.evennode.com
|
11277
|
+
|
11191
11278
|
// Facebook, Inc.
|
11192
11279
|
// Submitted by Peter Ruibal <public-suffix@fb.com>
|
11193
11280
|
apps.fbsbx.com
|
@@ -11200,6 +11287,10 @@ global.ssl.fastly.net
|
|
11200
11287
|
a.prod.fastly.net
|
11201
11288
|
global.prod.fastly.net
|
11202
11289
|
|
11290
|
+
// Featherhead : https://featherhead.xyz/
|
11291
|
+
// Submitted by Simon Menke <simon@featherhead.xyz>
|
11292
|
+
fhapp.xyz
|
11293
|
+
|
11203
11294
|
// Firebase, Inc.
|
11204
11295
|
// Submitted by Chris Raynor <chris@firebase.com>
|
11205
11296
|
firebaseapp.com
|
@@ -11217,6 +11308,16 @@ fbxos.fr
|
|
11217
11308
|
freebox-os.fr
|
11218
11309
|
freeboxos.fr
|
11219
11310
|
|
11311
|
+
// Fusion Intranet : https://www.fusion-intranet.com
|
11312
|
+
// Submitted by Matthias Burtscher <matthias.burtscher@fusonic.net>
|
11313
|
+
myfusion.cloud
|
11314
|
+
|
11315
|
+
// Futureweb OG : http://www.futureweb.at
|
11316
|
+
// Submitted by Andreas Schnederle-Wagner <schnederle@futureweb.at>
|
11317
|
+
futuremailing.at
|
11318
|
+
*.ex.ortsinfo.at
|
11319
|
+
*.kunden.ortsinfo.at
|
11320
|
+
|
11220
11321
|
// GDS : https://www.gov.uk/service-manual/operations/operating-servicegovuk-subdomains
|
11221
11322
|
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
|
11222
11323
|
service.gov.uk
|
@@ -11231,9 +11332,15 @@ githubcloud.com
|
|
11231
11332
|
gist.githubcloud.com
|
11232
11333
|
*.githubcloudusercontent.com
|
11233
11334
|
|
11335
|
+
// GitLab, Inc.
|
11336
|
+
// Submitted by Alex Hanselka <alex@gitlab.com>
|
11337
|
+
gitlab.io
|
11338
|
+
|
11234
11339
|
// GlobeHosting, Inc.
|
11235
11340
|
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
11236
11341
|
ro.com
|
11342
|
+
ro.im
|
11343
|
+
shop.ro
|
11237
11344
|
|
11238
11345
|
// GoIP DNS Services : http://www.goip.de
|
11239
11346
|
// Submitted by Christian Poulter <milchstrasse@goip.de>
|
@@ -11322,6 +11429,7 @@ codespot.com
|
|
11322
11429
|
googleapis.com
|
11323
11430
|
googlecode.com
|
11324
11431
|
pagespeedmobilizer.com
|
11432
|
+
publishproxy.com
|
11325
11433
|
withgoogle.com
|
11326
11434
|
withyoutube.com
|
11327
11435
|
|
@@ -11332,6 +11440,10 @@ hashbang.sh
|
|
11332
11440
|
// Submitted by Shahidh K Muhammed <shahidh@hasura.io>
|
11333
11441
|
hasura-app.io
|
11334
11442
|
|
11443
|
+
// Hepforge : https://www.hepforge.org
|
11444
|
+
// Submitted by David Grellscheid <admin@hepforge.org>
|
11445
|
+
hepforge.org
|
11446
|
+
|
11335
11447
|
// Heroku : https://www.heroku.com/
|
11336
11448
|
// Submitted by Tom Maher <tmaher@heroku.com>
|
11337
11449
|
herokuapp.com
|
@@ -11345,6 +11457,66 @@ iki.fi
|
|
11345
11457
|
biz.at
|
11346
11458
|
info.at
|
11347
11459
|
|
11460
|
+
// Interlegis : http://www.interlegis.leg.br
|
11461
|
+
// Submitted by Gabriel Ferreira <registrobr@interlegis.leg.br>
|
11462
|
+
ac.leg.br
|
11463
|
+
al.leg.br
|
11464
|
+
am.leg.br
|
11465
|
+
ap.leg.br
|
11466
|
+
ba.leg.br
|
11467
|
+
ce.leg.br
|
11468
|
+
df.leg.br
|
11469
|
+
es.leg.br
|
11470
|
+
go.leg.br
|
11471
|
+
ma.leg.br
|
11472
|
+
mg.leg.br
|
11473
|
+
ms.leg.br
|
11474
|
+
mt.leg.br
|
11475
|
+
pa.leg.br
|
11476
|
+
pb.leg.br
|
11477
|
+
pe.leg.br
|
11478
|
+
pi.leg.br
|
11479
|
+
pr.leg.br
|
11480
|
+
rj.leg.br
|
11481
|
+
rn.leg.br
|
11482
|
+
ro.leg.br
|
11483
|
+
rr.leg.br
|
11484
|
+
rs.leg.br
|
11485
|
+
sc.leg.br
|
11486
|
+
se.leg.br
|
11487
|
+
sp.leg.br
|
11488
|
+
to.leg.br
|
11489
|
+
|
11490
|
+
// Joyent : https://www.joyent.com/
|
11491
|
+
// Submitted by Brian Bennett <brian.bennett@joyent.com>
|
11492
|
+
*.triton.zone
|
11493
|
+
*.cns.joyent.com
|
11494
|
+
|
11495
|
+
// JS.ORG : http://dns.js.org
|
11496
|
+
// Submitted by Stefan Keim <admin@js.org>
|
11497
|
+
js.org
|
11498
|
+
|
11499
|
+
// Keyweb AG : https://www.keyweb.de
|
11500
|
+
// Submitted by Martin Dannehl <postmaster@keymachine.de>
|
11501
|
+
keymachine.de
|
11502
|
+
|
11503
|
+
// KnightPoint Systems, LLC : http://www.knightpoint.com/
|
11504
|
+
// Submitted by Roy Keene <rkeene@knightpoint.com>
|
11505
|
+
knightpoint.systems
|
11506
|
+
|
11507
|
+
// .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf
|
11508
|
+
co.krd
|
11509
|
+
edu.krd
|
11510
|
+
|
11511
|
+
// Magento Commerce
|
11512
|
+
// Submitted by Damien Tournoud <dtournoud@magento.cloud>
|
11513
|
+
*.magentosite.cloud
|
11514
|
+
|
11515
|
+
// Meteor Development Group : https://www.meteor.com/hosting
|
11516
|
+
// Submitted by Pierre Carrier <pierre@meteor.com>
|
11517
|
+
meteorapp.com
|
11518
|
+
eu.meteorapp.com
|
11519
|
+
|
11348
11520
|
// Michau Enterprises Limited : http://www.co.pl/
|
11349
11521
|
co.pl
|
11350
11522
|
|
@@ -11471,6 +11643,10 @@ nyc.mn
|
|
11471
11643
|
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
11472
11644
|
nid.io
|
11473
11645
|
|
11646
|
+
// OpenCraft GmbH : http://opencraft.com/
|
11647
|
+
// Submitted by Sven Marnach <sven@opencraft.com>
|
11648
|
+
opencraft.hosting
|
11649
|
+
|
11474
11650
|
// Opera Software, A.S.A.
|
11475
11651
|
// Submitted by Yngve Pettersen <yngve@opera.com>
|
11476
11652
|
operaunite.com
|
@@ -11520,6 +11696,10 @@ xen.prgmr.com
|
|
11520
11696
|
// Submitted by registry <lendl@nic.at>
|
11521
11697
|
priv.at
|
11522
11698
|
|
11699
|
+
// Protonet GmbH : http://protonet.io
|
11700
|
+
// Submitted by Martin Meier <admin@protonet.io>
|
11701
|
+
protonet.io
|
11702
|
+
|
11523
11703
|
// Publication Presse Communication SARL : https://ppcom.fr
|
11524
11704
|
// Submitted by Yaacov Akiba Slama <admin@chirurgiens-dentistes-en-france.fr>
|
11525
11705
|
chirurgiens-dentistes-en-france.fr
|
@@ -11528,6 +11708,12 @@ chirurgiens-dentistes-en-france.fr
|
|
11528
11708
|
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
11529
11709
|
qa2.com
|
11530
11710
|
|
11711
|
+
// QNAP System Inc : https://www.qnap.com
|
11712
|
+
// Submitted by Nick Chang <nickchang@qnap.com>
|
11713
|
+
dev-myqnapcloud.com
|
11714
|
+
alpha-myqnapcloud.com
|
11715
|
+
myqnapcloud.com
|
11716
|
+
|
11531
11717
|
// Rackmaze LLC : https://www.rackmaze.com
|
11532
11718
|
// Submitted by Kirill Pertsev <kika@rackmaze.com>
|
11533
11719
|
rackmaze.com
|
@@ -11541,16 +11727,31 @@ rhcloud.com
|
|
11541
11727
|
// Submitted by Chris Kastorff <info@rethinkdb.com>
|
11542
11728
|
hzc.io
|
11543
11729
|
|
11730
|
+
// Revitalised Limited : http://www.revitalised.co.uk
|
11731
|
+
// Submitted by Jack Price <jack@revitalised.co.uk>
|
11732
|
+
wellbeingzone.eu
|
11733
|
+
ptplus.fit
|
11734
|
+
wellbeingzone.co.uk
|
11735
|
+
|
11544
11736
|
// Sandstorm Development Group, Inc. : https://sandcats.io/
|
11545
11737
|
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
11546
11738
|
sandcats.io
|
11547
11739
|
|
11740
|
+
// SBE network solutions GmbH : https://www.sbe.de/
|
11741
|
+
// Submitted by Norman Meilick <nm@sbe.de>
|
11742
|
+
logoip.de
|
11743
|
+
logoip.com
|
11744
|
+
|
11548
11745
|
// Service Online LLC : http://drs.ua/
|
11549
11746
|
// Submitted by Serhii Bulakh <support@drs.ua>
|
11550
11747
|
biz.ua
|
11551
11748
|
co.ua
|
11552
11749
|
pp.ua
|
11553
11750
|
|
11751
|
+
// Shopblocks : http://www.shopblocks.com/
|
11752
|
+
// Submitted by Alex Bowers <alex@shopblocks.com>
|
11753
|
+
myshopblocks.com
|
11754
|
+
|
11554
11755
|
// SinaAppEngine : http://sae.sina.com.cn/
|
11555
11756
|
// Submitted by SinaAppEngine <saesupport@sinacloud.com>
|
11556
11757
|
sinaapp.com
|
@@ -11563,10 +11764,20 @@ bounty-full.com
|
|
11563
11764
|
alpha.bounty-full.com
|
11564
11765
|
beta.bounty-full.com
|
11565
11766
|
|
11767
|
+
// staticland : https://static.land
|
11768
|
+
// Submitted by Seth Vincent <sethvincent@gmail.com>
|
11769
|
+
static.land
|
11770
|
+
dev.static.land
|
11771
|
+
sites.static.land
|
11772
|
+
|
11566
11773
|
// SpaceKit : https://www.spacekit.io/
|
11567
11774
|
// Submitted by Reza Akhavan <spacekit.io@gmail.com>
|
11568
11775
|
spacekit.io
|
11569
11776
|
|
11777
|
+
// Stackspace : https://www.stackspace.io/
|
11778
|
+
// Submitted by Lina He <info@stackspace.io>
|
11779
|
+
stackspace.space
|
11780
|
+
|
11570
11781
|
// Synology, Inc. : https://www.synology.com/
|
11571
11782
|
// Submitted by Rony Weng <ronyweng@synology.com>
|
11572
11783
|
diskstation.me
|
@@ -11583,6 +11794,10 @@ i234.me
|
|
11583
11794
|
myds.me
|
11584
11795
|
synology.me
|
11585
11796
|
|
11797
|
+
// TAIFUN Software AG : http://taifun-software.de
|
11798
|
+
// Submitted by Bjoern Henke <dev-server@taifun-software.de>
|
11799
|
+
taifun-dns.de
|
11800
|
+
|
11586
11801
|
// TASK geographical domains (www.task.gda.pl/uslugi/dns)
|
11587
11802
|
gda.pl
|
11588
11803
|
gdansk.pl
|
@@ -11590,11 +11805,21 @@ gdynia.pl
|
|
11590
11805
|
med.pl
|
11591
11806
|
sopot.pl
|
11592
11807
|
|
11593
|
-
// TownNews.com
|
11808
|
+
// TownNews.com : http://www.townnews.com
|
11594
11809
|
// Submitted by Dustin Ward <dward@townnews.com>
|
11595
11810
|
bloxcms.com
|
11596
11811
|
townnews-staging.com
|
11597
11812
|
|
11813
|
+
// TransIP : htts://www.transip.nl
|
11814
|
+
// Submitted by Rory Breuk <rbreuk@transip.nl>
|
11815
|
+
*.transurl.be
|
11816
|
+
*.transurl.eu
|
11817
|
+
*.transurl.nl
|
11818
|
+
|
11819
|
+
// TuxFamily : http://tuxfamily.org
|
11820
|
+
// Submitted by TuxFamily administrators <adm@staff.tuxfamily.org>
|
11821
|
+
tuxfamily.org
|
11822
|
+
|
11598
11823
|
// UDR Limited : http://www.udr.hk.com
|
11599
11824
|
// Submitted by registry <hostmaster@udr.hk.com>
|
11600
11825
|
hk.com
|
@@ -11602,10 +11827,18 @@ hk.org
|
|
11602
11827
|
ltd.hk
|
11603
11828
|
inc.hk
|
11604
11829
|
|
11830
|
+
// .US
|
11831
|
+
// Submitted by Ed Moore <Ed.Moore@lib.de.us>
|
11832
|
+
lib.de.us
|
11833
|
+
|
11605
11834
|
// Viprinet Europe GmbH : http://www.viprinet.com
|
11606
11835
|
// Submitted by Simon Kissel <hostmaster@viprinet.com>
|
11607
11836
|
router.management
|
11608
11837
|
|
11838
|
+
// Wikimedia Labs : https://wikitech.wikimedia.org
|
11839
|
+
// Submitted by Yuvi Panda <yuvipanda@wikimedia.org>
|
11840
|
+
wmflabs.org
|
11841
|
+
|
11609
11842
|
// Yola : https://www.yola.com/
|
11610
11843
|
// Submitted by Stefano Rivera <stefano@yola.com>
|
11611
11844
|
yolasite.com
|