@browserless.io/browserless 2.25.0-beta-2 → 2.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (224) hide show
  1. package/CHANGELOG.md +39 -3
  2. package/README.md +4 -5
  3. package/build/browserless.js +3 -1
  4. package/build/browsers/browsers.cdp.d.ts +3 -0
  5. package/build/browsers/browsers.cdp.js +4 -1
  6. package/build/browsers/browsers.playwright.d.ts +4 -0
  7. package/build/browsers/browsers.playwright.js +11 -2
  8. package/build/browsers/index.js +4 -3
  9. package/build/http.d.ts +9 -0
  10. package/build/http.js +9 -0
  11. package/build/routes/chrome/http/content.post.body.json +8 -8
  12. package/build/routes/chrome/http/pdf.post.body.json +8 -8
  13. package/build/routes/chrome/http/scrape.post.body.json +8 -8
  14. package/build/routes/chrome/http/screenshot.post.body.json +8 -8
  15. package/build/routes/chrome/tests/kill-sessions.spec.js +1 -1
  16. package/build/routes/chromium/http/content.post.body.json +8 -8
  17. package/build/routes/chromium/http/pdf.post.body.json +8 -8
  18. package/build/routes/chromium/http/scrape.post.body.json +8 -8
  19. package/build/routes/chromium/http/screenshot.post.body.json +8 -8
  20. package/build/routes/chromium/tests/kill-sessions.spec.js +1 -1
  21. package/build/routes/edge/http/content.post.body.json +579 -0
  22. package/build/routes/edge/http/content.post.d.ts +8 -0
  23. package/build/routes/edge/http/content.post.js +7 -0
  24. package/build/routes/edge/http/content.post.query.json +183 -0
  25. package/build/routes/edge/http/content.post.response.json +5 -0
  26. package/build/routes/edge/http/download.post.body.json +32 -0
  27. package/build/routes/edge/http/download.post.d.ts +8 -0
  28. package/build/routes/edge/http/download.post.js +7 -0
  29. package/build/routes/edge/http/download.post.query.json +120 -0
  30. package/build/routes/edge/http/download.post.response.json +4 -0
  31. package/build/routes/edge/http/function.post.body.json +32 -0
  32. package/build/routes/edge/http/function.post.d.ts +8 -0
  33. package/build/routes/edge/http/function.post.js +7 -0
  34. package/build/routes/edge/http/function.post.query.json +120 -0
  35. package/build/routes/edge/http/function.post.response.json +4 -0
  36. package/build/routes/edge/http/json-list.get.d.ts +5 -0
  37. package/build/routes/edge/http/json-list.get.js +5 -0
  38. package/build/routes/edge/http/json-list.get.response.json +52 -0
  39. package/build/routes/edge/http/json-new.put.d.ts +5 -0
  40. package/build/routes/edge/http/json-new.put.js +5 -0
  41. package/build/routes/edge/http/json-new.put.response.json +44 -0
  42. package/build/routes/edge/http/json-protocol.get.d.ts +5 -0
  43. package/build/routes/edge/http/json-protocol.get.js +5 -0
  44. package/build/routes/edge/http/json-protocol.get.response.json +6 -0
  45. package/build/routes/edge/http/json-version.get.d.ts +5 -0
  46. package/build/routes/edge/http/json-version.get.js +5 -0
  47. package/build/routes/edge/http/json-version.get.response.json +44 -0
  48. package/build/routes/edge/http/pdf.post.body.json +724 -0
  49. package/build/routes/edge/http/pdf.post.d.ts +8 -0
  50. package/build/routes/edge/http/pdf.post.js +7 -0
  51. package/build/routes/edge/http/pdf.post.query.json +120 -0
  52. package/build/routes/edge/http/pdf.post.response.json +5 -0
  53. package/build/routes/edge/http/performance.post.body.json +26 -0
  54. package/build/routes/edge/http/performance.post.d.ts +8 -0
  55. package/build/routes/edge/http/performance.post.js +7 -0
  56. package/build/routes/edge/http/performance.post.query.json +120 -0
  57. package/build/routes/edge/http/performance.post.response.json +7 -0
  58. package/build/routes/edge/http/scrape.post.body.json +626 -0
  59. package/build/routes/edge/http/scrape.post.d.ts +8 -0
  60. package/build/routes/edge/http/scrape.post.js +7 -0
  61. package/build/routes/edge/http/scrape.post.query.json +183 -0
  62. package/build/routes/edge/http/scrape.post.response.json +334 -0
  63. package/build/routes/edge/http/screenshot.post.body.json +669 -0
  64. package/build/routes/edge/http/screenshot.post.d.ts +8 -0
  65. package/build/routes/edge/http/screenshot.post.js +7 -0
  66. package/build/routes/edge/http/screenshot.post.query.json +120 -0
  67. package/build/routes/edge/http/screenshot.post.response.json +5 -0
  68. package/build/routes/edge/tests/content.spec.d.ts +1 -0
  69. package/build/routes/edge/tests/content.spec.js +312 -0
  70. package/build/routes/edge/tests/download.spec.d.ts +1 -0
  71. package/build/routes/edge/tests/download.spec.js +67 -0
  72. package/build/routes/edge/tests/function.spec.d.ts +1 -0
  73. package/build/routes/edge/tests/function.spec.js +277 -0
  74. package/build/routes/edge/tests/json-version.spec.d.ts +1 -0
  75. package/build/routes/edge/tests/json-version.spec.js +37 -0
  76. package/build/routes/edge/tests/kill-sessions.spec.d.ts +1 -0
  77. package/build/routes/edge/tests/kill-sessions.spec.js +80 -0
  78. package/build/routes/edge/tests/page-websocket.spec.d.ts +1 -0
  79. package/build/routes/edge/tests/page-websocket.spec.js +97 -0
  80. package/build/routes/edge/tests/pdf.spec.d.ts +1 -0
  81. package/build/routes/edge/tests/pdf.spec.js +345 -0
  82. package/build/routes/edge/tests/performance.spec.d.ts +1 -0
  83. package/build/routes/edge/tests/performance.spec.js +124 -0
  84. package/build/routes/edge/tests/scrape.spec.d.ts +1 -0
  85. package/build/routes/edge/tests/scrape.spec.js +354 -0
  86. package/build/routes/edge/tests/screenshot.spec.d.ts +1 -0
  87. package/build/routes/edge/tests/screenshot.spec.js +339 -0
  88. package/build/routes/edge/tests/websocket.spec.d.ts +1 -0
  89. package/build/routes/edge/tests/websocket.spec.js +384 -0
  90. package/build/routes/edge/ws/browser.d.ts +7 -0
  91. package/build/routes/edge/ws/browser.js +6 -0
  92. package/build/routes/edge/ws/browser.query.json +120 -0
  93. package/build/routes/edge/ws/cdp.d.ts +8 -0
  94. package/build/routes/edge/ws/cdp.js +7 -0
  95. package/build/routes/edge/ws/cdp.query.json +120 -0
  96. package/build/routes/edge/ws/page.d.ts +8 -0
  97. package/build/routes/edge/ws/page.js +7 -0
  98. package/build/routes/edge/ws/page.query.json +120 -0
  99. package/build/routes/edge/ws/playwright.d.ts +8 -0
  100. package/build/routes/edge/ws/playwright.js +7 -0
  101. package/build/routes/edge/ws/playwright.query.json +100 -0
  102. package/build/routes/firefox/tests/kill-sessions.spec.js +1 -1
  103. package/build/routes/management/http/meta.get.js +3 -1
  104. package/build/routes/webkit/tests/kill-sessions.spec.js +1 -1
  105. package/build/sdk-utils.js +1 -1
  106. package/build/shared/scrape.http.js +2 -2
  107. package/build/types.d.ts +32 -0
  108. package/build/types.js +18 -0
  109. package/build/utils.d.ts +1 -0
  110. package/build/utils.js +16 -2
  111. package/docker/chrome/Dockerfile +14 -14
  112. package/docker/chromium/Dockerfile +14 -14
  113. package/docker/edge/.dockerignore +16 -0
  114. package/docker/edge/Dockerfile +43 -0
  115. package/docker/firefox/Dockerfile +14 -14
  116. package/docker/multi/Dockerfile +18 -18
  117. package/docker/sdk/Dockerfile +10 -0
  118. package/extensions/ublock/_locales/ar/messages.json +3 -3
  119. package/extensions/ublock/_locales/bg/messages.json +1 -1
  120. package/extensions/ublock/_locales/br_FR/messages.json +2 -2
  121. package/extensions/ublock/_locales/cy/messages.json +11 -11
  122. package/extensions/ublock/_locales/el/messages.json +2 -2
  123. package/extensions/ublock/_locales/hu/messages.json +1 -1
  124. package/extensions/ublock/_locales/id/messages.json +1 -1
  125. package/extensions/ublock/_locales/lv/messages.json +4 -4
  126. package/extensions/ublock/_locales/mk/messages.json +130 -130
  127. package/extensions/ublock/_locales/oc/messages.json +1 -1
  128. package/extensions/ublock/_locales/pt_BR/messages.json +1 -1
  129. package/extensions/ublock/_locales/pt_PT/messages.json +2 -2
  130. package/extensions/ublock/_locales/si/messages.json +100 -100
  131. package/extensions/ublock/_locales/sr/messages.json +4 -4
  132. package/extensions/ublock/_locales/vi/messages.json +19 -19
  133. package/extensions/ublock/_locales/zh_TW/messages.json +28 -28
  134. package/extensions/ublock/assets/assets.json +33 -29
  135. package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +2984 -3287
  136. package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +150 -171
  137. package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +37 -27
  138. package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +802 -888
  139. package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2355 -2071
  140. package/extensions/ublock/assets/ublock/badlists.txt +9 -1
  141. package/extensions/ublock/assets/ublock/badware.min.txt +354 -243
  142. package/extensions/ublock/assets/ublock/filters.min.txt +5837 -5737
  143. package/extensions/ublock/assets/ublock/privacy.min.txt +151 -38
  144. package/extensions/ublock/assets/ublock/quick-fixes.min.txt +83 -127
  145. package/extensions/ublock/assets/ublock/unbreak.min.txt +66 -50
  146. package/extensions/ublock/css/codemirror.css +4 -0
  147. package/extensions/ublock/document-blocked.html +3 -1
  148. package/extensions/ublock/js/arglist-parser.js +116 -0
  149. package/extensions/ublock/js/background.js +1 -1
  150. package/extensions/ublock/js/logger-ui.js +1 -1
  151. package/extensions/ublock/js/messaging.js +9 -2
  152. package/extensions/ublock/js/pagestore.js +3 -1
  153. package/extensions/ublock/js/redirect-engine.js +3 -1
  154. package/extensions/ublock/{assets/resources/set-attr.js → js/resources/attribute.js} +115 -11
  155. package/extensions/ublock/js/resources/base.js +38 -0
  156. package/extensions/ublock/js/resources/cookie.js +419 -0
  157. package/extensions/ublock/js/resources/href-sanitizer.js +188 -0
  158. package/extensions/ublock/js/resources/localstorage.js +235 -0
  159. package/extensions/ublock/js/resources/parse-replace.js +54 -0
  160. package/extensions/ublock/js/resources/prevent-settimeout.js +236 -0
  161. package/extensions/ublock/js/resources/proxy-apply.js +109 -0
  162. package/extensions/ublock/js/resources/replace-argument.js +120 -0
  163. package/extensions/ublock/{assets → js}/resources/run-at.js +20 -4
  164. package/extensions/ublock/{assets → js}/resources/safe-self.js +5 -4
  165. package/extensions/ublock/{assets → js}/resources/scriptlets.js +90 -1589
  166. package/extensions/ublock/js/resources/set-constant.js +287 -0
  167. package/extensions/ublock/js/resources/shared.js +44 -0
  168. package/extensions/ublock/js/resources/spoof-css.js +163 -0
  169. package/extensions/ublock/js/s14e-serializer.js +2 -1
  170. package/extensions/ublock/js/scriptlet-filtering-core.js +1 -1
  171. package/extensions/ublock/js/scriptlet-filtering.js +1 -31
  172. package/extensions/ublock/js/static-dnr-filtering.js +143 -129
  173. package/extensions/ublock/js/static-filtering-parser.js +27 -117
  174. package/extensions/ublock/js/static-net-filtering.js +53 -141
  175. package/extensions/ublock/js/traffic.js +1 -1
  176. package/extensions/ublock/js/urlskip.js +166 -0
  177. package/extensions/ublock/js/vapi-background-ext.js +38 -14
  178. package/extensions/ublock/manifest.json +1 -1
  179. package/package.json +22 -22
  180. package/src/browserless.ts +4 -0
  181. package/src/browsers/browsers.cdp.ts +5 -0
  182. package/src/browsers/browsers.playwright.ts +14 -1
  183. package/src/browsers/index.ts +5 -2
  184. package/src/http.ts +9 -0
  185. package/src/routes/chrome/tests/kill-sessions.spec.ts +1 -1
  186. package/src/routes/chromium/tests/kill-sessions.spec.ts +1 -1
  187. package/src/routes/edge/http/content.post.ts +20 -0
  188. package/src/routes/edge/http/download.post.ts +20 -0
  189. package/src/routes/edge/http/function.post.ts +20 -0
  190. package/src/routes/edge/http/json-list.get.ts +7 -0
  191. package/src/routes/edge/http/json-new.put.ts +7 -0
  192. package/src/routes/edge/http/json-protocol.get.ts +7 -0
  193. package/src/routes/edge/http/json-version.get.ts +7 -0
  194. package/src/routes/edge/http/pdf.post.ts +20 -0
  195. package/src/routes/edge/http/performance.post.ts +20 -0
  196. package/src/routes/edge/http/scrape.post.ts +20 -0
  197. package/src/routes/edge/http/screenshot.post.ts +20 -0
  198. package/src/routes/edge/tests/content.spec.ts +376 -0
  199. package/src/routes/edge/tests/download.spec.ts +77 -0
  200. package/src/routes/edge/tests/function.spec.ts +317 -0
  201. package/src/routes/edge/tests/json-version.spec.ts +52 -0
  202. package/src/routes/edge/tests/kill-sessions.spec.ts +99 -0
  203. package/src/routes/edge/tests/page-websocket.spec.ts +129 -0
  204. package/src/routes/edge/tests/pdf.spec.ts +389 -0
  205. package/src/routes/edge/tests/performance.spec.ts +155 -0
  206. package/src/routes/edge/tests/scrape.spec.ts +417 -0
  207. package/src/routes/edge/tests/screenshot.spec.ts +387 -0
  208. package/src/routes/edge/tests/websocket.spec.ts +510 -0
  209. package/src/routes/edge/ws/browser.ts +10 -0
  210. package/src/routes/edge/ws/cdp.ts +17 -0
  211. package/src/routes/edge/ws/page.ts +10 -0
  212. package/src/routes/edge/ws/playwright.ts +17 -0
  213. package/src/routes/firefox/tests/kill-sessions.spec.ts +1 -1
  214. package/src/routes/management/http/meta.get.ts +6 -1
  215. package/src/routes/management/http/static.get.ts +1 -1
  216. package/src/routes/webkit/tests/kill-sessions.spec.ts +1 -1
  217. package/src/sdk-utils.ts +1 -1
  218. package/src/shared/scrape.http.ts +2 -2
  219. package/src/types.ts +19 -0
  220. package/src/utils.ts +38 -16
  221. package/static/docs/swagger.json +2097 -10
  222. package/static/docs/swagger.min.json +2096 -9
  223. package/static/function/client.js +141 -253
  224. package/static/function/index.html +141 -253
@@ -5,8 +5,8 @@
5
5
  // Please pull this list from, and only from https://publicsuffix.org/list/public_suffix_list.dat,
6
6
  // rather than any other VCS sites. Pulling from any other URL is not guaranteed to be supported.
7
7
 
8
- // VERSION: 2024-11-18_15-30-55_UTC
9
- // COMMIT: b00d15ea62059a24d57cac96740c98dcb80b6edc
8
+ // VERSION: 2024-12-24_13-56-23_UTC
9
+ // COMMIT: f229d7f87051bb6197b315f42adae05cb68e33b5
10
10
 
11
11
  // Instructions on pulling and using this list can be found at https://publicsuffix.org/list/.
12
12
 
@@ -17,8 +17,8 @@ ac
17
17
  com.ac
18
18
  edu.ac
19
19
  gov.ac
20
- net.ac
21
20
  mil.ac
21
+ net.ac
22
22
  org.ac
23
23
 
24
24
  // ad : https://www.iana.org/domains/root/db/ad.html
@@ -27,13 +27,13 @@ ad
27
27
 
28
28
  // ae : https://tdra.gov.ae/en/aeda/ae-policies
29
29
  ae
30
+ ac.ae
30
31
  co.ae
32
+ gov.ae
33
+ mil.ae
31
34
  net.ae
32
35
  org.ae
33
36
  sch.ae
34
- ac.ae
35
- gov.ae
36
- mil.ae
37
37
 
38
38
  // aero : https://information.aero/registration/policies/dmp
39
39
  aero
@@ -135,27 +135,27 @@ union.aero
135
135
  workinggroup.aero
136
136
  works.aero
137
137
 
138
- // af : http://www.nic.af/help.jsp
138
+ // af : https://www.nic.af/domain-price
139
139
  af
140
- gov.af
141
140
  com.af
142
- org.af
143
- net.af
144
141
  edu.af
142
+ gov.af
143
+ net.af
144
+ org.af
145
145
 
146
146
  // ag : http://www.nic.ag/prices.htm
147
147
  ag
148
+ co.ag
148
149
  com.ag
149
- org.ag
150
150
  net.ag
151
- co.ag
152
151
  nom.ag
152
+ org.ag
153
153
 
154
154
  // ai : http://nic.com.ai/
155
155
  ai
156
- off.ai
157
156
  com.ai
158
157
  net.ai
158
+ off.ai
159
159
  org.ai
160
160
 
161
161
  // al : http://www.ert.gov.al/ert_alb/faq_det.html?Id=31
@@ -168,6 +168,7 @@ net.al
168
168
  org.al
169
169
 
170
170
  // am : https://www.amnic.net/policy/en/Policy_EN.pdf
171
+ // Confirmed by ISOC AM <isoc@isoc.am> 2024-11-18
171
172
  am
172
173
  co.am
173
174
  com.am
@@ -176,17 +177,17 @@ net.am
176
177
  org.am
177
178
 
178
179
  // ao : https://www.iana.org/domains/root/db/ao.html
179
- // http://www.dns.ao/REGISTR.DOC
180
+ // https://www.dns.ao/ao/
180
181
  ao
182
+ co.ao
181
183
  ed.ao
182
184
  edu.ao
183
185
  gov.ao
184
186
  gv.ao
187
+ it.ao
185
188
  og.ao
186
189
  org.ao
187
- co.ao
188
190
  pb.ao
189
- it.ao
190
191
 
191
192
  // aq : https://www.iana.org/domains/root/db/aq.html
192
193
  aq
@@ -230,27 +231,27 @@ asia
230
231
  // Confirmed by registry <it@nic.at> 2008-06-17
231
232
  at
232
233
  ac.at
234
+ sth.ac.at
233
235
  co.at
234
236
  gv.at
235
237
  or.at
236
- sth.ac.at
237
238
 
238
239
  // au : https://www.iana.org/domains/root/db/au.html
239
- // http://www.auda.org.au/
240
+ // https://www.auda.org.au/
240
241
  // Confirmed by registry <general@auda.org.au> 2024-11-17
241
242
  au
242
243
  // 2LDs
244
+ asn.au
243
245
  com.au
244
- net.au
245
- org.au
246
246
  edu.au
247
247
  gov.au
248
- asn.au
249
248
  id.au
249
+ net.au
250
+ org.au
250
251
  // Historic 2LDs (closed to new registration, but sites still exist)
251
252
  conf.au
252
253
  oz.au
253
- // CGDNs - http://www.cgdn.org.au/
254
+ // CGDNs : https://www.auda.org.au/au-domain-names/the-different-au-domain-names/state-and-territory-domain-names/
254
255
  act.au
255
256
  nsw.au
256
257
  nt.au
@@ -270,9 +271,9 @@ sa.edu.au
270
271
  tas.edu.au
271
272
  vic.edu.au
272
273
  wa.edu.au
273
- // act.gov.au Bug 984824 - Removed at request of Greg Tankard
274
- // nsw.gov.au Bug 547985 - Removed at request of <Shae.Donelan@services.nsw.gov.au>
275
- // nt.gov.au Bug 940478 - Removed at request of Greg Connors <Greg.Connors@nt.gov.au>
274
+ // act.gov.au - Bug 984824 - Removed at request of Greg Tankard
275
+ // nsw.gov.au - Bug 547985 - Removed at request of <Shae.Donelan@services.nsw.gov.au>
276
+ // nt.gov.au - Bug 940478 - Removed at request of Greg Connors <Greg.Connors@nt.gov.au>
276
277
  qld.gov.au
277
278
  sa.gov.au
278
279
  tas.gov.au
@@ -290,21 +291,25 @@ com.aw
290
291
  ax
291
292
 
292
293
  // az : https://www.iana.org/domains/root/db/az.html
294
+ // Confirmed via https://whois.az/?page_id=10 2024-12-11
293
295
  az
296
+ biz.az
297
+ co.az
294
298
  com.az
295
- net.az
296
- int.az
297
- gov.az
298
- org.az
299
299
  edu.az
300
+ gov.az
300
301
  info.az
301
- pp.az
302
+ int.az
302
303
  mil.az
303
304
  name.az
305
+ net.az
306
+ org.az
307
+ pp.az
308
+ // No longer available for registration, however domains exist as of 2024-12-11
309
+ // see https://whois.az/?page_id=783
304
310
  pro.az
305
- biz.az
306
311
 
307
- // ba : http://nic.ba/users_data/files/pravilnik_o_registraciji.pdf
312
+ // ba : https://www.iana.org/domains/root/db/ba.html
308
313
  ba
309
314
  com.ba
310
315
  edu.ba
@@ -341,6 +346,16 @@ gov.bf
341
346
  // bg : https://www.iana.org/domains/root/db/bg.html
342
347
  // https://www.register.bg/user/static/rules/en/index.html
343
348
  bg
349
+ 0.bg
350
+ 1.bg
351
+ 2.bg
352
+ 3.bg
353
+ 4.bg
354
+ 5.bg
355
+ 6.bg
356
+ 7.bg
357
+ 8.bg
358
+ 9.bg
344
359
  a.bg
345
360
  b.bg
346
361
  c.bg
@@ -367,24 +382,14 @@ w.bg
367
382
  x.bg
368
383
  y.bg
369
384
  z.bg
370
- 0.bg
371
- 1.bg
372
- 2.bg
373
- 3.bg
374
- 4.bg
375
- 5.bg
376
- 6.bg
377
- 7.bg
378
- 8.bg
379
- 9.bg
380
385
 
381
386
  // bh : https://www.iana.org/domains/root/db/bh.html
382
387
  bh
383
388
  com.bh
384
389
  edu.bh
390
+ gov.bh
385
391
  net.bh
386
392
  org.bh
387
- gov.bh
388
393
 
389
394
  // bi : https://www.iana.org/domains/root/db/bi.html
390
395
  // http://whois.nic.bi/
@@ -399,7 +404,7 @@ org.bi
399
404
  biz
400
405
 
401
406
  // bj : https://nic.bj/bj-suffixes.txt
402
- // submitted by registry <contact@nic.bj>
407
+ // Submitted by registry <contact@nic.bj>
403
408
  bj
404
409
  africa.bj
405
410
  agro.bj
@@ -417,12 +422,12 @@ money.bj
417
422
  net.bj
418
423
  org.bj
419
424
  ote.bj
420
- resto.bj
421
425
  restaurant.bj
426
+ resto.bj
422
427
  tourism.bj
423
428
  univ.bj
424
429
 
425
- // bm : http://www.bermudanic.bm/dnr-text.txt
430
+ // bm : https://www.bermudanic.bm/domain-registration/index.php
426
431
  bm
427
432
  com.bm
428
433
  edu.bm
@@ -438,15 +443,16 @@ gov.bn
438
443
  net.bn
439
444
  org.bn
440
445
 
441
- // bo : https://nic.bo/delegacion2015.php#h-1.10
446
+ // bo : https://nic.bo
447
+ // Confirmed by registry <soporte@nic.bo> 2024-11-19
442
448
  bo
443
449
  com.bo
444
450
  edu.bo
445
451
  gob.bo
446
452
  int.bo
447
- org.bo
448
- net.bo
449
453
  mil.bo
454
+ net.bo
455
+ org.bo
450
456
  tv.bo
451
457
  web.bo
452
458
  // Social Domains
@@ -472,9 +478,9 @@ natural.bo
472
478
  nombre.bo
473
479
  noticias.bo
474
480
  patria.bo
481
+ plurinacional.bo
475
482
  politica.bo
476
483
  profesional.bo
477
- plurinacional.bo
478
484
  pueblo.bo
479
485
  revista.bo
480
486
  salud.bo
@@ -661,10 +667,10 @@ zlg.br
661
667
  // bs : http://www.nic.bs/rules.html
662
668
  bs
663
669
  com.bs
664
- net.bs
665
- org.bs
666
670
  edu.bs
667
671
  gov.bs
672
+ net.bs
673
+ org.bs
668
674
 
669
675
  // bt : https://www.iana.org/domains/root/db/bt.html
670
676
  bt
@@ -679,10 +685,12 @@ org.bt
679
685
  bv
680
686
 
681
687
  // bw : https://www.iana.org/domains/root/db/bw.html
682
- // http://www.gobin.info/domainname/bw.doc
683
- // list of other 2nd level tlds ?
688
+ // https://nic.net.bw/bw-name-structure
684
689
  bw
690
+ ac.bw
685
691
  co.bw
692
+ gov.bw
693
+ net.bw
686
694
  org.bw
687
695
 
688
696
  // by : https://www.iana.org/domains/root/db/by.html
@@ -703,10 +711,10 @@ of.by
703
711
  bz
704
712
  co.bz
705
713
  com.bz
706
- net.bz
707
- org.bz
708
714
  edu.bz
709
715
  gov.bz
716
+ net.bz
717
+ org.bz
710
718
 
711
719
  // ca : https://www.iana.org/domains/root/db/ca.html
712
720
  ca
@@ -736,7 +744,7 @@ cat
736
744
  cc
737
745
 
738
746
  // cd : https://www.iana.org/domains/root/db/cd.html
739
- // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
747
+ // https://www.nic.cd
740
748
  cd
741
749
  gov.cd
742
750
 
@@ -750,21 +758,20 @@ cg
750
758
  ch
751
759
 
752
760
  // ci : https://www.iana.org/domains/root/db/ci.html
753
- // http://www.nic.ci/index.php?page=charte
754
761
  ci
755
- org.ci
756
- or.ci
757
- com.ci
762
+ ac.ci
763
+ aéroport.ci
764
+ asso.ci
758
765
  co.ci
759
- edu.ci
766
+ com.ci
760
767
  ed.ci
761
- ac.ci
762
- net.ci
768
+ edu.ci
763
769
  go.ci
764
- asso.ci
765
- aéroport.ci
766
- int.ci
767
770
  gouv.ci
771
+ int.ci
772
+ net.ci
773
+ or.ci
774
+ org.ci
768
775
 
769
776
  // ck : https://www.iana.org/domains/root/db/ck.html
770
777
  *.ck
@@ -792,12 +799,12 @@ ac.cn
792
799
  com.cn
793
800
  edu.cn
794
801
  gov.cn
802
+ mil.cn
795
803
  net.cn
796
804
  org.cn
797
- mil.cn
798
805
  公司.cn
799
- 网络.cn
800
806
  網絡.cn
807
+ 网络.cn
801
808
  // cn geographic names
802
809
  ah.cn
803
810
  bj.cn
@@ -805,18 +812,20 @@ cq.cn
805
812
  fj.cn
806
813
  gd.cn
807
814
  gs.cn
808
- gz.cn
809
815
  gx.cn
816
+ gz.cn
810
817
  ha.cn
811
818
  hb.cn
812
819
  he.cn
813
820
  hi.cn
821
+ hk.cn
814
822
  hl.cn
815
823
  hn.cn
816
824
  jl.cn
817
825
  js.cn
818
826
  jx.cn
819
827
  ln.cn
828
+ mo.cn
820
829
  nm.cn
821
830
  nx.cn
822
831
  qh.cn
@@ -826,30 +835,24 @@ sh.cn
826
835
  sn.cn
827
836
  sx.cn
828
837
  tj.cn
838
+ tw.cn
829
839
  xj.cn
830
840
  xz.cn
831
841
  yn.cn
832
842
  zj.cn
833
- hk.cn
834
- mo.cn
835
- tw.cn
836
843
 
837
844
  // co : https://www.iana.org/domains/root/db/co.html
838
- // Submitted by registry <tecnico@uniandes.edu.co>
845
+ // https://www.cointernet.com.co/registra
846
+ // https://www.cointernet.com.co/como-funciona-un-dominio-restringido
847
+ // Confirmed by registry <gonzalo@cointernet.com.co> 2024-11-18
839
848
  co
840
- arts.co
841
849
  com.co
842
850
  edu.co
843
- firm.co
844
851
  gov.co
845
- info.co
846
- int.co
847
852
  mil.co
848
853
  net.co
849
854
  nom.co
850
855
  org.co
851
- rec.co
852
- web.co
853
856
 
854
857
  // com : https://www.iana.org/domains/root/db/com.html
855
858
  com
@@ -857,7 +860,7 @@ com
857
860
  // coop : https://www.iana.org/domains/root/db/coop.html
858
861
  coop
859
862
 
860
- // cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do
863
+ // cr : https://nic.cr/capitulo-1-registro-de-un-nombre-de-dominio/
861
864
  cr
862
865
  ac.cr
863
866
  co.cr
@@ -878,16 +881,20 @@ net.cu
878
881
  org.cu
879
882
 
880
883
  // cv : https://www.iana.org/domains/root/db/cv.html
881
- // cv : http://www.dns.cv/tldcv_portal/do?com=DS;5446457100;111;+PAGE(4000018)+K-CAT-CODIGO(RDOM)+RCNT(100); <- registration rules
884
+ // https://ola.cv/domain-extensions-under-cv/
885
+ // Confirmed by registry <support@ola.cv> 2024-11-26
882
886
  cv
883
887
  com.cv
884
888
  edu.cv
889
+ id.cv
885
890
  int.cv
891
+ net.cv
886
892
  nome.cv
887
893
  org.cv
894
+ publ.cv
888
895
 
889
- // cw : http://www.una.cw/cw_registry/
890
- // Confirmed by registry <registry@una.net> 2013-03-26
896
+ // cw : https://www.uoc.cw/cw-registry
897
+ // Confirmed by registry <registry@uoc.cw> 2024-11-19
891
898
  cw
892
899
  com.cw
893
900
  edu.cw
@@ -900,8 +907,8 @@ cx
900
907
  gov.cx
901
908
 
902
909
  // cy : http://www.nic.cy/
903
- // Submitted by registry Panayiotou Fotia <cydns@ucy.ac.cy>
904
- // namespace policies URL https://www.nic.cy/portal//sites/default/files/symfonia_gia_eggrafi.pdf
910
+ // Submitted by Panayiotou Fotia <cydns@ucy.ac.cy>
911
+ // https://nic.cy/wp-content/uploads/2024/01/Create-Request-for-domain-name-registration-1.pdf
905
912
  cy
906
913
  ac.cy
907
914
  biz.cy
@@ -932,12 +939,15 @@ dj
932
939
  dk
933
940
 
934
941
  // dm : https://www.iana.org/domains/root/db/dm.html
942
+ // https://nic.dm/policies/pdf/DMRulesandGuidelines2024v1.pdf
943
+ // Confirmed by registry <admin@dotdm.dm> 2024-11-19
935
944
  dm
945
+ co.dm
936
946
  com.dm
937
- net.dm
938
- org.dm
939
947
  edu.dm
940
948
  gov.dm
949
+ net.dm
950
+ org.dm
941
951
 
942
952
  // do : https://www.iana.org/domains/root/db/do.html
943
953
  do
@@ -959,77 +969,83 @@ asso.dz
959
969
  com.dz
960
970
  edu.dz
961
971
  gov.dz
962
- org.dz
963
972
  net.dz
973
+ org.dz
964
974
  pol.dz
965
975
  soc.dz
966
976
  tm.dz
967
977
 
968
- // ec : http://www.nic.ec/reg/paso1.asp
978
+ // ec : https://www.nic.ec/
969
979
  // Submitted by registry <vabboud@nic.ec>
970
980
  ec
971
981
  com.ec
972
- info.ec
973
- net.ec
982
+ edu.ec
974
983
  fin.ec
984
+ gob.ec
985
+ gov.ec
986
+ info.ec
975
987
  k12.ec
976
988
  med.ec
977
- pro.ec
978
- org.ec
979
- edu.ec
980
- gov.ec
981
- gob.ec
982
989
  mil.ec
990
+ net.ec
991
+ org.ec
992
+ pro.ec
983
993
 
984
994
  // edu : https://www.iana.org/domains/root/db/edu.html
985
995
  edu
986
996
 
987
- // ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B
997
+ // ee : https://www.internet.ee/domains/general-domains-and-procedure-for-registration-of-sub-domains-under-general-domains
988
998
  ee
999
+ aip.ee
1000
+ com.ee
989
1001
  edu.ee
1002
+ fie.ee
990
1003
  gov.ee
991
- riik.ee
992
1004
  lib.ee
993
1005
  med.ee
994
- com.ee
995
- pri.ee
996
- aip.ee
997
1006
  org.ee
998
- fie.ee
1007
+ pri.ee
1008
+ riik.ee
999
1009
 
1000
1010
  // eg : https://www.iana.org/domains/root/db/eg.html
1011
+ // https://domain.eg/en/domain-rules/subdomain-names-types/
1001
1012
  eg
1013
+ ac.eg
1002
1014
  com.eg
1003
1015
  edu.eg
1004
1016
  eun.eg
1005
1017
  gov.eg
1018
+ info.eg
1019
+ me.eg
1006
1020
  mil.eg
1007
1021
  name.eg
1008
1022
  net.eg
1009
1023
  org.eg
1010
1024
  sci.eg
1025
+ sport.eg
1026
+ tv.eg
1011
1027
 
1012
1028
  // er : https://www.iana.org/domains/root/db/er.html
1013
1029
  *.er
1014
1030
 
1015
- // es : https://www.nic.es/site_ingles/ingles/dominios/index.html
1031
+ // es : https://www.dominios.es/en
1016
1032
  es
1017
1033
  com.es
1034
+ edu.es
1035
+ gob.es
1018
1036
  nom.es
1019
1037
  org.es
1020
- gob.es
1021
- edu.es
1022
1038
 
1023
1039
  // et : https://www.iana.org/domains/root/db/et.html
1024
1040
  et
1041
+ biz.et
1025
1042
  com.et
1026
- gov.et
1027
- org.et
1028
1043
  edu.et
1029
- biz.et
1030
- name.et
1044
+ gov.et
1031
1045
  info.et
1046
+ name.et
1032
1047
  net.et
1048
+ org.et
1033
1049
 
1034
1050
  // eu : https://www.iana.org/domains/root/db/eu.html
1035
1051
  eu
@@ -1060,11 +1076,11 @@ pro.fj
1060
1076
  *.fk
1061
1077
 
1062
1078
  // fm : https://www.iana.org/domains/root/db/fm.html
1079
+ fm
1063
1080
  com.fm
1064
1081
  edu.fm
1065
1082
  net.fm
1066
1083
  org.fm
1067
- fm
1068
1084
 
1069
1085
  // fo : https://www.iana.org/domains/root/db/fo.html
1070
1086
  fo
@@ -1091,24 +1107,25 @@ ga
1091
1107
  gb
1092
1108
 
1093
1109
  // gd : https://www.iana.org/domains/root/db/gd.html
1110
+ gd
1094
1111
  edu.gd
1095
1112
  gov.gd
1096
- gd
1097
1113
 
1098
- // ge : http://www.nic.net.ge/policy_en.pdf
1114
+ // ge : https://nic.ge/en/administrator/the-ge-domain-regulations
1115
+ // Confirmed by registry <info@nic.ge> 2024-11-20
1099
1116
  ge
1100
1117
  com.ge
1101
1118
  edu.ge
1102
1119
  gov.ge
1103
- org.ge
1104
- mil.ge
1105
1120
  net.ge
1121
+ org.ge
1106
1122
  pvt.ge
1123
+ school.ge
1107
1124
 
1108
1125
  // gf : https://www.iana.org/domains/root/db/gf.html
1109
1126
  gf
1110
1127
 
1111
- // gg : http://www.channelisles.net/register-domains/
1128
+ // gg : https://www.channelisles.net/register-1/register-direct
1112
1129
  // Confirmed by registry <nigel@channelisles.net> 2013-11-28
1113
1130
  gg
1114
1131
  co.gg
@@ -1116,23 +1133,23 @@ net.gg
1116
1133
  org.gg
1117
1134
 
1118
1135
  // gh : https://www.iana.org/domains/root/db/gh.html
1119
- // see also: http://www.nic.gh/reg_now.php
1136
+ // https://www.nic.gh/
1120
1137
  // Although domains directly at second level are not possible at the moment,
1121
1138
  // they have been possible for some time and may come back.
1122
1139
  gh
1123
1140
  com.gh
1124
1141
  edu.gh
1125
1142
  gov.gh
1126
- org.gh
1127
1143
  mil.gh
1144
+ org.gh
1128
1145
 
1129
1146
  // gi : http://www.nic.gi/rules.html
1130
1147
  gi
1131
1148
  com.gi
1132
- ltd.gi
1149
+ edu.gi
1133
1150
  gov.gi
1151
+ ltd.gi
1134
1152
  mod.gi
1135
- edu.gi
1136
1153
  org.gi
1137
1154
 
1138
1155
  // gl : https://www.iana.org/domains/root/db/gl.html
@@ -1154,20 +1171,20 @@ ac.gn
1154
1171
  com.gn
1155
1172
  edu.gn
1156
1173
  gov.gn
1157
- org.gn
1158
1174
  net.gn
1175
+ org.gn
1159
1176
 
1160
1177
  // gov : https://www.iana.org/domains/root/db/gov.html
1161
1178
  gov
1162
1179
 
1163
1180
  // gp : http://www.nic.gp/index.php?lang=en
1164
1181
  gp
1182
+ asso.gp
1165
1183
  com.gp
1166
- net.gp
1167
- mobi.gp
1168
1184
  edu.gp
1185
+ mobi.gp
1186
+ net.gp
1169
1187
  org.gp
1170
- asso.gp
1171
1188
 
1172
1189
  // gq : https://www.iana.org/domains/root/db/gq.html
1173
1190
  gq
@@ -1177,9 +1194,9 @@ gq
1177
1194
  gr
1178
1195
  com.gr
1179
1196
  edu.gr
1197
+ gov.gr
1180
1198
  net.gr
1181
1199
  org.gr
1182
- gov.gr
1183
1200
 
1184
1201
  // gs : https://www.iana.org/domains/root/db/gs.html
1185
1202
  gs
@@ -1230,21 +1247,21 @@ gov.hk
1230
1247
  idv.hk
1231
1248
  net.hk
1232
1249
  org.hk
1250
+ 个人.hk
1251
+ 個人.hk
1233
1252
  公司.hk
1234
- 教育.hk
1235
- 敎育.hk
1236
1253
  政府.hk
1237
- 個人.hk
1238
- 个人.hk
1254
+ 敎育.hk
1255
+ 教育.hk
1239
1256
  箇人.hk
1257
+ 組織.hk
1258
+ 組织.hk
1259
+ 網絡.hk
1240
1260
  網络.hk
1241
- 网络.hk
1242
1261
  组織.hk
1243
- 網絡.hk
1244
- 网絡.hk
1245
1262
  组织.hk
1246
- 組織.hk
1247
- 組织.hk
1263
+ 网絡.hk
1264
+ 网络.hk
1248
1265
 
1249
1266
  // hm : https://www.iana.org/domains/root/db/hm.html
1250
1267
  hm
@@ -1253,69 +1270,69 @@ hm
1253
1270
  hn
1254
1271
  com.hn
1255
1272
  edu.hn
1256
- org.hn
1257
- net.hn
1258
- mil.hn
1259
1273
  gob.hn
1274
+ mil.hn
1275
+ net.hn
1276
+ org.hn
1260
1277
 
1261
1278
  // hr : http://www.dns.hr/documents/pdf/HRTLD-regulations.pdf
1262
1279
  hr
1263
- iz.hr
1280
+ com.hr
1264
1281
  from.hr
1282
+ iz.hr
1265
1283
  name.hr
1266
- com.hr
1267
1284
 
1268
1285
  // ht : http://www.nic.ht/info/charte.cfm
1269
1286
  ht
1287
+ adult.ht
1288
+ art.ht
1289
+ asso.ht
1270
1290
  com.ht
1271
- shop.ht
1291
+ coop.ht
1292
+ edu.ht
1272
1293
  firm.ht
1294
+ gouv.ht
1273
1295
  info.ht
1274
- adult.ht
1296
+ med.ht
1275
1297
  net.ht
1276
- pro.ht
1277
1298
  org.ht
1278
- med.ht
1279
- art.ht
1280
- coop.ht
1299
+ perso.ht
1281
1300
  pol.ht
1282
- asso.ht
1283
- edu.ht
1301
+ pro.ht
1284
1302
  rel.ht
1285
- gouv.ht
1286
- perso.ht
1303
+ shop.ht
1287
1304
 
1288
1305
  // hu : http://www.domain.hu/domain/English/sld.html
1289
1306
  // Confirmed by registry <pasztor@iszt.hu> 2008-06-12
1290
1307
  hu
1291
- co.hu
1292
- info.hu
1293
- org.hu
1294
- priv.hu
1295
- sport.hu
1296
- tm.hu
1297
1308
  2000.hu
1298
1309
  agrar.hu
1299
1310
  bolt.hu
1300
1311
  casino.hu
1301
1312
  city.hu
1313
+ co.hu
1302
1314
  erotica.hu
1303
1315
  erotika.hu
1304
1316
  film.hu
1305
1317
  forum.hu
1306
1318
  games.hu
1307
1319
  hotel.hu
1320
+ info.hu
1308
1321
  ingatlan.hu
1309
1322
  jogasz.hu
1310
1323
  konyvelo.hu
1311
1324
  lakas.hu
1312
1325
  media.hu
1313
1326
  news.hu
1327
+ org.hu
1328
+ priv.hu
1314
1329
  reklam.hu
1315
1330
  sex.hu
1316
1331
  shop.hu
1332
+ sport.hu
1317
1333
  suli.hu
1318
1334
  szex.hu
1335
+ tm.hu
1319
1336
  tozsde.hu
1320
1337
  utazas.hu
1321
1338
  video.hu
@@ -1339,9 +1356,9 @@ web.id
1339
1356
  ie
1340
1357
  gov.ie
1341
1358
 
1342
- // il : http://www.isoc.org.il/domains/
1343
- // see also: https://en.isoc.org.il/il-cctld/registration-rules
1344
- // ISOC-IL (operated by .il Registry)
1359
+ // il : http://www.isoc.org.il/domains/
1360
+ // see also: https://en.isoc.org.il/il-cctld/registration-rules
1361
+ // ISOC-IL (operated by .il Registry)
1345
1362
  il
1346
1363
  ac.il
1347
1364
  co.il
@@ -1367,11 +1384,11 @@ org.il
1367
1384
  im
1368
1385
  ac.im
1369
1386
  co.im
1370
- com.im
1371
1387
  ltd.co.im
1388
+ plc.co.im
1389
+ com.im
1372
1390
  net.im
1373
1391
  org.im
1374
- plc.co.im
1375
1392
  tt.im
1376
1393
  tv.im
1377
1394
 
@@ -1443,12 +1460,12 @@ org.io
1443
1460
 
1444
1461
  // iq : http://www.cmc.iq/english/iq/iqregister1.htm
1445
1462
  iq
1446
- gov.iq
1463
+ com.iq
1447
1464
  edu.iq
1465
+ gov.iq
1448
1466
  mil.iq
1449
- com.iq
1450
- org.iq
1451
1467
  net.iq
1468
+ org.iq
1452
1469
 
1453
1470
  // ir : http://www.nic.ir/Terms_and_Conditions_ir,_Appendix_1_Domain_Rules
1454
1471
  // Also see http://www.nic.ir/Internationalized_Domain_Names
@@ -1471,12 +1488,12 @@ sch.ir
1471
1488
  is
1472
1489
 
1473
1490
  // it : https://www.iana.org/domains/root/db/it.html
1491
+ // https://www.nic.it/
1474
1492
  it
1475
- gov.it
1476
1493
  edu.it
1477
- // Reserved geo-names (regions and provinces):
1478
- // https://www.nic.it/sites/default/files/archivio/docs/Regulation_assignation_v7.1.pdf
1479
- // Regions
1494
+ gov.it
1495
+ // Regions (3.3.1)
1496
+ // https://www.nic.it/en/manage-your-it/forms-and-docs -> "Assignment and Management of domain names"
1480
1497
  abr.it
1481
1498
  abruzzo.it
1482
1499
  aosta-valley.it
@@ -1535,6 +1552,7 @@ trentin-sudtirol.it
1535
1552
  trentin-südtirol.it
1536
1553
  trentin-sued-tirol.it
1537
1554
  trentin-suedtirol.it
1555
+ trentino.it
1538
1556
  trentino-a-adige.it
1539
1557
  trentino-aadige.it
1540
1558
  trentino-alto-adige.it
@@ -1547,7 +1565,6 @@ trentino-sudtirol.it
1547
1565
  trentino-südtirol.it
1548
1566
  trentino-sued-tirol.it
1549
1567
  trentino-suedtirol.it
1550
- trentino.it
1551
1568
  trentinoa-adige.it
1552
1569
  trentinoaadige.it
1553
1570
  trentinoalto-adige.it
@@ -1591,7 +1608,7 @@ vao.it
1591
1608
  vda.it
1592
1609
  ven.it
1593
1610
  veneto.it
1594
- // Provinces
1611
+ // Provinces (3.3.2)
1595
1612
  ag.it
1596
1613
  agrigento.it
1597
1614
  al.it
@@ -1619,10 +1636,10 @@ at.it
1619
1636
  av.it
1620
1637
  avellino.it
1621
1638
  ba.it
1639
+ balsan.it
1622
1640
  balsan-sudtirol.it
1623
1641
  balsan-südtirol.it
1624
1642
  balsan-suedtirol.it
1625
- balsan.it
1626
1643
  bari.it
1627
1644
  barletta-trani-andria.it
1628
1645
  barlettatraniandria.it
@@ -1636,21 +1653,21 @@ bl.it
1636
1653
  bn.it
1637
1654
  bo.it
1638
1655
  bologna.it
1639
- bolzano-altoadige.it
1640
1656
  bolzano.it
1657
+ bolzano-altoadige.it
1658
+ bozen.it
1641
1659
  bozen-sudtirol.it
1642
1660
  bozen-südtirol.it
1643
1661
  bozen-suedtirol.it
1644
- bozen.it
1645
1662
  br.it
1646
1663
  brescia.it
1647
1664
  brindisi.it
1648
1665
  bs.it
1649
1666
  bt.it
1667
+ bulsan.it
1650
1668
  bulsan-sudtirol.it
1651
1669
  bulsan-südtirol.it
1652
1670
  bulsan-suedtirol.it
1653
- bulsan.it
1654
1671
  bz.it
1655
1672
  ca.it
1656
1673
  cagliari.it
@@ -1752,9 +1769,9 @@ milano.it
1752
1769
  mn.it
1753
1770
  mo.it
1754
1771
  modena.it
1772
+ monza.it
1755
1773
  monza-brianza.it
1756
1774
  monza-e-della-brianza.it
1757
- monza.it
1758
1775
  monzabrianza.it
1759
1776
  monzaebrianza.it
1760
1777
  monzaedellabrianza.it
@@ -1833,8 +1850,8 @@ sondrio.it
1833
1850
  sp.it
1834
1851
  sr.it
1835
1852
  ss.it
1836
- suedtirol.it
1837
1853
  südtirol.it
1854
+ suedtirol.it
1838
1855
  sv.it
1839
1856
  ta.it
1840
1857
  taranto.it
@@ -1893,23 +1910,30 @@ org.je
1893
1910
  // jm : http://www.com.jm/register.html
1894
1911
  *.jm
1895
1912
 
1896
- // jo : http://www.dns.jo/Registration_policy.aspx
1913
+ // jo : https://www.dns.jo/JoFamily.aspx
1914
+ // Confirmed by registry <DNS@modee.gov.jo> 2024-11-17
1897
1915
  jo
1916
+ agri.jo
1917
+ ai.jo
1898
1918
  com.jo
1899
- org.jo
1900
- net.jo
1901
1919
  edu.jo
1902
- sch.jo
1920
+ eng.jo
1921
+ fm.jo
1903
1922
  gov.jo
1904
1923
  mil.jo
1905
- name.jo
1924
+ net.jo
1925
+ org.jo
1926
+ per.jo
1927
+ phd.jo
1928
+ sch.jo
1929
+ tv.jo
1906
1930
 
1907
1931
  // jobs : https://www.iana.org/domains/root/db/jobs.html
1908
1932
  jobs
1909
1933
 
1910
1934
  // jp : https://www.iana.org/domains/root/db/jp.html
1911
1935
  // http://jprs.co.jp/en/jpdomain.html
1912
- // Submitted by registry <info@jprs.jp>
1936
+ // Confirmed by registry <info@jprs.jp> 2024-11-22
1913
1937
  jp
1914
1938
  // jp organizational type names
1915
1939
  ac.jp
@@ -1922,6 +1946,9 @@ lg.jp
1922
1946
  ne.jp
1923
1947
  or.jp
1924
1948
  // jp prefecture type names
1949
+ // 2024-11-22: JPRS confirmed that regional .jp suffixes no longer accept new registrations.
1950
+ // Once all existing registrations expire (marking full discontinuation), these suffixes
1951
+ // will be removed from the PSL.
1925
1952
  aichi.jp
1926
1953
  akita.jp
1927
1954
  aomori.jp
@@ -1969,26 +1996,14 @@ wakayama.jp
1969
1996
  yamagata.jp
1970
1997
  yamaguchi.jp
1971
1998
  yamanashi.jp
1972
- 栃木.jp
1973
- 愛知.jp
1974
- 愛媛.jp
1999
+ 三重.jp
2000
+ 京都.jp
2001
+ 佐賀.jp
1975
2002
  兵庫.jp
1976
- 熊本.jp
1977
- 茨城.jp
1978
2003
  北海道.jp
1979
2004
  千葉.jp
1980
2005
  和歌山.jp
1981
- 長崎.jp
1982
- 長野.jp
1983
- 新潟.jp
1984
- 青森.jp
1985
- 静岡.jp
1986
- 東京.jp
1987
- 石川.jp
1988
2006
  埼玉.jp
1989
- 三重.jp
1990
- 京都.jp
1991
- 佐賀.jp
1992
2007
  大分.jp
1993
2008
  大阪.jp
1994
2009
  奈良.jp
@@ -1998,20 +2013,32 @@ yamanashi.jp
1998
2013
  山口.jp
1999
2014
  山形.jp
2000
2015
  山梨.jp
2001
- 岩手.jp
2002
2016
  岐阜.jp
2003
2017
  岡山.jp
2018
+ 岩手.jp
2004
2019
  島根.jp
2005
2020
  広島.jp
2006
2021
  徳島.jp
2022
+ 愛媛.jp
2023
+ 愛知.jp
2024
+ 新潟.jp
2025
+ 東京.jp
2026
+ 栃木.jp
2007
2027
  沖縄.jp
2008
2028
  滋賀.jp
2029
+ 熊本.jp
2030
+ 石川.jp
2009
2031
  神奈川.jp
2010
2032
  福井.jp
2011
2033
  福岡.jp
2012
2034
  福島.jp
2013
2035
  秋田.jp
2014
2036
  群馬.jp
2037
+ 茨城.jp
2038
+ 長崎.jp
2039
+ 長野.jp
2040
+ 青森.jp
2041
+ 静岡.jp
2015
2042
  香川.jp
2016
2043
  高知.jp
2017
2044
  鳥取.jp
@@ -3721,56 +3748,56 @@ sc.ke
3721
3748
 
3722
3749
  // kg : http://www.domain.kg/dmn_n.html
3723
3750
  kg
3724
- org.kg
3725
- net.kg
3726
3751
  com.kg
3727
3752
  edu.kg
3728
3753
  gov.kg
3729
3754
  mil.kg
3755
+ net.kg
3756
+ org.kg
3730
3757
 
3731
3758
  // kh : http://www.mptc.gov.kh/dns_registration.htm
3732
3759
  *.kh
3733
3760
 
3734
3761
  // ki : http://www.ki/dns/index.html
3735
3762
  ki
3736
- edu.ki
3737
3763
  biz.ki
3738
- net.ki
3739
- org.ki
3764
+ com.ki
3765
+ edu.ki
3740
3766
  gov.ki
3741
3767
  info.ki
3742
- com.ki
3768
+ net.ki
3769
+ org.ki
3743
3770
 
3744
3771
  // km : https://www.iana.org/domains/root/db/km.html
3745
3772
  // http://www.domaine.km/documents/charte.doc
3746
3773
  km
3747
- org.km
3748
- nom.km
3774
+ ass.km
3775
+ com.km
3776
+ edu.km
3749
3777
  gov.km
3778
+ mil.km
3779
+ nom.km
3780
+ org.km
3750
3781
  prd.km
3751
3782
  tm.km
3752
- edu.km
3753
- mil.km
3754
- ass.km
3755
- com.km
3756
3783
  // These are only mentioned as proposed suggestions at domaine.km, but
3757
3784
  // https://www.iana.org/domains/root/db/km.html says they're available for registration:
3758
- coop.km
3759
3785
  asso.km
3760
- presse.km
3786
+ coop.km
3787
+ gouv.km
3761
3788
  medecin.km
3762
3789
  notaires.km
3763
3790
  pharmaciens.km
3791
+ presse.km
3764
3792
  veterinaire.km
3765
- gouv.km
3766
3793
 
3767
3794
  // kn : https://www.iana.org/domains/root/db/kn.html
3768
3795
  // http://www.dot.kn/domainRules.html
3769
3796
  kn
3770
- net.kn
3771
- org.kn
3772
3797
  edu.kn
3773
3798
  gov.kn
3799
+ net.kn
3800
+ org.kn
3774
3801
 
3775
3802
  // kp : http://www.kcce.kp/en_index.php
3776
3803
  kp
@@ -3837,24 +3864,24 @@ org.ky
3837
3864
  // kz : https://www.iana.org/domains/root/db/kz.html
3838
3865
  // see also: http://www.nic.kz/rules/index.jsp
3839
3866
  kz
3840
- org.kz
3867
+ com.kz
3841
3868
  edu.kz
3842
- net.kz
3843
3869
  gov.kz
3844
3870
  mil.kz
3845
- com.kz
3871
+ net.kz
3872
+ org.kz
3846
3873
 
3847
3874
  // la : https://www.iana.org/domains/root/db/la.html
3848
3875
  // Submitted by registry <gavin.brown@nic.la>
3849
3876
  la
3850
- int.la
3851
- net.la
3852
- info.la
3877
+ com.la
3853
3878
  edu.la
3854
3879
  gov.la
3855
- per.la
3856
- com.la
3880
+ info.la
3881
+ int.la
3882
+ net.la
3857
3883
  org.la
3884
+ per.la
3858
3885
 
3859
3886
  // lb : https://www.iana.org/domains/root/db/lb.html
3860
3887
  // Submitted by registry <randy@psg.com>
@@ -3868,33 +3895,33 @@ org.lb
3868
3895
  // lc : https://www.iana.org/domains/root/db/lc.html
3869
3896
  // see also: http://www.nic.lc/rules.htm
3870
3897
  lc
3871
- com.lc
3872
- net.lc
3873
3898
  co.lc
3874
- org.lc
3899
+ com.lc
3875
3900
  edu.lc
3876
3901
  gov.lc
3902
+ net.lc
3903
+ org.lc
3877
3904
 
3878
3905
  // li : https://www.iana.org/domains/root/db/li.html
3879
3906
  li
3880
3907
 
3881
3908
  // lk : https://www.nic.lk/index.php/domain-registration/lk-domain-naming-structure
3882
3909
  lk
3883
- gov.lk
3884
- sch.lk
3885
- net.lk
3886
- int.lk
3910
+ ac.lk
3911
+ assn.lk
3887
3912
  com.lk
3888
- org.lk
3889
3913
  edu.lk
3914
+ gov.lk
3915
+ grp.lk
3916
+ hotel.lk
3917
+ int.lk
3918
+ ltd.lk
3919
+ net.lk
3890
3920
  ngo.lk
3921
+ org.lk
3922
+ sch.lk
3891
3923
  soc.lk
3892
3924
  web.lk
3893
- ltd.lk
3894
- assn.lk
3895
- grp.lk
3896
- hotel.lk
3897
- ac.lk
3898
3925
 
3899
3926
  // lr : http://psg.com/dns/lr/lr.txt
3900
3927
  // Submitted by registry <randy@psg.com>
@@ -3902,8 +3929,8 @@ lr
3902
3929
  com.lr
3903
3930
  edu.lr
3904
3931
  gov.lr
3905
- org.lr
3906
3932
  net.lr
3933
+ org.lr
3907
3934
 
3908
3935
  // ls : http://www.nic.ls/
3909
3936
  // Confirmed by registry <lsadmin@nic.ls>
@@ -3928,68 +3955,67 @@ lu
3928
3955
 
3929
3956
  // lv : http://www.nic.lv/DNS/En/generic.php
3930
3957
  lv
3958
+ asn.lv
3931
3959
  com.lv
3960
+ conf.lv
3932
3961
  edu.lv
3933
3962
  gov.lv
3934
- org.lv
3935
- mil.lv
3936
3963
  id.lv
3964
+ mil.lv
3937
3965
  net.lv
3938
- asn.lv
3939
- conf.lv
3966
+ org.lv
3940
3967
 
3941
3968
  // ly : http://www.nic.ly/regulations.php
3942
3969
  ly
3943
3970
  com.ly
3944
- net.ly
3945
- gov.ly
3946
- plc.ly
3947
3971
  edu.ly
3948
- sch.ly
3972
+ gov.ly
3973
+ id.ly
3949
3974
  med.ly
3975
+ net.ly
3950
3976
  org.ly
3951
- id.ly
3977
+ plc.ly
3978
+ sch.ly
3952
3979
 
3953
3980
  // ma : https://www.iana.org/domains/root/db/ma.html
3954
3981
  // http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf
3955
3982
  ma
3983
+ ac.ma
3956
3984
  co.ma
3957
- net.ma
3958
3985
  gov.ma
3986
+ net.ma
3959
3987
  org.ma
3960
- ac.ma
3961
3988
  press.ma
3962
3989
 
3963
3990
  // mc : http://www.nic.mc/
3964
3991
  mc
3965
- tm.mc
3966
3992
  asso.mc
3993
+ tm.mc
3967
3994
 
3968
3995
  // md : https://www.iana.org/domains/root/db/md.html
3969
3996
  md
3970
3997
 
3971
3998
  // me : https://www.iana.org/domains/root/db/me.html
3972
3999
  me
4000
+ ac.me
3973
4001
  co.me
3974
- net.me
3975
- org.me
3976
4002
  edu.me
3977
- ac.me
3978
4003
  gov.me
3979
4004
  its.me
4005
+ net.me
4006
+ org.me
3980
4007
  priv.me
3981
4008
 
3982
- // mg : http://nic.mg/nicmg/?page_id=39
4009
+ // mg : https://nic.mg
3983
4010
  mg
3984
- org.mg
3985
- nom.mg
3986
- gov.mg
3987
- prd.mg
3988
- tm.mg
4011
+ co.mg
4012
+ com.mg
3989
4013
  edu.mg
4014
+ gov.mg
3990
4015
  mil.mg
3991
- com.mg
3992
- co.mg
4016
+ nom.mg
4017
+ org.mg
4018
+ prd.mg
3993
4019
 
3994
4020
  // mh : https://www.iana.org/domains/root/db/mh.html
3995
4021
  mh
@@ -4001,12 +4027,12 @@ mil
4001
4027
  // see also: http://dns.marnet.net.mk/postapka.php
4002
4028
  mk
4003
4029
  com.mk
4004
- org.mk
4005
- net.mk
4006
4030
  edu.mk
4007
4031
  gov.mk
4008
4032
  inf.mk
4009
4033
  name.mk
4034
+ net.mk
4035
+ org.mk
4010
4036
 
4011
4037
  // ml : http://www.gobin.info/domainname/ml-template.doc
4012
4038
  // see also: https://www.iana.org/domains/root/db/ml.html
@@ -4024,17 +4050,17 @@ presse.ml
4024
4050
 
4025
4051
  // mn : https://www.iana.org/domains/root/db/mn.html
4026
4052
  mn
4027
- gov.mn
4028
4053
  edu.mn
4054
+ gov.mn
4029
4055
  org.mn
4030
4056
 
4031
4057
  // mo : http://www.monic.net.mo/
4032
4058
  mo
4033
4059
  com.mo
4034
- net.mo
4035
- org.mo
4036
4060
  edu.mo
4037
4061
  gov.mo
4062
+ net.mo
4063
+ org.mo
4038
4064
 
4039
4065
  // mobi : https://www.iana.org/domains/root/db/mobi.html
4040
4066
  mobi
@@ -4068,13 +4094,13 @@ org.mt
4068
4094
 
4069
4095
  // mu : https://www.iana.org/domains/root/db/mu.html
4070
4096
  mu
4071
- com.mu
4072
- net.mu
4073
- org.mu
4074
- gov.mu
4075
4097
  ac.mu
4076
4098
  co.mu
4099
+ com.mu
4100
+ gov.mu
4101
+ net.mu
4077
4102
  or.mu
4103
+ org.mu
4078
4104
 
4079
4105
  // museum : https://welcome.museum/wp-content/uploads/2018/05/20180525-Registration-Policy-MUSEUM-EN_VF-2.pdf https://welcome.museum/buy-your-dot-museum-2/
4080
4106
  museum
@@ -4114,10 +4140,10 @@ org.mw
4114
4140
  // Submitted by registry <farias@nic.mx>
4115
4141
  mx
4116
4142
  com.mx
4117
- org.mx
4118
- gob.mx
4119
4143
  edu.mx
4144
+ gob.mx
4120
4145
  net.mx
4146
+ org.mx
4121
4147
 
4122
4148
  // my : http://www.mynic.my/
4123
4149
  // Available strings: https://mynic.my/resources/domains/buying-a-domain/
@@ -4152,7 +4178,8 @@ gov.na
4152
4178
  net.na
4153
4179
  org.na
4154
4180
 
4155
- // name : has 2nd-level tlds, but there's no list of them
4181
+ // name : http://www.nic.name/
4182
+ // Regarding 2LDs: https://github.com/publicsuffix/list/issues/2306
4156
4183
  name
4157
4184
 
4158
4185
  // nc : http://www.cctld.nc/
@@ -4168,16 +4195,16 @@ net
4168
4195
 
4169
4196
  // nf : https://www.iana.org/domains/root/db/nf.html
4170
4197
  nf
4171
- com.nf
4172
- net.nf
4173
- per.nf
4174
- rec.nf
4175
- web.nf
4176
4198
  arts.nf
4199
+ com.nf
4177
4200
  firm.nf
4178
4201
  info.nf
4202
+ net.nf
4179
4203
  other.nf
4204
+ per.nf
4205
+ rec.nf
4180
4206
  store.nf
4207
+ web.nf
4181
4208
 
4182
4209
  // ng : http://www.nira.org.ng/index.php/join-us/register-ng-domain/189-nira-slds
4183
4210
  ng
@@ -4210,8 +4237,7 @@ org.ni
4210
4237
  web.ni
4211
4238
 
4212
4239
  // nl : https://www.iana.org/domains/root/db/nl.html
4213
- // https://www.sidn.nl/
4214
- // ccTLD for the Netherlands
4240
+ // https://www.sidn.nl/
4215
4241
  nl
4216
4242
 
4217
4243
  // no : https://www.norid.no/en/om-domenenavn/regelverk-for-no/
@@ -4222,18 +4248,18 @@ nl
4222
4248
  no
4223
4249
  // Norid category second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-c/
4224
4250
  fhs.no
4225
- vgs.no
4226
- fylkesbibl.no
4227
4251
  folkebibl.no
4228
- museum.no
4252
+ fylkesbibl.no
4229
4253
  idrett.no
4254
+ museum.no
4230
4255
  priv.no
4256
+ vgs.no
4231
4257
  // Norid category second-level domains managed by parties other than Norid : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-d/
4232
- mil.no
4233
- stat.no
4234
4258
  dep.no
4235
- kommune.no
4236
4259
  herad.no
4260
+ kommune.no
4261
+ mil.no
4262
+ stat.no
4237
4263
  // Norid geographical second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-b/
4238
4264
  // counties
4239
4265
  aa.no
@@ -4285,10 +4311,10 @@ akrehamn.no
4285
4311
  algard.no
4286
4312
  ålgård.no
4287
4313
  arna.no
4288
- brumunddal.no
4289
- bryne.no
4290
4314
  bronnoysund.no
4291
4315
  brønnøysund.no
4316
+ brumunddal.no
4317
+ bryne.no
4292
4318
  drobak.no
4293
4319
  drøbak.no
4294
4320
  egersund.no
@@ -4332,27 +4358,32 @@ tananger.no
4332
4358
  tranby.no
4333
4359
  vossevangen.no
4334
4360
  // communities
4361
+ aarborte.no
4362
+ aejrie.no
4335
4363
  afjord.no
4336
4364
  åfjord.no
4337
4365
  agdenes.no
4366
+ nes.akershus.no
4367
+ aknoluokta.no
4368
+ ákŋoluokta.no
4338
4369
  al.no
4339
4370
  ål.no
4371
+ alaheadju.no
4372
+ álaheadju.no
4340
4373
  alesund.no
4341
4374
  ålesund.no
4342
4375
  alstahaug.no
4343
4376
  alta.no
4344
4377
  áltá.no
4345
- alaheadju.no
4346
- álaheadju.no
4347
4378
  alvdal.no
4348
4379
  amli.no
4349
4380
  åmli.no
4350
4381
  amot.no
4351
4382
  åmot.no
4383
+ andasuolo.no
4352
4384
  andebu.no
4353
4385
  andoy.no
4354
4386
  andøy.no
4355
- andasuolo.no
4356
4387
  ardal.no
4357
4388
  årdal.no
4358
4389
  aremark.no
@@ -4362,9 +4393,9 @@ aseral.no
4362
4393
  åseral.no
4363
4394
  asker.no
4364
4395
  askim.no
4365
- askvoll.no
4366
4396
  askoy.no
4367
4397
  askøy.no
4398
+ askvoll.no
4368
4399
  asnes.no
4369
4400
  åsnes.no
4370
4401
  audnedaln.no
@@ -4377,27 +4408,37 @@ austevoll.no
4377
4408
  austrheim.no
4378
4409
  averoy.no
4379
4410
  averøy.no
4380
- balestrand.no
4381
- ballangen.no
4411
+ badaddja.no
4412
+ bådåddjå.no
4413
+ bærum.no
4414
+ bahcavuotna.no
4415
+ báhcavuotna.no
4416
+ bahccavuotna.no
4417
+ báhccavuotna.no
4418
+ baidar.no
4419
+ báidár.no
4420
+ bajddar.no
4421
+ bájddar.no
4382
4422
  balat.no
4383
4423
  bálát.no
4424
+ balestrand.no
4425
+ ballangen.no
4384
4426
  balsfjord.no
4385
- bahccavuotna.no
4386
- báhccavuotna.no
4387
4427
  bamble.no
4388
4428
  bardu.no
4429
+ barum.no
4430
+ batsfjord.no
4431
+ båtsfjord.no
4432
+ bearalvahki.no
4433
+ bearalváhki.no
4389
4434
  beardu.no
4390
4435
  beiarn.no
4391
- bajddar.no
4392
- bájddar.no
4393
- baidar.no
4394
- báidár.no
4395
4436
  berg.no
4396
4437
  bergen.no
4397
4438
  berlevag.no
4398
4439
  berlevåg.no
4399
- bearalvahki.no
4400
- bearalváhki.no
4440
+ bievat.no
4441
+ bievát.no
4401
4442
  bindal.no
4402
4443
  birkenes.no
4403
4444
  bjarkoy.no
@@ -4406,36 +4447,32 @@ bjerkreim.no
4406
4447
  bjugn.no
4407
4448
  bodo.no
4408
4449
  bodø.no
4409
- badaddja.no
4410
- bådåddjå.no
4411
- budejju.no
4412
4450
  bokn.no
4451
+ bomlo.no
4452
+ bømlo.no
4413
4453
  bremanger.no
4414
4454
  bronnoy.no
4415
4455
  brønnøy.no
4456
+ budejju.no
4457
+ nes.buskerud.no
4416
4458
  bygland.no
4417
4459
  bykle.no
4418
- barum.no
4419
- bærum.no
4420
- bo.telemark.no
4421
- bø.telemark.no
4422
- bo.nordland.no
4423
- bø.nordland.no
4424
- bievat.no
4425
- bievát.no
4426
- bomlo.no
4427
- bømlo.no
4428
- batsfjord.no
4429
- båtsfjord.no
4430
- bahcavuotna.no
4431
- báhcavuotna.no
4460
+ cahcesuolo.no
4461
+ čáhcesuolo.no
4462
+ davvenjarga.no
4463
+ davvenjárga.no
4464
+ davvesiida.no
4465
+ deatnu.no
4466
+ dielddanuorri.no
4467
+ divtasvuodna.no
4468
+ divttasvuotna.no
4469
+ donna.no
4470
+ dønna.no
4432
4471
  dovre.no
4433
4472
  drammen.no
4434
4473
  drangedal.no
4435
4474
  dyroy.no
4436
4475
  dyrøy.no
4437
- donna.no
4438
- dønna.no
4439
4476
  eid.no
4440
4477
  eidfjord.no
4441
4478
  eidsberg.no
@@ -4447,14 +4484,12 @@ enebakk.no
4447
4484
  engerdal.no
4448
4485
  etne.no
4449
4486
  etnedal.no
4450
- evenes.no
4451
4487
  evenassi.no
4452
4488
  evenášši.no
4489
+ evenes.no
4453
4490
  evje-og-hornnes.no
4454
4491
  farsund.no
4455
4492
  fauske.no
4456
- fuossko.no
4457
- fuoisku.no
4458
4493
  fedje.no
4459
4494
  fet.no
4460
4495
  finnoy.no
@@ -4462,33 +4497,40 @@ finnøy.no
4462
4497
  fitjar.no
4463
4498
  fjaler.no
4464
4499
  fjell.no
4500
+ fla.no
4501
+ flå.no
4465
4502
  flakstad.no
4466
4503
  flatanger.no
4467
4504
  flekkefjord.no
4468
4505
  flesberg.no
4469
4506
  flora.no
4470
- fla.no
4471
- flå.no
4472
4507
  folldal.no
4508
+ forde.no
4509
+ førde.no
4473
4510
  forsand.no
4474
4511
  fosnes.no
4512
+ fræna.no
4513
+ frana.no
4475
4514
  frei.no
4476
4515
  frogn.no
4477
4516
  froland.no
4478
4517
  frosta.no
4479
- frana.no
4480
- fræna.no
4481
4518
  froya.no
4482
4519
  frøya.no
4520
+ fuoisku.no
4521
+ fuossko.no
4483
4522
  fusa.no
4484
4523
  fyresdal.no
4485
- forde.no
4486
- førde.no
4524
+ gaivuotna.no
4525
+ gáivuotna.no
4526
+ galsa.no
4527
+ gálsá.no
4487
4528
  gamvik.no
4488
4529
  gangaviika.no
4489
4530
  gáŋgaviika.no
4490
4531
  gaular.no
4491
4532
  gausdal.no
4533
+ giehtavuoatna.no
4492
4534
  gildeskal.no
4493
4535
  gildeskål.no
4494
4536
  giske.no
@@ -4506,38 +4548,37 @@ granvin.no
4506
4548
  gratangen.no
4507
4549
  grimstad.no
4508
4550
  grong.no
4509
- kraanghke.no
4510
- kråanghke.no
4511
4551
  grue.no
4512
4552
  gulen.no
4553
+ guovdageaidnu.no
4554
+ ha.no
4555
+ hå.no
4556
+ habmer.no
4557
+ hábmer.no
4513
4558
  hadsel.no
4559
+ hægebostad.no
4560
+ hagebostad.no
4514
4561
  halden.no
4515
4562
  halsa.no
4516
4563
  hamar.no
4517
4564
  hamaroy.no
4518
- habmer.no
4519
- hábmer.no
4520
- hapmir.no
4521
- hápmir.no
4522
- hammerfest.no
4523
4565
  hammarfeasta.no
4524
4566
  hámmárfeasta.no
4567
+ hammerfest.no
4568
+ hapmir.no
4569
+ hápmir.no
4525
4570
  haram.no
4526
4571
  hareid.no
4527
4572
  harstad.no
4528
4573
  hasvik.no
4529
- aknoluokta.no
4530
- ákŋoluokta.no
4531
4574
  hattfjelldal.no
4532
- aarborte.no
4533
4575
  haugesund.no
4576
+ os.hedmark.no
4577
+ valer.hedmark.no
4578
+ våler.hedmark.no
4534
4579
  hemne.no
4535
4580
  hemnes.no
4536
4581
  hemsedal.no
4537
- heroy.more-og-romsdal.no
4538
- herøy.møre-og-romsdal.no
4539
- heroy.nordland.no
4540
- herøy.nordland.no
4541
4582
  hitra.no
4542
4583
  hjartdal.no
4543
4584
  hjelmeland.no
@@ -4549,96 +4590,95 @@ hole.no
4549
4590
  holmestrand.no
4550
4591
  holtalen.no
4551
4592
  holtålen.no
4593
+ os.hordaland.no
4552
4594
  hornindal.no
4553
4595
  horten.no
4554
- hurdal.no
4555
- hurum.no
4556
- hvaler.no
4557
- hyllestad.no
4558
- hagebostad.no
4559
- hægebostad.no
4560
4596
  hoyanger.no
4561
4597
  høyanger.no
4562
4598
  hoylandet.no
4563
4599
  høylandet.no
4564
- ha.no
4565
- hå.no
4600
+ hurdal.no
4601
+ hurum.no
4602
+ hvaler.no
4603
+ hyllestad.no
4566
4604
  ibestad.no
4567
4605
  inderoy.no
4568
4606
  inderøy.no
4569
4607
  iveland.no
4608
+ ivgu.no
4570
4609
  jevnaker.no
4571
- jondal.no
4572
4610
  jolster.no
4573
4611
  jølster.no
4574
- karasjok.no
4612
+ jondal.no
4613
+ kafjord.no
4614
+ kåfjord.no
4575
4615
  karasjohka.no
4576
4616
  kárášjohka.no
4617
+ karasjok.no
4577
4618
  karlsoy.no
4578
- galsa.no
4579
- gálsá.no
4580
4619
  karmoy.no
4581
4620
  karmøy.no
4582
4621
  kautokeino.no
4583
- guovdageaidnu.no
4584
- klepp.no
4585
4622
  klabu.no
4586
4623
  klæbu.no
4624
+ klepp.no
4587
4625
  kongsberg.no
4588
4626
  kongsvinger.no
4627
+ kraanghke.no
4628
+ kråanghke.no
4589
4629
  kragero.no
4590
4630
  kragerø.no
4591
4631
  kristiansand.no
4592
4632
  kristiansund.no
4593
4633
  krodsherad.no
4594
4634
  krødsherad.no
4635
+ kvæfjord.no
4636
+ kvænangen.no
4637
+ kvafjord.no
4595
4638
  kvalsund.no
4596
- rahkkeravju.no
4597
- ráhkkerávju.no
4598
4639
  kvam.no
4640
+ kvanangen.no
4599
4641
  kvinesdal.no
4600
4642
  kvinnherad.no
4601
4643
  kviteseid.no
4602
4644
  kvitsoy.no
4603
4645
  kvitsøy.no
4604
- kvafjord.no
4605
- kvæfjord.no
4606
- giehtavuoatna.no
4607
- kvanangen.no
4608
- kvænangen.no
4609
- navuotna.no
4610
- návuotna.no
4611
- kafjord.no
4612
- kåfjord.no
4613
- gaivuotna.no
4614
- gáivuotna.no
4646
+ laakesvuemie.no
4647
+ lærdal.no
4648
+ lahppi.no
4649
+ láhppi.no
4650
+ lardal.no
4615
4651
  larvik.no
4616
- lavangen.no
4617
4652
  lavagis.no
4618
- loabat.no
4619
- loabát.no
4653
+ lavangen.no
4654
+ leangaviika.no
4655
+ leaŋgaviika.no
4620
4656
  lebesby.no
4621
- davvesiida.no
4622
4657
  leikanger.no
4623
4658
  leirfjord.no
4624
4659
  leka.no
4625
4660
  leksvik.no
4626
4661
  lenvik.no
4627
- leangaviika.no
4628
- leaŋgaviika.no
4662
+ lerdal.no
4629
4663
  lesja.no
4630
4664
  levanger.no
4631
4665
  lier.no
4632
4666
  lierne.no
4633
4667
  lillehammer.no
4634
4668
  lillesand.no
4635
- lindesnes.no
4636
4669
  lindas.no
4637
4670
  lindås.no
4671
+ lindesnes.no
4672
+ loabat.no
4673
+ loabát.no
4674
+ lodingen.no
4675
+ lødingen.no
4638
4676
  lom.no
4639
4677
  loppa.no
4640
- lahppi.no
4641
- láhppi.no
4678
+ lorenskog.no
4679
+ lørenskog.no
4680
+ loten.no
4681
+ løten.no
4642
4682
  lund.no
4643
4683
  lunner.no
4644
4684
  luroy.no
@@ -4646,25 +4686,19 @@ lurøy.no
4646
4686
  luster.no
4647
4687
  lyngdal.no
4648
4688
  lyngen.no
4649
- ivgu.no
4650
- lardal.no
4651
- lerdal.no
4652
- lærdal.no
4653
- lodingen.no
4654
- lødingen.no
4655
- lorenskog.no
4656
- lørenskog.no
4657
- loten.no
4658
- løten.no
4689
+ malatvuopmi.no
4690
+ málatvuopmi.no
4691
+ malselv.no
4692
+ målselv.no
4659
4693
  malvik.no
4660
- masoy.no
4661
- måsøy.no
4662
- muosat.no
4663
- muosát.no
4664
4694
  mandal.no
4665
4695
  marker.no
4666
4696
  marnardal.no
4667
4697
  masfjorden.no
4698
+ masoy.no
4699
+ måsøy.no
4700
+ matta-varjjat.no
4701
+ mátta-várjjat.no
4668
4702
  meland.no
4669
4703
  meldal.no
4670
4704
  melhus.no
@@ -4672,39 +4706,39 @@ meloy.no
4672
4706
  meløy.no
4673
4707
  meraker.no
4674
4708
  meråker.no
4675
- moareke.no
4676
- moåreke.no
4677
4709
  midsund.no
4678
4710
  midtre-gauldal.no
4711
+ moareke.no
4712
+ moåreke.no
4679
4713
  modalen.no
4680
4714
  modum.no
4681
4715
  molde.no
4716
+ heroy.more-og-romsdal.no
4717
+ sande.more-og-romsdal.no
4718
+ herøy.møre-og-romsdal.no
4719
+ sande.møre-og-romsdal.no
4682
4720
  moskenes.no
4683
4721
  moss.no
4684
4722
  mosvik.no
4685
- malselv.no
4686
- målselv.no
4687
- malatvuopmi.no
4688
- málatvuopmi.no
4723
+ muosat.no
4724
+ muosát.no
4725
+ naamesjevuemie.no
4726
+ nååmesjevuemie.no
4727
+ nærøy.no
4689
4728
  namdalseid.no
4690
- aejrie.no
4691
4729
  namsos.no
4692
4730
  namsskogan.no
4693
- naamesjevuemie.no
4694
- nååmesjevuemie.no
4695
- laakesvuemie.no
4696
4731
  nannestad.no
4697
- narvik.no
4732
+ naroy.no
4698
4733
  narviika.no
4734
+ narvik.no
4699
4735
  naustdal.no
4736
+ navuotna.no
4737
+ návuotna.no
4700
4738
  nedre-eiker.no
4701
- nes.akershus.no
4702
- nes.buskerud.no
4703
4739
  nesna.no
4704
4740
  nesodden.no
4705
4741
  nesseby.no
4706
- unjarga.no
4707
- unjárga.no
4708
4742
  nesset.no
4709
4743
  nissedal.no
4710
4744
  nittedal.no
@@ -4713,21 +4747,20 @@ nord-fron.no
4713
4747
  nord-odal.no
4714
4748
  norddal.no
4715
4749
  nordkapp.no
4716
- davvenjarga.no
4717
- davvenjárga.no
4750
+ bo.nordland.no
4751
+ bø.nordland.no
4752
+ heroy.nordland.no
4753
+ herøy.nordland.no
4718
4754
  nordre-land.no
4719
4755
  nordreisa.no
4720
- raisa.no
4721
- ráisa.no
4722
4756
  nore-og-uvdal.no
4723
4757
  notodden.no
4724
- naroy.no
4725
- nærøy.no
4726
4758
  notteroy.no
4727
4759
  nøtterøy.no
4728
4760
  odda.no
4729
4761
  oksnes.no
4730
4762
  øksnes.no
4763
+ omasvuotna.no
4731
4764
  oppdal.no
4732
4765
  oppegard.no
4733
4766
  oppegård.no
@@ -4738,11 +4771,11 @@ orskog.no
4738
4771
  ørskog.no
4739
4772
  orsta.no
4740
4773
  ørsta.no
4741
- os.hedmark.no
4742
- os.hordaland.no
4743
4774
  osen.no
4744
4775
  osteroy.no
4745
4776
  osterøy.no
4777
+ valer.ostfold.no
4778
+ våler.østfold.no
4746
4779
  ostre-toten.no
4747
4780
  østre-toten.no
4748
4781
  overhalla.no
@@ -4758,11 +4791,18 @@ porsanger.no
4758
4791
  porsangu.no
4759
4792
  porsáŋgu.no
4760
4793
  porsgrunn.no
4794
+ rade.no
4795
+ råde.no
4761
4796
  radoy.no
4762
4797
  radøy.no
4798
+ rælingen.no
4799
+ rahkkeravju.no
4800
+ ráhkkerávju.no
4801
+ raisa.no
4802
+ ráisa.no
4763
4803
  rakkestad.no
4804
+ ralingen.no
4764
4805
  rana.no
4765
- ruovat.no
4766
4806
  randaberg.no
4767
4807
  rauma.no
4768
4808
  rendalen.no
@@ -4773,16 +4813,14 @@ rindal.no
4773
4813
  ringebu.no
4774
4814
  ringerike.no
4775
4815
  ringsaker.no
4776
- rissa.no
4777
4816
  risor.no
4778
4817
  risør.no
4818
+ rissa.no
4779
4819
  roan.no
4780
- rollag.no
4781
- rygge.no
4782
- ralingen.no
4783
- rælingen.no
4784
4820
  rodoy.no
4785
4821
  rødøy.no
4822
+ rollag.no
4823
+ romsa.no
4786
4824
  romskog.no
4787
4825
  rømskog.no
4788
4826
  roros.no
@@ -4793,18 +4831,14 @@ royken.no
4793
4831
  røyken.no
4794
4832
  royrvik.no
4795
4833
  røyrvik.no
4796
- rade.no
4797
- råde.no
4834
+ ruovat.no
4835
+ rygge.no
4798
4836
  salangen.no
4799
- siellak.no
4800
- saltdal.no
4801
4837
  salat.no
4802
- sálát.no
4803
4838
  sálat.no
4839
+ sálát.no
4840
+ saltdal.no
4804
4841
  samnanger.no
4805
- sande.more-og-romsdal.no
4806
- sande.møre-og-romsdal.no
4807
- sande.vestfold.no
4808
4842
  sandefjord.no
4809
4843
  sandnes.no
4810
4844
  sandoy.no
@@ -4816,39 +4850,60 @@ sel.no
4816
4850
  selbu.no
4817
4851
  selje.no
4818
4852
  seljord.no
4853
+ siellak.no
4819
4854
  sigdal.no
4820
4855
  siljan.no
4821
4856
  sirdal.no
4857
+ skanit.no
4858
+ skánit.no
4859
+ skanland.no
4860
+ skånland.no
4822
4861
  skaun.no
4823
4862
  skedsmo.no
4824
4863
  ski.no
4825
4864
  skien.no
4826
- skiptvet.no
4827
- skjervoy.no
4828
- skjervøy.no
4829
4865
  skierva.no
4830
4866
  skiervá.no
4867
+ skiptvet.no
4831
4868
  skjak.no
4832
4869
  skjåk.no
4870
+ skjervoy.no
4871
+ skjervøy.no
4833
4872
  skodje.no
4834
- skanland.no
4835
- skånland.no
4836
- skanit.no
4837
- skánit.no
4838
4873
  smola.no
4839
4874
  smøla.no
4840
- snillfjord.no
4875
+ snaase.no
4876
+ snåase.no
4841
4877
  snasa.no
4842
4878
  snåsa.no
4879
+ snillfjord.no
4843
4880
  snoasa.no
4844
- snaase.no
4845
- snåase.no
4846
4881
  sogndal.no
4882
+ sogne.no
4883
+ søgne.no
4847
4884
  sokndal.no
4848
4885
  sola.no
4849
4886
  solund.no
4887
+ somna.no
4888
+ sømna.no
4889
+ sondre-land.no
4890
+ søndre-land.no
4850
4891
  songdalen.no
4892
+ sor-aurdal.no
4893
+ sør-aurdal.no
4894
+ sor-fron.no
4895
+ sør-fron.no
4896
+ sor-odal.no
4897
+ sør-odal.no
4898
+ sor-varanger.no
4899
+ sør-varanger.no
4900
+ sorfold.no
4901
+ sørfold.no
4902
+ sorreisa.no
4903
+ sørreisa.no
4851
4904
  sortland.no
4905
+ sorum.no
4906
+ sørum.no
4852
4907
  spydeberg.no
4853
4908
  stange.no
4854
4909
  stavanger.no
@@ -4861,7 +4916,6 @@ stor-elvdal.no
4861
4916
  stord.no
4862
4917
  stordal.no
4863
4918
  storfjord.no
4864
- omasvuotna.no
4865
4919
  strand.no
4866
4920
  stranda.no
4867
4921
  stryn.no
@@ -4873,72 +4927,55 @@ surnadal.no
4873
4927
  sveio.no
4874
4928
  svelvik.no
4875
4929
  sykkylven.no
4876
- sogne.no
4877
- søgne.no
4878
- somna.no
4879
- sømna.no
4880
- sondre-land.no
4881
- søndre-land.no
4882
- sor-aurdal.no
4883
- sør-aurdal.no
4884
- sor-fron.no
4885
- sør-fron.no
4886
- sor-odal.no
4887
- sør-odal.no
4888
- sor-varanger.no
4889
- sør-varanger.no
4890
- matta-varjjat.no
4891
- mátta-várjjat.no
4892
- sorfold.no
4893
- sørfold.no
4894
- sorreisa.no
4895
- sørreisa.no
4896
- sorum.no
4897
- sørum.no
4898
4930
  tana.no
4899
- deatnu.no
4931
+ bo.telemark.no
4932
+ bø.telemark.no
4900
4933
  time.no
4901
4934
  tingvoll.no
4902
4935
  tinn.no
4903
4936
  tjeldsund.no
4904
- dielddanuorri.no
4905
4937
  tjome.no
4906
4938
  tjøme.no
4907
4939
  tokke.no
4908
4940
  tolga.no
4941
+ tonsberg.no
4942
+ tønsberg.no
4909
4943
  torsken.no
4944
+ træna.no
4945
+ trana.no
4910
4946
  tranoy.no
4911
4947
  tranøy.no
4948
+ troandin.no
4949
+ trogstad.no
4950
+ trøgstad.no
4951
+ tromsa.no
4912
4952
  tromso.no
4913
4953
  tromsø.no
4914
- tromsa.no
4915
- romsa.no
4916
4954
  trondheim.no
4917
- troandin.no
4918
4955
  trysil.no
4919
- trana.no
4920
- træna.no
4921
- trogstad.no
4922
- trøgstad.no
4923
4956
  tvedestrand.no
4924
4957
  tydal.no
4925
4958
  tynset.no
4926
4959
  tysfjord.no
4927
- divtasvuodna.no
4928
- divttasvuotna.no
4929
4960
  tysnes.no
4930
- tysvar.no
4931
4961
  tysvær.no
4932
- tonsberg.no
4933
- tønsberg.no
4962
+ tysvar.no
4934
4963
  ullensaker.no
4935
4964
  ullensvang.no
4936
4965
  ulvik.no
4966
+ unjarga.no
4967
+ unjárga.no
4937
4968
  utsira.no
4969
+ vaapste.no
4938
4970
  vadso.no
4939
4971
  vadsø.no
4940
- cahcesuolo.no
4941
- čáhcesuolo.no
4972
+ værøy.no
4973
+ vaga.no
4974
+ vågå.no
4975
+ vagan.no
4976
+ vågan.no
4977
+ vagsoy.no
4978
+ vågsøy.no
4942
4979
  vaksdal.no
4943
4980
  valle.no
4944
4981
  vang.no
@@ -4947,8 +4984,8 @@ vardo.no
4947
4984
  vardø.no
4948
4985
  varggat.no
4949
4986
  várggát.no
4987
+ varoy.no
4950
4988
  vefsn.no
4951
- vaapste.no
4952
4989
  vega.no
4953
4990
  vegarshei.no
4954
4991
  vegårshei.no
@@ -4956,30 +4993,19 @@ vennesla.no
4956
4993
  verdal.no
4957
4994
  verran.no
4958
4995
  vestby.no
4996
+ sande.vestfold.no
4959
4997
  vestnes.no
4960
4998
  vestre-slidre.no
4961
4999
  vestre-toten.no
4962
5000
  vestvagoy.no
4963
- vestvågøy.no
4964
- vevelstad.no
4965
- vik.no
4966
- vikna.no
4967
- vindafjord.no
4968
- volda.no
4969
- voss.no
4970
- varoy.no
4971
- værøy.no
4972
- vagan.no
4973
- vågan.no
4974
- voagat.no
4975
- vagsoy.no
4976
- vågsøy.no
4977
- vaga.no
4978
- vågå.no
4979
- valer.ostfold.no
4980
- våler.østfold.no
4981
- valer.hedmark.no
4982
- våler.hedmark.no
5001
+ vestvågøy.no
5002
+ vevelstad.no
5003
+ vik.no
5004
+ vikna.no
5005
+ vindafjord.no
5006
+ voagat.no
5007
+ volda.no
5008
+ voss.no
4983
5009
 
4984
5010
  // np : http://www.mos.com.np/register.html
4985
5011
  *.np
@@ -4988,12 +5014,12 @@ våler.hedmark.no
4988
5014
  // Submitted by registry <technician@cenpac.net.nr>
4989
5015
  nr
4990
5016
  biz.nr
4991
- info.nr
4992
- gov.nr
5017
+ com.nr
4993
5018
  edu.nr
4994
- org.nr
5019
+ gov.nr
5020
+ info.nr
4995
5021
  net.nr
4996
- com.nr
5022
+ org.nr
4997
5023
 
4998
5024
  // nu : https://www.iana.org/domains/root/db/nu.html
4999
5025
  nu
@@ -5011,8 +5037,8 @@ health.nz
5011
5037
  iwi.nz
5012
5038
  kiwi.nz
5013
5039
  maori.nz
5014
- mil.nz
5015
5040
  māori.nz
5041
+ mil.nz
5016
5042
  net.nz
5017
5043
  org.nz
5018
5044
  parliament.nz
@@ -5040,33 +5066,33 @@ org
5040
5066
  // Some additional second level "domains" resolve directly as hostnames, such as
5041
5067
  // pannet.pa, so we add a rule for "pa".
5042
5068
  pa
5069
+ abo.pa
5043
5070
  ac.pa
5044
- gob.pa
5045
5071
  com.pa
5046
- org.pa
5047
- sld.pa
5048
5072
  edu.pa
5049
- net.pa
5073
+ gob.pa
5050
5074
  ing.pa
5051
- abo.pa
5052
5075
  med.pa
5076
+ net.pa
5053
5077
  nom.pa
5078
+ org.pa
5079
+ sld.pa
5054
5080
 
5055
5081
  // pe : https://www.nic.pe/InformeFinalComision.pdf
5056
5082
  pe
5083
+ com.pe
5057
5084
  edu.pe
5058
5085
  gob.pe
5059
- nom.pe
5060
5086
  mil.pe
5061
- org.pe
5062
- com.pe
5063
5087
  net.pe
5088
+ nom.pe
5089
+ org.pe
5064
5090
 
5065
5091
  // pf : http://www.gobin.info/domainname/formulaire-pf.pdf
5066
5092
  pf
5067
5093
  com.pf
5068
- org.pf
5069
5094
  edu.pf
5095
+ org.pf
5070
5096
 
5071
5097
  // pg : https://www.iana.org/domains/root/db/pg.html
5072
5098
  *.pg
@@ -5075,18 +5101,16 @@ edu.pf
5075
5101
  // Submitted by registry <jed@email.com.ph>
5076
5102
  ph
5077
5103
  com.ph
5078
- net.ph
5079
- org.ph
5080
- gov.ph
5081
5104
  edu.ph
5082
- ngo.ph
5083
- mil.ph
5105
+ gov.ph
5084
5106
  i.ph
5107
+ mil.ph
5108
+ net.ph
5109
+ ngo.ph
5110
+ org.ph
5085
5111
 
5086
- // pk : https://pknic.net.pk
5087
- // pk : http://pk5.pknic.net.pk/pk5/msgNamepk.PK + grandfathered old gon.pk
5088
- // Contact Email: staff@pknic.net.pk PKNIC .PK Registry
5089
-
5112
+ // pk : https://pk5.pknic.net.pk/pk5/msgNamepk.PK
5113
+ // Contact Email: staff@pknic.net.pk
5090
5114
  pk
5091
5115
  ac.pk
5092
5116
  biz.pk
@@ -5097,7 +5121,6 @@ gkp.pk
5097
5121
  gob.pk
5098
5122
  gog.pk
5099
5123
  gok.pk
5100
- gon.pk
5101
5124
  gop.pk
5102
5125
  gos.pk
5103
5126
  gov.pk
@@ -5105,15 +5128,15 @@ net.pk
5105
5128
  org.pk
5106
5129
  web.pk
5107
5130
 
5108
- // pl http://www.dns.pl/english/index.html
5109
- // Submitted by registry
5131
+ // pl : https://www.dns.pl/en/
5132
+ // Confirmed by registry <info@dns.pl> 2024-11-18
5110
5133
  pl
5111
5134
  com.pl
5112
5135
  net.pl
5113
5136
  org.pl
5114
- // pl functional domains (http://www.dns.pl/english/index.html)
5115
- aid.pl
5137
+ // pl functional domains : https://www.dns.pl/en/list_of_functional_domain_names
5116
5138
  agro.pl
5139
+ aid.pl
5117
5140
  atm.pl
5118
5141
  auto.pl
5119
5142
  biz.pl
@@ -5122,8 +5145,8 @@ gmina.pl
5122
5145
  gsm.pl
5123
5146
  info.pl
5124
5147
  mail.pl
5125
- miasta.pl
5126
5148
  media.pl
5149
+ miasta.pl
5127
5150
  mil.pl
5128
5151
  nieruchomosci.pl
5129
5152
  nom.pl
@@ -5142,7 +5165,8 @@ tm.pl
5142
5165
  tourism.pl
5143
5166
  travel.pl
5144
5167
  turystyka.pl
5145
- // Government domains
5168
+ // Government domains : https://www.dns.pl/informacje_o_rejestracji_domen_gov_pl
5169
+ // In accordance with the .gov.pl Domain Name Regulations : https://www.dns.pl/regulamin_gov_pl
5146
5170
  gov.pl
5147
5171
  ap.gov.pl
5148
5172
  griw.gov.pl
@@ -5199,7 +5223,7 @@ wuoz.gov.pl
5199
5223
  wzmiuw.gov.pl
5200
5224
  zp.gov.pl
5201
5225
  zpisdn.gov.pl
5202
- // pl regional domains (http://www.dns.pl/english/index.html)
5226
+ // pl regional domains : https://www.dns.pl/en/list_of_regional_domain_names
5203
5227
  augustow.pl
5204
5228
  babia-gora.pl
5205
5229
  bedzin.pl
@@ -5226,11 +5250,11 @@ jaworzno.pl
5226
5250
  jelenia-gora.pl
5227
5251
  jgora.pl
5228
5252
  kalisz.pl
5229
- kazimierz-dolny.pl
5230
5253
  karpacz.pl
5231
5254
  kartuzy.pl
5232
5255
  kaszuby.pl
5233
5256
  katowice.pl
5257
+ kazimierz-dolny.pl
5234
5258
  kepno.pl
5235
5259
  ketrzyn.pl
5236
5260
  klodzko.pl
@@ -5273,8 +5297,8 @@ pisz.pl
5273
5297
  podhale.pl
5274
5298
  podlasie.pl
5275
5299
  polkowice.pl
5276
- pomorze.pl
5277
5300
  pomorskie.pl
5301
+ pomorze.pl
5278
5302
  prochowice.pl
5279
5303
  pruszkow.pl
5280
5304
  przeworsk.pl
@@ -5285,11 +5309,11 @@ rybnik.pl
5285
5309
  rzeszow.pl
5286
5310
  sanok.pl
5287
5311
  sejny.pl
5312
+ skoczow.pl
5288
5313
  slask.pl
5289
5314
  slupsk.pl
5290
5315
  sosnowiec.pl
5291
5316
  stalowa-wola.pl
5292
- skoczow.pl
5293
5317
  starachowice.pl
5294
5318
  stargard.pl
5295
5319
  suwalki.pl
@@ -5325,31 +5349,31 @@ pm
5325
5349
 
5326
5350
  // pn : http://www.government.pn/PnRegistry/policies.htm
5327
5351
  pn
5328
- gov.pn
5329
5352
  co.pn
5330
- org.pn
5331
5353
  edu.pn
5354
+ gov.pn
5332
5355
  net.pn
5356
+ org.pn
5333
5357
 
5334
5358
  // post : https://www.iana.org/domains/root/db/post.html
5335
5359
  post
5336
5360
 
5337
5361
  // pr : http://www.nic.pr/index.asp?f=1
5338
5362
  pr
5363
+ biz.pr
5339
5364
  com.pr
5340
- net.pr
5341
- org.pr
5342
- gov.pr
5343
5365
  edu.pr
5344
- isla.pr
5345
- pro.pr
5346
- biz.pr
5366
+ gov.pr
5347
5367
  info.pr
5368
+ isla.pr
5348
5369
  name.pr
5370
+ net.pr
5371
+ org.pr
5372
+ pro.pr
5349
5373
  // these aren't mentioned on nic.pr, but on https://www.iana.org/domains/root/db/pr.html
5374
+ ac.pr
5350
5375
  est.pr
5351
5376
  prof.pr
5352
- ac.pr
5353
5377
 
5354
5378
  // pro : http://registry.pro/get-pro
5355
5379
  pro
@@ -5368,32 +5392,29 @@ recht.pro
5368
5392
  // ps : https://www.iana.org/domains/root/db/ps.html
5369
5393
  // http://www.nic.ps/registration/policy.html#reg
5370
5394
  ps
5395
+ com.ps
5371
5396
  edu.ps
5372
5397
  gov.ps
5373
- sec.ps
5374
- plo.ps
5375
- com.ps
5376
- org.ps
5377
5398
  net.ps
5399
+ org.ps
5400
+ plo.ps
5401
+ sec.ps
5378
5402
 
5379
5403
  // pt : https://www.dns.pt/en/domain/pt-terms-and-conditions-registration-rules/
5380
5404
  pt
5381
- net.pt
5382
- gov.pt
5383
- org.pt
5405
+ com.pt
5384
5406
  edu.pt
5407
+ gov.pt
5385
5408
  int.pt
5386
- publ.pt
5387
- com.pt
5409
+ net.pt
5388
5410
  nome.pt
5411
+ org.pt
5412
+ publ.pt
5389
5413
 
5390
5414
  // pw : https://www.iana.org/domains/root/db/pw.html
5415
+ // Confirmed by registry in private correspondence with @dnsguru 2024-12-09
5391
5416
  pw
5392
- co.pw
5393
- or.pw
5394
- ed.pw
5395
- go.pw
5396
- belau.pw
5417
+ gov.pw
5397
5418
 
5398
5419
  // py : http://www.nic.py/pautas.html#seccion_9
5399
5420
  // Submitted by registry
@@ -5418,10 +5439,11 @@ org.qa
5418
5439
  sch.qa
5419
5440
 
5420
5441
  // re : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf
5442
+ // Confirmed by registry <support@afnic.fr> 2024-11-18
5421
5443
  re
5444
+ // Closed for registration on 2013-03-15 but domains are still maintained
5422
5445
  asso.re
5423
5446
  com.re
5424
- nom.re
5425
5447
 
5426
5448
  // ro : http://www.rotld.ro/
5427
5449
  ro
@@ -5463,12 +5485,12 @@ org.rw
5463
5485
  // sa : http://www.nic.net.sa/
5464
5486
  sa
5465
5487
  com.sa
5466
- net.sa
5467
- org.sa
5488
+ edu.sa
5468
5489
  gov.sa
5469
5490
  med.sa
5491
+ net.sa
5492
+ org.sa
5470
5493
  pub.sa
5471
- edu.sa
5472
5494
  sch.sa
5473
5495
 
5474
5496
  // sb : http://www.sbnic.net.sb/
@@ -5483,25 +5505,26 @@ org.sb
5483
5505
  // sc : http://www.nic.sc/
5484
5506
  sc
5485
5507
  com.sc
5508
+ edu.sc
5486
5509
  gov.sc
5487
5510
  net.sc
5488
5511
  org.sc
5489
- edu.sc
5490
5512
 
5491
5513
  // sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm
5492
5514
  // Submitted by registry <admin@isoc.sd>
5493
5515
  sd
5494
5516
  com.sd
5495
- net.sd
5496
- org.sd
5497
5517
  edu.sd
5498
- med.sd
5499
- tv.sd
5500
5518
  gov.sd
5501
5519
  info.sd
5520
+ med.sd
5521
+ net.sd
5522
+ org.sd
5523
+ tv.sd
5502
5524
 
5503
5525
  // se : https://www.iana.org/domains/root/db/se.html
5504
- // Submitted by registry <patrik.wallstrom@iis.se>
5526
+ // https://data.internetstiftelsen.se/barred_domains_list.txt -> Second level domains & Sub-domains
5527
+ // Confirmed by Registry Services <registry@internetstiftelsen.se> 2024-11-20
5505
5528
  se
5506
5529
  a.se
5507
5530
  ac.se
@@ -5543,22 +5566,22 @@ x.se
5543
5566
  y.se
5544
5567
  z.se
5545
5568
 
5546
- // sg : http://www.nic.net.sg/page/registration-policies-procedures-and-guidelines
5569
+ // sg : https://www.sgnic.sg/domain-registration/sg-categories-rules
5570
+ // Confirmed by registry <dnq@sgnic.sg> 2024-11-19
5547
5571
  sg
5548
5572
  com.sg
5573
+ edu.sg
5574
+ gov.sg
5549
5575
  net.sg
5550
5576
  org.sg
5551
- gov.sg
5552
- edu.sg
5553
- per.sg
5554
5577
 
5555
5578
  // sh : http://nic.sh/rules.htm
5556
5579
  sh
5557
5580
  com.sh
5558
- net.sh
5559
5581
  gov.sh
5560
- org.sh
5561
5582
  mil.sh
5583
+ net.sh
5584
+ org.sh
5562
5585
 
5563
5586
  // si : https://www.iana.org/domains/root/db/si.html
5564
5587
  si
@@ -5574,9 +5597,9 @@ sk
5574
5597
  // Submitted by registry <adam@neoip.com>
5575
5598
  sl
5576
5599
  com.sl
5577
- net.sl
5578
5600
  edu.sl
5579
5601
  gov.sl
5602
+ net.sl
5580
5603
  org.sl
5581
5604
 
5582
5605
  // sm : https://www.iana.org/domains/root/db/sm.html
@@ -5650,18 +5673,18 @@ gov.sx
5650
5673
  // sy : https://www.iana.org/domains/root/db/sy.html
5651
5674
  // see also: http://www.gobin.info/domainname/sy.doc
5652
5675
  sy
5676
+ com.sy
5653
5677
  edu.sy
5654
5678
  gov.sy
5655
- net.sy
5656
5679
  mil.sy
5657
- com.sy
5680
+ net.sy
5658
5681
  org.sy
5659
5682
 
5660
5683
  // sz : https://www.iana.org/domains/root/db/sz.html
5661
5684
  // http://www.sispa.org.sz/
5662
5685
  sz
5663
- co.sz
5664
5686
  ac.sz
5687
+ co.sz
5665
5688
  org.sz
5666
5689
 
5667
5690
  // tc : https://www.iana.org/domains/root/db/tc.html
@@ -5670,7 +5693,7 @@ tc
5670
5693
  // td : https://www.iana.org/domains/root/db/td.html
5671
5694
  td
5672
5695
 
5673
- // tel: https://www.iana.org/domains/root/db/tel.html
5696
+ // tel : https://www.iana.org/domains/root/db/tel.html
5674
5697
  // http://www.telnic.org/
5675
5698
  tel
5676
5699
 
@@ -5717,16 +5740,17 @@ tk
5717
5740
  tl
5718
5741
  gov.tl
5719
5742
 
5720
- // tm : http://www.nic.tm/local.html
5743
+ // tm : https://www.nic.tm/local.html
5744
+ // Confirmed by registry <admin@nic.TM> 2024-11-19
5721
5745
  tm
5722
- com.tm
5723
5746
  co.tm
5724
- org.tm
5725
- net.tm
5726
- nom.tm
5747
+ com.tm
5748
+ edu.tm
5727
5749
  gov.tm
5728
5750
  mil.tm
5729
- edu.tm
5751
+ net.tm
5752
+ nom.tm
5753
+ org.tm
5730
5754
 
5731
5755
  // tn : http://www.registre.tn/fr/
5732
5756
  // https://whois.ati.tn/
@@ -5749,11 +5773,11 @@ tourism.tn
5749
5773
  // Submitted by registry <egullich@colo.to>
5750
5774
  to
5751
5775
  com.to
5776
+ edu.to
5752
5777
  gov.to
5778
+ mil.to
5753
5779
  net.to
5754
5780
  org.to
5755
- edu.to
5756
- mil.to
5757
5781
 
5758
5782
  // tr : https://nic.tr/
5759
5783
  // https://nic.tr/forms/eng/policies.pdf
@@ -5769,9 +5793,9 @@ edu.tr
5769
5793
  gen.tr
5770
5794
  gov.tr
5771
5795
  info.tr
5772
- mil.tr
5773
5796
  k12.tr
5774
5797
  kep.tr
5798
+ mil.tr
5775
5799
  name.tr
5776
5800
  net.tr
5777
5801
  org.tr
@@ -5785,25 +5809,20 @@ nc.tr
5785
5809
  // Used by government agencies of Northern Cyprus
5786
5810
  gov.nc.tr
5787
5811
 
5788
- // tt : http://www.nic.tt/
5812
+ // tt : https://www.nic.tt/
5813
+ // Confirmed by registry <admin@nic.tt> 2024-11-19
5789
5814
  tt
5815
+ biz.tt
5790
5816
  co.tt
5791
5817
  com.tt
5792
- org.tt
5793
- net.tt
5794
- biz.tt
5818
+ edu.tt
5819
+ gov.tt
5795
5820
  info.tt
5796
- pro.tt
5797
- int.tt
5798
- coop.tt
5799
- jobs.tt
5800
- mobi.tt
5801
- travel.tt
5802
- museum.tt
5803
- aero.tt
5821
+ mil.tt
5804
5822
  name.tt
5805
- gov.tt
5806
- edu.tt
5823
+ net.tt
5824
+ org.tt
5825
+ pro.tt
5807
5826
 
5808
5827
  // tv : https://www.iana.org/domains/root/db/tv.html
5809
5828
  // Not listing any 2LDs as reserved since none seem to exist in practice,
@@ -5811,20 +5830,19 @@ edu.tt
5811
5830
  tv
5812
5831
 
5813
5832
  // tw : https://www.iana.org/domains/root/db/tw.html
5833
+ // https://twnic.tw/dnservice_catag.php
5834
+ // Confirmed by registry <dns@twnic.tw> 2024-11-26
5814
5835
  tw
5836
+ club.tw
5837
+ com.tw
5838
+ ebiz.tw
5815
5839
  edu.tw
5840
+ game.tw
5816
5841
  gov.tw
5842
+ idv.tw
5817
5843
  mil.tw
5818
- com.tw
5819
5844
  net.tw
5820
5845
  org.tw
5821
- idv.tw
5822
- game.tw
5823
- ebiz.tw
5824
- club.tw
5825
- 網路.tw
5826
- 組織.tw
5827
- 商業.tw
5828
5846
 
5829
5847
  // tz : http://www.tznic.or.tz/index.php/domains
5830
5848
  // Submitted by registry <manager@tznic.or.tz>
@@ -5930,14 +5948,14 @@ zt.ua
5930
5948
 
5931
5949
  // ug : https://www.registry.co.ug/
5932
5950
  ug
5933
- co.ug
5934
- or.ug
5935
5951
  ac.ug
5936
- sc.ug
5952
+ co.ug
5953
+ com.ug
5937
5954
  go.ug
5938
5955
  ne.ug
5939
- com.ug
5956
+ or.ug
5940
5957
  org.ug
5958
+ sc.ug
5941
5959
 
5942
5960
  // uk : https://www.iana.org/domains/root/db/uk.html
5943
5961
  // Submitted by registry <Michael.Daly@nominet.org.uk>
@@ -5955,13 +5973,12 @@ police.uk
5955
5973
  *.sch.uk
5956
5974
 
5957
5975
  // us : https://www.iana.org/domains/root/db/us.html
5976
+ // Confirmed via the .us zone file by William Harrison 2024-12-10
5958
5977
  us
5959
5978
  dni.us
5960
- fed.us
5961
5979
  isa.us
5962
- kids.us
5963
5980
  nsn.us
5964
- // us geographic names
5981
+ // Geographic Names
5965
5982
  ak.us
5966
5983
  al.us
5967
5984
  ar.us
@@ -6010,9 +6027,9 @@ sd.us
6010
6027
  tn.us
6011
6028
  tx.us
6012
6029
  ut.us
6030
+ va.us
6013
6031
  vi.us
6014
6032
  vt.us
6015
- va.us
6016
6033
  wa.us
6017
6034
  wi.us
6018
6035
  wv.us
@@ -6035,7 +6052,7 @@ k12.dc.us
6035
6052
  k12.fl.us
6036
6053
  k12.ga.us
6037
6054
  k12.gu.us
6038
- // k12.hi.us Bug 614565 - Hawaii has a state-wide DOE login
6055
+ // k12.hi.us - Bug 614565 - Hawaii has a state-wide DOE login
6039
6056
  k12.ia.us
6040
6057
  k12.id.us
6041
6058
  k12.il.us
@@ -6052,7 +6069,7 @@ k12.mo.us
6052
6069
  k12.ms.us
6053
6070
  k12.mt.us
6054
6071
  k12.nc.us
6055
- // k12.nd.us Bug 1028347 - Removed at request of Travis Rosso <trossow@nd.gov>
6072
+ // k12.nd.us - Bug 1028347 - Removed at request of Travis Rosso <trossow@nd.gov>
6056
6073
  k12.ne.us
6057
6074
  k12.nh.us
6058
6075
  k12.nj.us
@@ -6064,28 +6081,36 @@ k12.ok.us
6064
6081
  k12.or.us
6065
6082
  k12.pa.us
6066
6083
  k12.pr.us
6067
- // k12.ri.us Removed at request of Kim Cournoyer <netsupport@staff.ri.net>
6084
+ // k12.ri.us - Removed at request of Kim Cournoyer <netsupport@staff.ri.net>
6068
6085
  k12.sc.us
6069
- // k12.sd.us Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
6086
+ // k12.sd.us - Bug 934131 - Removed at request of James Booze <James.Booze@k12.sd.us>
6070
6087
  k12.tn.us
6071
6088
  k12.tx.us
6072
6089
  k12.ut.us
6090
+ k12.va.us
6073
6091
  k12.vi.us
6074
6092
  k12.vt.us
6075
- k12.va.us
6076
6093
  k12.wa.us
6077
6094
  k12.wi.us
6078
- // k12.wv.us Bug 947705 - Removed at request of Verne Britton <verne@wvnet.edu>
6079
- k12.wy.us
6095
+ // k12.wv.us - Bug 947705 - Removed at request of Verne Britton <verne@wvnet.edu>
6080
6096
  cc.ak.us
6097
+ lib.ak.us
6081
6098
  cc.al.us
6099
+ lib.al.us
6082
6100
  cc.ar.us
6101
+ lib.ar.us
6083
6102
  cc.as.us
6103
+ lib.as.us
6084
6104
  cc.az.us
6105
+ lib.az.us
6085
6106
  cc.ca.us
6107
+ lib.ca.us
6086
6108
  cc.co.us
6109
+ lib.co.us
6087
6110
  cc.ct.us
6111
+ lib.ct.us
6088
6112
  cc.dc.us
6113
+ lib.dc.us
6089
6114
  cc.de.us
6090
6115
  cc.fl.us
6091
6116
  cc.ga.us
@@ -6125,23 +6150,15 @@ cc.sd.us
6125
6150
  cc.tn.us
6126
6151
  cc.tx.us
6127
6152
  cc.ut.us
6153
+ cc.va.us
6128
6154
  cc.vi.us
6129
6155
  cc.vt.us
6130
- cc.va.us
6131
6156
  cc.wa.us
6132
6157
  cc.wi.us
6133
6158
  cc.wv.us
6134
6159
  cc.wy.us
6135
- lib.ak.us
6136
- lib.al.us
6137
- lib.ar.us
6138
- lib.as.us
6139
- lib.az.us
6140
- lib.ca.us
6141
- lib.co.us
6142
- lib.ct.us
6143
- lib.dc.us
6144
- // lib.de.us Issue #243 - Moved to Private section at request of Ed Moore <Ed.Moore@lib.de.us>
6160
+ k12.wy.us
6161
+ // lib.de.us - Issue #243 - Moved to Private section at request of Ed Moore <Ed.Moore@lib.de.us>
6145
6162
  lib.fl.us
6146
6163
  lib.ga.us
6147
6164
  lib.gu.us
@@ -6180,23 +6197,23 @@ lib.sd.us
6180
6197
  lib.tn.us
6181
6198
  lib.tx.us
6182
6199
  lib.ut.us
6200
+ lib.va.us
6183
6201
  lib.vi.us
6184
6202
  lib.vt.us
6185
- lib.va.us
6186
6203
  lib.wa.us
6187
6204
  lib.wi.us
6188
- // lib.wv.us Bug 941670 - Removed at request of Larry W Arnold <arnold@wvlc.lib.wv.us>
6205
+ // lib.wv.us - Bug 941670 - Removed at request of Larry W Arnold <arnold@wvlc.lib.wv.us>
6189
6206
  lib.wy.us
6190
6207
  // k12.ma.us contains school districts in Massachusetts. The 4LDs are
6191
- // managed independently except for private (PVT), charter (CHTR) and
6192
- // parochial (PAROCH) schools. Those are delegated directly to the
6193
- // 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net>
6194
- pvt.k12.ma.us
6208
+ // managed independently except for private (PVT), charter (CHTR) and
6209
+ // parochial (PAROCH) schools. Those are delegated directly to the
6210
+ // 5LD operators. <k12-ma-hostmaster@rsuc.gweep.net>
6195
6211
  chtr.k12.ma.us
6196
6212
  paroch.k12.ma.us
6213
+ pvt.k12.ma.us
6197
6214
  // Merit Network, Inc. maintains the registry for =~ /(k12|cc|lib).mi.us/ and the following
6198
- // see also: http://domreg.merit.edu
6199
- // see also: whois -h whois.domreg.merit.edu help
6215
+ // see also: https://domreg.merit.edu : domreg@merit.edu
6216
+ // see also: whois -h whois.domreg.merit.edu help
6200
6217
  ann-arbor.mi.us
6201
6218
  cog.mi.us
6202
6219
  dst.mi.us
@@ -6229,11 +6246,11 @@ va
6229
6246
  // Submitted by registry <kshah@ca.afilias.info>
6230
6247
  vc
6231
6248
  com.vc
6232
- net.vc
6233
- org.vc
6249
+ edu.vc
6234
6250
  gov.vc
6235
6251
  mil.vc
6236
- edu.vc
6252
+ net.vc
6253
+ org.vc
6237
6254
 
6238
6255
  // ve : https://registro.nic.ve/
6239
6256
  // Submitted by registry nic@nic.ve and nicve@conatel.gob.ve
@@ -6372,10 +6389,10 @@ wf
6372
6389
  // http://samoanic.ws/index.dhtml
6373
6390
  ws
6374
6391
  com.ws
6392
+ edu.ws
6393
+ gov.ws
6375
6394
  net.ws
6376
6395
  org.ws
6377
- gov.ws
6378
- edu.ws
6379
6396
 
6380
6397
  // yt : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf
6381
6398
  yt
@@ -6410,12 +6427,12 @@ yt
6410
6427
 
6411
6428
  // xn--fiqs8s ("Zhongguo/China", Chinese, Simplified) : CN
6412
6429
  // CNNIC
6413
- // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
6430
+ // https://www.cnnic.cn/11/192/index.html
6414
6431
  中国
6415
6432
 
6416
6433
  // xn--fiqz9s ("Zhongguo/China", Chinese, Traditional) : CN
6417
6434
  // CNNIC
6418
- // http://cnnic.cn/html/Dir/2005/10/11/3218.htm
6435
+ // https://www.cnnic.com.cn/AU/MediaC/Announcement/201609/t20160905_54470.htm
6419
6436
  中國
6420
6437
 
6421
6438
  // xn--lgbbat1ad8j ("Algeria/Al Jazair", Arabic) : DZ
@@ -6448,12 +6465,12 @@ yt
6448
6465
  // Submitted by registry <hk.tech@hkirc.hk>
6449
6466
  // https://www.hkirc.hk/content.jsp?id=30#!/34
6450
6467
  香港
6468
+ 個人.香港
6451
6469
  公司.香港
6452
- 教育.香港
6453
6470
  政府.香港
6454
- 個人.香港
6455
- 網絡.香港
6471
+ 教育.香港
6456
6472
  組織.香港
6473
+ 網絡.香港
6457
6474
 
6458
6475
  // xn--2scrj9c ("Bharat", Kannada) : IN
6459
6476
  // India
@@ -6584,12 +6601,12 @@ yt
6584
6601
  // xn--90a3ac ("srb", Cyrillic) : RS
6585
6602
  // https://www.rnids.rs/en/domains/national-domains
6586
6603
  срб
6587
- пр.срб
6588
- орг.срб
6604
+ ак.срб
6589
6605
  обр.срб
6590
6606
  од.срб
6607
+ орг.срб
6608
+ пр.срб
6591
6609
  упр.срб
6592
- ак.срб
6593
6610
 
6594
6611
  // xn--p1ai ("rf", Russian-Cyrillic) : RU
6595
6612
  // https://cctld.ru/files/pdf/docs/en/rules_ru-rf.pdf
@@ -6604,7 +6621,7 @@ yt
6604
6621
  // http://www.nic.net.sa/
6605
6622
  السعودية
6606
6623
 
6607
- // xn--mgberp4a5d4a87g ("AlSaudiah", Arabic, variant) : SA
6624
+ // xn--mgberp4a5d4a87g ("AlSaudiah", Arabic, variant): SA
6608
6625
  السعودیة
6609
6626
 
6610
6627
  // xn--mgbqly7c0a67fbc ("AlSaudiah", Arabic, variant) : SA
@@ -6632,11 +6649,11 @@ yt
6632
6649
  // xn--o3cw4h ("Thai", Thai) : TH
6633
6650
  // http://www.thnic.co.th
6634
6651
  ไทย
6635
- ศึกษา.ไทย
6636
- ธุรกิจ.ไทย
6637
- รัฐบาล.ไทย
6638
6652
  ทหาร.ไทย
6653
+ ธุรกิจ.ไทย
6639
6654
  เน็ต.ไทย
6655
+ รัฐบาล.ไทย
6656
+ ศึกษา.ไทย
6640
6657
  องค์กร.ไทย
6641
6658
 
6642
6659
  // xn--pgbs0dh ("Tunisia", Arabic) : TN
@@ -6644,7 +6661,7 @@ yt
6644
6661
  تونس
6645
6662
 
6646
6663
  // xn--kpry57d ("Taiwan", Chinese, Traditional) : TW
6647
- // http://www.twnic.net/english/dn/dn_07a.htm
6664
+ // https://twnic.tw/dnservice_catag.php
6648
6665
  台灣
6649
6666
 
6650
6667
  // xn--kprw13d ("Taiwan", Chinese, Simplified) : TW
@@ -6668,8 +6685,8 @@ ye
6668
6685
  com.ye
6669
6686
  edu.ye
6670
6687
  gov.ye
6671
- net.ye
6672
6688
  mil.ye
6689
+ net.ye
6673
6690
  org.ye
6674
6691
 
6675
6692
  // za : https://www.zadna.org.za/content/page/domain-information/
@@ -6718,7 +6735,7 @@ org.zw
6718
6735
 
6719
6736
  // newGTLDs
6720
6737
 
6721
- // List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-10-31T15:17:42Z
6738
+ // List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-12-23T15:16:32Z
6722
6739
  // This list is auto-generated, don't edit it manually.
6723
6740
  // aaa : American Automobile Association, Inc.
6724
6741
  // https://www.iana.org/domains/root/db/aaa.html
@@ -6948,7 +6965,7 @@ art
6948
6965
  // https://www.iana.org/domains/root/db/arte.html
6949
6966
  arte
6950
6967
 
6951
- // asda : Wal-Mart Stores, Inc.
6968
+ // asda : Asda Stores Limited
6952
6969
  // https://www.iana.org/domains/root/db/asda.html
6953
6970
  asda
6954
6971
 
@@ -9332,7 +9349,7 @@ norton
9332
9349
  // https://www.iana.org/domains/root/db/now.html
9333
9350
  now
9334
9351
 
9335
- // nowruz : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
9352
+ // nowruz
9336
9353
  // https://www.iana.org/domains/root/db/nowruz.html
9337
9354
  nowruz
9338
9355
 
@@ -9456,7 +9473,7 @@ panasonic
9456
9473
  // https://www.iana.org/domains/root/db/paris.html
9457
9474
  paris
9458
9475
 
9459
- // pars : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
9476
+ // pars
9460
9477
  // https://www.iana.org/domains/root/db/pars.html
9461
9478
  pars
9462
9479
 
@@ -10012,7 +10029,7 @@ sharp
10012
10029
  // https://www.iana.org/domains/root/db/shell.html
10013
10030
  shell
10014
10031
 
10015
- // shia : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
10032
+ // shia
10016
10033
  // https://www.iana.org/domains/root/db/shia.html
10017
10034
  shia
10018
10035
 
@@ -10288,7 +10305,7 @@ tax
10288
10305
  // https://www.iana.org/domains/root/db/taxi.html
10289
10306
  taxi
10290
10307
 
10291
- // tci : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
10308
+ // tci
10292
10309
  // https://www.iana.org/domains/root/db/tci.html
10293
10310
  tci
10294
10311
 
@@ -10772,7 +10789,7 @@ xin
10772
10789
  // https://www.iana.org/domains/root/db/xn--3bst00m.html
10773
10790
  集团
10774
10791
 
10775
- // xn--3ds443g : TLD REGISTRY LIMITED OY
10792
+ // xn--3ds443g : Beijing TLD Registry Technology Limited
10776
10793
  // https://www.iana.org/domains/root/db/xn--3ds443g.html
10777
10794
  在线
10778
10795
 
@@ -10996,7 +11013,7 @@ xin
10996
11013
  // https://www.iana.org/domains/root/db/xn--mgbi4ecexp.html
10997
11014
  كاثوليك
10998
11015
 
10999
- // xn--mgbt3dhd : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.
11016
+ // xn--mgbt3dhd
11000
11017
  // https://www.iana.org/domains/root/db/xn--mgbt3dhd.html
11001
11018
  همراه
11002
11019
 
@@ -11128,7 +11145,7 @@ yahoo
11128
11145
  // https://www.iana.org/domains/root/db/yamaxun.html
11129
11146
  yamaxun
11130
11147
 
11131
- // yandex : Yandex Europe B.V.
11148
+ // yandex : ADC Tech Netherlands B.V.
11132
11149
  // https://www.iana.org/domains/root/db/yandex.html
11133
11150
  yandex
11134
11151
 
@@ -11186,7 +11203,7 @@ zuerich
11186
11203
 
11187
11204
  // (Note: these are in alphabetical order by company name)
11188
11205
 
11189
- // .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf
11206
+ // .KRD : https://nic.krd
11190
11207
  co.krd
11191
11208
  edu.krd
11192
11209
 
@@ -11202,7 +11219,7 @@ zakopane.pl
11202
11219
  // Submitted by Ed Moore <Ed.Moore@lib.de.us>
11203
11220
  lib.de.us
11204
11221
 
11205
- // 12CHARS: https://12chars.com
11222
+ // 12CHARS : https://12chars.com
11206
11223
  // Submitted by Kenny Niehage <psl@12chars.com>
11207
11224
  12chars.dev
11208
11225
  12chars.it
@@ -11222,15 +11239,11 @@ ltd.ua
11222
11239
  a2hosted.com
11223
11240
  cpserver.com
11224
11241
 
11225
- // AAA workspace : https://aaa.vodka
11226
- // Submitted by Kirill Rezraf <admin@aaa.vodka>
11227
- aaa.vodka
11228
-
11229
11242
  // Acorn Labs : https://acorn.io
11230
11243
  // Submitted by Craig Jellick <domains@acorn.io>
11231
11244
  *.on-acorn.io
11232
11245
 
11233
- // ActiveTrail: https://www.activetrail.biz/
11246
+ // ActiveTrail : https://www.activetrail.biz/
11234
11247
  // Submitted by Ofer Kalaora <postmaster@activetrail.com>
11235
11248
  activetrail.biz
11236
11249
 
@@ -11238,6 +11251,13 @@ activetrail.biz
11238
11251
  // Submitted by Mark Terrel <support@adaptable.io>
11239
11252
  adaptable.app
11240
11253
 
11254
+ // addr.tools : https://addr.tools/
11255
+ // Submitted by Brian Shea <publicsuffixlist@addr.tools>
11256
+ myaddr.dev
11257
+ myaddr.io
11258
+ dyn.addr.tools
11259
+ myaddr.tools
11260
+
11241
11261
  // Adobe : https://www.adobe.com/
11242
11262
  // Submitted by Ian Boston <boston@adobe.com> and Lars Trieloff <trieloff@adobe.com>
11243
11263
  adobeaemcloud.com
@@ -11268,8 +11288,9 @@ airkitapps.com
11268
11288
  airkitapps-au.com
11269
11289
  airkitapps.eu
11270
11290
 
11271
- // Aiven: https://aiven.io/
11272
- // Submitted by Etienne Stalmans <security@aiven.io>
11291
+ // Aiven : https://aiven.io/
11292
+ // Submitted by Aiven Security Team <security+appdomains@aiven.io>
11293
+ aiven.app
11273
11294
  aivencloud.com
11274
11295
 
11275
11296
  // Akamai : https://www.akamai.com/
@@ -11303,7 +11324,7 @@ barsy.ca
11303
11324
  // Submitted by Werner Kaltofen <wk@all-inkl.com>
11304
11325
  kasserver.com
11305
11326
 
11306
- // Altervista: https://www.altervista.org
11327
+ // Altervista : https://www.altervista.org
11307
11328
  // Submitted by Carlo Cannas <tech_staff@altervista.it>
11308
11329
  altervista.org
11309
11330
 
@@ -12222,10 +12243,6 @@ beagleboard.io
12222
12243
  // Submitted by Hazel Cora <hazy@besties.house>
12223
12244
  pages.gay
12224
12245
 
12225
- // BetaInABox
12226
- // Submitted by Adrian <adrian@betainabox.com>
12227
- betainabox.com
12228
-
12229
12246
  // BinaryLane : http://www.binarylane.com
12230
12247
  // Submitted by Nathan O'Sullivan <nathan@mammoth.com.au>
12231
12248
  bnr.la
@@ -12324,7 +12341,7 @@ c.cdn77.org
12324
12341
  rsc.cdn77.org
12325
12342
  ssl.origin.cdn77-secure.org
12326
12343
 
12327
- // CentralNic : http://www.centralnic.com/names/domains
12344
+ // CentralNic : https://teaminternet.com/
12328
12345
  // Submitted by registry <gavin.brown@centralnic.com>
12329
12346
  za.bz
12330
12347
  br.com
@@ -12347,7 +12364,7 @@ uk.net
12347
12364
  ae.org
12348
12365
  com.se
12349
12366
 
12350
- // Cityhost LLC : https://cityhost.ua
12367
+ // Cityhost LLC : https://cityhost.ua
12351
12368
  // Submitted by Maksym Rivtin <support@cityhost.net.ua>
12352
12369
  cx.ua
12353
12370
 
@@ -12493,7 +12510,6 @@ edu.ru
12493
12510
  gov.ru
12494
12511
  int.ru
12495
12512
  mil.ru
12496
- test.ru
12497
12513
 
12498
12514
  // COSIMO GmbH : http://www.cosimo.de
12499
12515
  // Submitted by Rene Marticke <rmarticke@cosimo.de>
@@ -12523,10 +12539,6 @@ on.crisp.email
12523
12539
  // Submitted by Andrew Cady <public-suffix-list@cryptonomic.net>
12524
12540
  *.cryptonomic.net
12525
12541
 
12526
- // Curv UG : https://curv-labs.de/
12527
- // Submitted by Marvin Wiesner <Marvin@curv-labs.de>
12528
- curv.dev
12529
-
12530
12542
  // cyber_Folks S.A. : https://cyberfolks.pl
12531
12543
  // Submitted by Bartlomiej Kida <security@cyberfolks.pl>
12532
12544
  cfolks.pl
@@ -12536,12 +12548,6 @@ cfolks.pl
12536
12548
  cyon.link
12537
12549
  cyon.site
12538
12550
 
12539
- // Danger Science Group: https://dangerscience.com/
12540
- // Submitted by Skylar MacDonald <skylar@dangerscience.com>
12541
- platform0.app
12542
- fnwk.site
12543
- folionetwork.site
12544
-
12545
12551
  // Dansk.net : http://www.dansk.net/
12546
12552
  // Submitted by Anani Voule <digital@digital.co.dk>
12547
12553
  biz.dk
@@ -12607,12 +12613,12 @@ deno-staging.dev
12607
12613
  // Submitted by Peter Thomassen <peter@desec.io>
12608
12614
  dedyn.io
12609
12615
 
12610
- // Deta: https://www.deta.sh/
12616
+ // Deta : https://www.deta.sh/
12611
12617
  // Submitted by Aavash Shrestha <aavash@deta.sh>
12612
12618
  deta.app
12613
12619
  deta.dev
12614
12620
 
12615
- // dhosting.pl Sp. z o.o.: https://dhosting.pl/
12621
+ // dhosting.pl Sp. z o.o. : https://dhosting.pl/
12616
12622
  // Submitted by Michal Kokoszkiewicz <bok@dhosting.pl>
12617
12623
  dfirma.pl
12618
12624
  dkonto.pl
@@ -12630,17 +12636,12 @@ ondigitalocean.app
12630
12636
  // Submitted by Edward Hsing <contact@digitalplat.org>
12631
12637
  us.kg
12632
12638
 
12633
- // Diher Solutions : https://diher.solutions
12634
- // Submitted by Didi Hermawan <mail@diher.solutions>
12635
- rss.my.id
12636
- diher.solutions
12637
-
12638
12639
  // Discord Inc : https://discord.com
12639
12640
  // Submitted by Sahn Lam <slam@discordapp.com>
12640
12641
  discordsays.com
12641
12642
  discordsez.com
12642
12643
 
12643
- // DNS Africa Ltd https://dns.business
12644
+ // DNS Africa Ltd : https://dns.business
12644
12645
  // Submitted by Calvin Browne <calvin@dns.business>
12645
12646
  jozi.biz
12646
12647
 
@@ -12673,11 +12674,6 @@ durumis.com
12673
12674
  // Submitted by Ricardo Padilha <rpadilha@drobo.com>
12674
12675
  mydrobo.com
12675
12676
 
12676
- // Drud Holdings, LLC. : https://www.drud.com/
12677
- // Submitted by Kevin Bridges <kevin@drud.com>
12678
- drud.io
12679
- drud.us
12680
-
12681
12677
  // DuckDNS : http://www.duckdns.org/
12682
12678
  // Submitted by Richard Harper <richard@duckdns.org>
12683
12679
  duckdns.org
@@ -13029,12 +13025,12 @@ elementor.cool
13029
13025
  // Submitted by Emmanuel Raviart <emmanuel@raviart.com>
13030
13026
  en-root.fr
13031
13027
 
13032
- // Enalean SAS: https://www.enalean.com
13028
+ // Enalean SAS : https://www.enalean.com
13033
13029
  // Submitted by Enalean Security Team <security@enalean.com>
13034
13030
  mytuleap.com
13035
13031
  tuleap-partners.com
13036
13032
 
13037
- // Encoretivity AB: https://encore.dev
13033
+ // Encoretivity AB : https://encore.dev
13038
13034
  // Submitted by André Eriksson <andre@encore.dev>
13039
13035
  encr.app
13040
13036
  encoreapi.com
@@ -13043,7 +13039,7 @@ encoreapi.com
13043
13039
  // Submitted by Marcel Daus <cloudops@encoway.de>
13044
13040
  eu.encoway.cloud
13045
13041
 
13046
- // EU.org https://eu.org/
13042
+ // EU.org : https://eu.org/
13047
13043
  // Submitted by Pierre Beyssac <hostmaster@eu.org>
13048
13044
  eu.org
13049
13045
  al.eu.org
@@ -13237,13 +13233,13 @@ fastvps.site
13237
13233
  myfast.space
13238
13234
 
13239
13235
  // FearWorks Media Ltd. : https://fearworksmedia.co.uk
13240
- // submitted by Keith Fairley <domains@fearworksmedia.co.uk>
13236
+ // Submitted by Keith Fairley <domains@fearworksmedia.co.uk>
13241
13237
  conn.uk
13242
13238
  copro.uk
13243
13239
  hosp.uk
13244
13240
 
13245
13241
  // Fedora : https://fedoraproject.org/
13246
- // submitted by Patrick Uiterwijk <puiterwijk@fedoraproject.org>
13242
+ // Submitted by Patrick Uiterwijk <puiterwijk@fedoraproject.org>
13247
13243
  fedorainfracloud.org
13248
13244
  fedorapeople.org
13249
13245
  cloud.fedoraproject.org
@@ -13251,7 +13247,7 @@ app.os.fedoraproject.org
13251
13247
  app.os.stg.fedoraproject.org
13252
13248
 
13253
13249
  // Fermax : https://fermax.com/
13254
- // submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
13250
+ // Submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
13255
13251
  mydobiss.com
13256
13252
 
13257
13253
  // FH Muenster : https://www.fh-muenster.de
@@ -13270,11 +13266,15 @@ firebaseapp.com
13270
13266
  // Submitted by Eric Chan <support@flashdrive.io>
13271
13267
  fldrv.com
13272
13268
 
13269
+ // Fleek Labs Inc : https://fleek.xyz
13270
+ // Submitted by Parsa Ghadimi <dev@fleek.xyz>
13271
+ on-fleek.app
13272
+
13273
13273
  // FlutterFlow : https://flutterflow.io
13274
13274
  // Submitted by Anton Emelyanov <anton@flutterflow.io>
13275
13275
  flutterflow.app
13276
13276
 
13277
- // fly.io: https://fly.io
13277
+ // fly.io : https://fly.io
13278
13278
  // Submitted by Kurt Mackey <kurt@fly.io>
13279
13279
  fly.dev
13280
13280
  shw.io
@@ -13297,7 +13297,7 @@ framer.wiki
13297
13297
 
13298
13298
  // Frederik Braun : https://frederik-braun.com
13299
13299
  // Submitted by Frederik Braun <fb@frederik-braun.com>
13300
- 0e.vc
13300
+ *.0e.vc
13301
13301
 
13302
13302
  // Freebox : http://www.freebox.fr
13303
13303
  // Submitted by Romain Fliedel <rfliedel@freebox.fr>
@@ -13378,15 +13378,9 @@ usercontent.jp
13378
13378
  // Submitted by Tom Klein <tom@gentlent.com>
13379
13379
  gentapps.com
13380
13380
  gentlentapis.com
13381
- lab.ms
13382
13381
  cdn-edges.net
13383
13382
 
13384
- // GetLocalCert : https://getlocalcert.net
13385
- // Submitted by William Harrison <psl@getlocalcert.net>
13386
- localcert.net
13387
- localhostcert.net
13388
-
13389
- // GignoSystemJapan: http://gsj.bz
13383
+ // GignoSystemJapan : http://gsj.bz
13390
13384
  // Submitted by GignoSystemJapan <kakutou-ec@gsj.bz>
13391
13385
  gsj.bz
13392
13386
 
@@ -13396,11 +13390,11 @@ githubusercontent.com
13396
13390
  githubpreview.dev
13397
13391
  github.io
13398
13392
 
13399
- // GitLab, Inc.
13393
+ // GitLab, Inc. : https://about.gitlab.com/
13400
13394
  // Submitted by Alex Hanselka <alex@gitlab.com>
13401
13395
  gitlab.io
13402
13396
 
13403
- // Gitplac.si - https://gitplac.si
13397
+ // Gitplac.si : https://gitplac.si
13404
13398
  // Submitted by Aljaž Starc <me@aljaxus.eu>
13405
13399
  gitapp.si
13406
13400
  gitpage.si
@@ -13538,26 +13532,9 @@ goip.de
13538
13532
 
13539
13533
  // Google, Inc.
13540
13534
  // Submitted by Shannon McCabe <public-suffix-editors@google.com>
13541
- blogspot.ae
13542
- blogspot.al
13543
- blogspot.am
13544
13535
  *.hosted.app
13545
13536
  *.run.app
13546
13537
  web.app
13547
- blogspot.com.ar
13548
- blogspot.co.at
13549
- blogspot.com.au
13550
- blogspot.ba
13551
- blogspot.be
13552
- blogspot.bg
13553
- blogspot.bj
13554
- blogspot.com.br
13555
- blogspot.com.by
13556
- blogspot.ca
13557
- blogspot.cf
13558
- blogspot.ch
13559
- blogspot.cl
13560
- blogspot.com.co
13561
13538
  *.0emm.com
13562
13539
  appspot.com
13563
13540
  *.r.appspot.com
@@ -13568,66 +13545,11 @@ googlecode.com
13568
13545
  pagespeedmobilizer.com
13569
13546
  withgoogle.com
13570
13547
  withyoutube.com
13571
- blogspot.cv
13572
- blogspot.com.cy
13573
- blogspot.cz
13574
- blogspot.de
13575
13548
  *.gateway.dev
13576
- blogspot.dk
13577
- blogspot.com.ee
13578
- blogspot.com.eg
13579
- blogspot.com.es
13580
- blogspot.fi
13581
- blogspot.fr
13582
13549
  cloud.goog
13583
13550
  translate.goog
13584
13551
  *.usercontent.goog
13585
- blogspot.gr
13586
- blogspot.hk
13587
- blogspot.hr
13588
- blogspot.hu
13589
- blogspot.co.id
13590
- blogspot.ie
13591
- blogspot.co.il
13592
- blogspot.in
13593
- blogspot.is
13594
- blogspot.it
13595
- blogspot.jp
13596
- blogspot.co.ke
13597
- blogspot.kr
13598
- blogspot.li
13599
- blogspot.lt
13600
- blogspot.lu
13601
- blogspot.md
13602
- blogspot.mk
13603
- blogspot.com.mt
13604
- blogspot.mx
13605
- blogspot.my
13606
13552
  cloudfunctions.net
13607
- blogspot.com.ng
13608
- blogspot.nl
13609
- blogspot.no
13610
- blogspot.co.nz
13611
- blogspot.pe
13612
- blogspot.pt
13613
- blogspot.qa
13614
- blogspot.re
13615
- blogspot.ro
13616
- blogspot.rs
13617
- blogspot.ru
13618
- blogspot.se
13619
- blogspot.sg
13620
- blogspot.si
13621
- blogspot.sk
13622
- blogspot.sn
13623
- blogspot.td
13624
- blogspot.com.tr
13625
- blogspot.tw
13626
- blogspot.ug
13627
- blogspot.co.uk
13628
- blogspot.com.uy
13629
- blogspot.vn
13630
- blogspot.co.za
13631
13553
 
13632
13554
  // Goupile : https://goupile.fr
13633
13555
  // Submitted by Niels Martignene <hello@goupile.fr>
@@ -13642,11 +13564,11 @@ pymnt.uk
13642
13564
  cloudapps.digital
13643
13565
  london.cloudapps.digital
13644
13566
 
13645
- // Government of the Netherlands: https://www.government.nl
13567
+ // Government of the Netherlands : https://www.government.nl
13646
13568
  // Submitted by <domeinnaam@minaz.nl>
13647
13569
  gov.nl
13648
13570
 
13649
- // Grafana Labs: https://grafana.com/
13571
+ // Grafana Labs : https://grafana.com/
13650
13572
  // Submitted by Platform Engineering <info@grafana.com>
13651
13573
  grafana-dev.net
13652
13574
 
@@ -13659,7 +13581,7 @@ grayjayleagues.com
13659
13581
  günstigbestellen.de
13660
13582
  günstigliefern.de
13661
13583
 
13662
- // Hakaran group: http://hakaran.cz
13584
+ // Hakaran group : http://hakaran.cz
13663
13585
  // Submitted by Arseniy Sokolov <security@hakaran.cz>
13664
13586
  fin.ci
13665
13587
  free.hr
@@ -13667,7 +13589,7 @@ caa.li
13667
13589
  ua.rs
13668
13590
  conf.se
13669
13591
 
13670
- // Häkkinen.fi
13592
+ // Häkkinen.fi : https://www.häkkinen.fi/
13671
13593
  // Submitted by Eero Häkkinen <Eero+psl@Häkkinen.fi>
13672
13594
  häkkinen.fi
13673
13595
 
@@ -13692,12 +13614,12 @@ hatenablog.jp
13692
13614
  hatenadiary.jp
13693
13615
  hatenadiary.org
13694
13616
 
13695
- // Heilbronn University of Applied Sciences - Faculty Informatics (GitLab Pages): https://www.hs-heilbronn.de
13617
+ // Heilbronn University of Applied Sciences - Faculty Informatics (GitLab Pages) : https://www.hs-heilbronn.de
13696
13618
  // Submitted by Richard Zowalla <it-admin@hs-heilbronn.de>
13697
13619
  pages.it.hs-heilbronn.de
13698
13620
  pages-research.it.hs-heilbronn.de
13699
13621
 
13700
- // HeiyuSpace: https://lazycat.cloud
13622
+ // HeiyuSpace : https://lazycat.cloud
13701
13623
  // Submitted by Xia Bin <admin@lazycat.cloud>
13702
13624
  heiyu.space
13703
13625
 
@@ -13711,9 +13633,8 @@ heliohost.us
13711
13633
  hepforge.org
13712
13634
 
13713
13635
  // Heroku : https://www.heroku.com/
13714
- // Submitted by Tom Maher <tmaher@heroku.com>
13636
+ // Submitted by Shumon Huque <public-dns@salesforce.com>
13715
13637
  herokuapp.com
13716
- herokussl.com
13717
13638
 
13718
13639
  // Heyflow : https://www.heyflow.com
13719
13640
  // Submitted by Mirko Nitschke <tech@heyflow.com>
@@ -13727,7 +13648,7 @@ ravendb.community
13727
13648
  development.run
13728
13649
  ravendb.run
13729
13650
 
13730
- // home.pl S.A.: https://home.pl
13651
+ // home.pl S.A. : https://home.pl
13731
13652
  // Submitted by Krzysztof Wolski <krzysztof.wolski@home.eu>
13732
13653
  homesklep.pl
13733
13654
 
@@ -13737,10 +13658,6 @@ homesklep.pl
13737
13658
  *.id.pub
13738
13659
  *.kin.pub
13739
13660
 
13740
- // Hong Kong Productivity Council: https://www.hkpc.org/
13741
- // Submitted by SECaaS Team <summchan@hkpc.org>
13742
- secaas.hk
13743
-
13744
13661
  // Hoplix : https://www.hoplix.com
13745
13662
  // Submitted by Danilo De Franco<info@hoplix.shop>
13746
13663
  hoplix.shop
@@ -13769,7 +13686,7 @@ ie.ua
13769
13686
  // HostyHosting : https://hostyhosting.com
13770
13687
  hostyhosting.io
13771
13688
 
13772
- // Hugging Face: https://huggingface.co
13689
+ // Hugging Face : https://huggingface.co
13773
13690
  // Submitted by Eliott Coyac <website@huggingface.co>
13774
13691
  hf.space
13775
13692
  static.hf.space
@@ -13871,9 +13788,18 @@ pixolino.com
13871
13788
  // Submitted by Vasiliy Sheredeko <piphon@gmail.com>
13872
13789
  na4u.ru
13873
13790
 
13874
- // IONOS SE : https://www.ionos.com/,
13875
- // IONOS Group SE: https://www.ionos-group.com/
13876
- // submitted by Henrik Willert <security@ionos.com>
13791
+ // Inventor Services : https://inventor.gg/
13792
+ // Submitted by Inventor Team <psl@inventor.gg>
13793
+ botdash.app
13794
+ botdash.dev
13795
+ botdash.gg
13796
+ botdash.net
13797
+ botda.sh
13798
+ botdash.xyz
13799
+
13800
+ // IONOS SE : https://www.ionos.com/
13801
+ // IONOS Group SE : https://www.ionos-group.com/
13802
+ // Submitted by Henrik Willert <security@ionos.com>
13877
13803
  apps-1and1.com
13878
13804
  live-website.com
13879
13805
  apps-1and1.net
@@ -14021,7 +13947,7 @@ khplay.nl
14021
13947
  // Submitted by Tomi Juntunen <erani@kapsi.fi>
14022
13948
  kapsi.fi
14023
13949
 
14024
- // Katholieke Universiteit Leuven: https://www.kuleuven.be
13950
+ // Katholieke Universiteit Leuven : https://www.kuleuven.be
14025
13951
  // Submitted by Abuse KU Leuven <abuse@kuleuven.be>
14026
13952
  ezproxy.kuleuven.be
14027
13953
  kuleuven.cloud
@@ -14039,7 +13965,7 @@ uni5.net
14039
13965
  // Submitted by Roy Keene <rkeene@knightpoint.com>
14040
13966
  knightpoint.systems
14041
13967
 
14042
- // KoobinEvent, SL: https://www.koobin.com
13968
+ // KoobinEvent, SL : https://www.koobin.com
14043
13969
  // Submitted by Iván Oliva <ivan.oliva@koobin.com>
14044
13970
  koobin.events
14045
13971
 
@@ -14064,10 +13990,6 @@ leadpages.co
14064
13990
  lpages.co
14065
13991
  lpusercontent.com
14066
13992
 
14067
- // Lelux.fi : https://lelux.fi/
14068
- // Submitted by Lelux Admin <publisuffix@lelux.site>
14069
- lelux.site
14070
-
14071
13993
  // libp2p project : https://libp2p.io
14072
13994
  // Submitted by Interplanetary Shipyard <domains@ipshipyard.com>
14073
13995
  libp2p.direct
@@ -14086,7 +14008,7 @@ co.network
14086
14008
  co.place
14087
14009
  co.technology
14088
14010
 
14089
- // linkyard ldt: https://www.linkyard.ch/
14011
+ // linkyard ldt : https://www.linkyard.ch/
14090
14012
  // Submitted by Mario Siegenthaler <mario.siegenthaler@linkyard.ch>
14091
14013
  linkyard-cloud.ch
14092
14014
  linkyard.cloud
@@ -14111,7 +14033,12 @@ ggff.net
14111
14033
  // Submitted by Lann Martin <security@localcert.dev>
14112
14034
  *.user.localcert.dev
14113
14035
 
14114
- // Lodz University of Technology LODMAN regional domains https://www.man.lodz.pl/dns
14036
+ // LocalCert : https://localcert.net
14037
+ // Submitted by William Harrison <psl@localcert.net>
14038
+ localcert.net
14039
+ localhostcert.net
14040
+
14041
+ // Lodz University of Technology LODMAN regional domains : https://www.man.lodz.pl/dns
14115
14042
  // Submitted by Piotr Wilk <dns@man.lodz.pl>
14116
14043
  lodz.pl
14117
14044
  pabianice.pl
@@ -14128,8 +14055,8 @@ loginline.io
14128
14055
  loginline.services
14129
14056
  loginline.site
14130
14057
 
14131
- // Lõhmus Family, The
14132
- // Submitted by Heiki Lõhmus <hostmaster at lohmus dot me>
14058
+ // Lõhmus Family, The : https://lohmus.me/
14059
+ // Submitted by Heiki Lõhmus <hostmaster@lohmus.me>
14133
14060
  lohmus.me
14134
14061
 
14135
14062
  // Lokalized : https://lokalized.nl
@@ -14204,7 +14131,7 @@ polyspace.com
14204
14131
  mayfirst.info
14205
14132
  mayfirst.org
14206
14133
 
14207
- // Maze Play: https://www.mazeplay.com
14134
+ // Maze Play : https://www.mazeplay.com
14208
14135
  // Submitted by Adam Humpherys <adam@mws.dev>
14209
14136
  mazeplay.com
14210
14137
 
@@ -14215,10 +14142,6 @@ mcdir.ru
14215
14142
  vps.mcdir.ru
14216
14143
  mcpre.ru
14217
14144
 
14218
- // mcpe.me : https://mcpe.me
14219
- // Submitted by Noa Heyl <hi@noa.dev>
14220
- mcpe.me
14221
-
14222
14145
  // Mediatech : https://mediatech.by
14223
14146
  // Submitted by Evgeniy Kozhuhovskiy <ugenk@mediatech.by>
14224
14147
  mediatech.by
@@ -14289,7 +14212,7 @@ trafficmanager.net
14289
14212
  blob.core.windows.net
14290
14213
  servicebus.windows.net
14291
14214
 
14292
- // MikroTik: https://mikrotik.com
14215
+ // MikroTik : https://mikrotik.com
14293
14216
  // Submitted by MikroTik SysAdmin Team <support@mikrotik.com>
14294
14217
  routingthecloud.com
14295
14218
  sn.mynetname.net
@@ -14346,6 +14269,11 @@ ui.nabu.casa
14346
14269
  // Net at Work Gmbh : https://www.netatwork.de
14347
14270
  // Submitted by Jan Jaeschke <jan.jaeschke@netatwork.de>
14348
14271
  cloud.nospamproxy.com
14272
+ o365.cloud.nospamproxy.com
14273
+
14274
+ // Net libre : https://www.netlib.re
14275
+ // Submitted by Philippe PITTOLI <security@netlib.re>
14276
+ netlib.re
14349
14277
 
14350
14278
  // Netfy Domains : https://netfy.domains
14351
14279
  // Submitted by Suranga Ranasinghe <security@mavicsoft.com>
@@ -14388,7 +14316,7 @@ us.ngrok.io
14388
14316
  ngrok.pizza
14389
14317
  ngrok.pro
14390
14318
 
14391
- // Nicolaus Copernicus University in Torun - MSK TORMAN (https://www.man.torun.pl)
14319
+ // Nicolaus Copernicus University in Torun - MSK TORMAN : https://www.man.torun.pl
14392
14320
  torun.pl
14393
14321
 
14394
14322
  // Nimbus Hosting Ltd. : https://www.nimbushosting.co.uk/
@@ -14513,8 +14441,6 @@ notion.site
14513
14441
  // Submitted by Steve Russell <steve@now-dns.com>
14514
14442
  dnsking.ch
14515
14443
  mypi.co
14516
- n4t.co
14517
- 001www.com
14518
14444
  myiphost.com
14519
14445
  forumz.info
14520
14446
  soundcast.me
@@ -14527,7 +14453,6 @@ vpndns.net
14527
14453
  dynserv.org
14528
14454
  now-dns.org
14529
14455
  x443.pw
14530
- now-dns.top
14531
14456
  ntdll.top
14532
14457
  freeddns.us
14533
14458
 
@@ -14544,7 +14469,7 @@ nyc.mn
14544
14469
  // Submitted by the prvcy.page Registry Team <info@o3o.foundation>
14545
14470
  prvcy.page
14546
14471
 
14547
- // Obl.ong : <https://obl.ong>
14472
+ // Obl.ong : https://obl.ong
14548
14473
  // Submitted by Reese Armstrong <team@obl.ong>
14549
14474
  obl.ong
14550
14475
 
@@ -14561,11 +14486,11 @@ omg.lol
14561
14486
  // Submitted by Cole Estep <cole@omnibond.com>
14562
14487
  cloudycluster.net
14563
14488
 
14564
- // OmniWe Limited: https://omniwe.com
14489
+ // OmniWe Limited : https://omniwe.com
14565
14490
  // Submitted by Vicary Archangel <vicary@omniwe.com>
14566
14491
  omniwe.site
14567
14492
 
14568
- // One.com: https://www.one.com/
14493
+ // One.com : https://www.one.com/
14569
14494
  // Submitted by Jacob Bunk Nielsen <jbn@one.com>
14570
14495
  123webseite.at
14571
14496
  123website.be
@@ -14609,7 +14534,7 @@ opencraft.hosting
14609
14534
  32-b.it
14610
14535
  64-b.it
14611
14536
 
14612
- // OpenResearch GmbH: https://openresearch.com/
14537
+ // OpenResearch GmbH : https://openresearch.com/
14613
14538
  // Submitted by Philipp Schmid <ops@openresearch.com>
14614
14539
  orsites.com
14615
14540
 
@@ -14633,12 +14558,12 @@ operaunite.com
14633
14558
  tech.orange
14634
14559
 
14635
14560
  // OsSav Technology Ltd. : https://ossav.com/
14636
- // TLD Nic: http://nic.can.re - TLD Whois Server: whois.can.re
14637
14561
  // Submitted by OsSav Technology Ltd. <support@ossav.com>
14562
+ // https://nic.can.re
14638
14563
  can.re
14639
14564
 
14640
- // Oursky Limited : https://authgear.com/, https://skygear.io/
14641
- // Submitted by Authgear Team <hello@authgear.com>, Skygear Developer <hello@skygear.io>
14565
+ // Oursky Limited : https://authgear.com/
14566
+ // Submitted by Authgear Team <hello@authgear.com> & Skygear Developer <hello@skygear.io>
14642
14567
  authgear-staging.com
14643
14568
  authgearapps.com
14644
14569
  skygearapp.com
@@ -14647,12 +14572,12 @@ skygearapp.com
14647
14572
  // Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
14648
14573
  outsystemscloud.com
14649
14574
 
14650
- // OVHcloud: https://ovhcloud.com
14575
+ // OVHcloud : https://ovhcloud.com
14651
14576
  // Submitted by Vincent Cassé <vincent.casse@ovhcloud.com>
14652
14577
  *.hosting.ovh.net
14653
14578
  *.webpaas.ovh.net
14654
14579
 
14655
- // OwnProvider GmbH: http://www.ownprovider.com
14580
+ // OwnProvider GmbH : http://www.ownprovider.com
14656
14581
  // Submitted by Jan Moennich <jan.moennich@ownprovider.com>
14657
14582
  ownprovider.com
14658
14583
  own.pm
@@ -14686,7 +14611,7 @@ pantheonsite.io
14686
14611
  // Submitted by Daniel Netzer <dan@paywhirl.com>
14687
14612
  *.paywhirl.com
14688
14613
 
14689
- // pcarrier.ca Software Inc: https://pcarrier.ca/
14614
+ // pcarrier.ca Software Inc : https://pcarrier.ca/
14690
14615
  // Submitted by Pierre Carrier <pc@rrier.ca>
14691
14616
  *.xmit.co
14692
14617
  xmit.dev
@@ -14721,9 +14646,8 @@ us.platform.sh
14721
14646
  *.platformsh.site
14722
14647
  *.tst.site
14723
14648
 
14724
- // Platter: https://platter.dev
14649
+ // Platter : https://platter.dev
14725
14650
  // Submitted by Patrick Flor <patrick@platter.dev>
14726
- platter-app.com
14727
14651
  platter-app.dev
14728
14652
  platterp.us
14729
14653
 
@@ -14767,17 +14691,17 @@ protonet.io
14767
14691
  chirurgiens-dentistes-en-france.fr
14768
14692
  byen.site
14769
14693
 
14770
- // pubtls.org: https://www.pubtls.org
14694
+ // pubtls.org : https://www.pubtls.org
14771
14695
  // Submitted by Kor Nielsen <kor@pubtls.org>
14772
14696
  pubtls.org
14773
14697
 
14774
- // PythonAnywhere LLP: https://www.pythonanywhere.com
14698
+ // PythonAnywhere LLP : https://www.pythonanywhere.com
14775
14699
  // Submitted by Giles Thomas <giles@pythonanywhere.com>
14776
14700
  pythonanywhere.com
14777
14701
  eu.pythonanywhere.com
14778
14702
 
14779
14703
  // QA2
14780
- // Submitted by Daniel Dent (https://www.danieldent.com/)
14704
+ // Submitted by Daniel Dent : https://www.danieldent.com/
14781
14705
  qa2.com
14782
14706
 
14783
14707
  // QCX
@@ -14806,7 +14730,7 @@ qualifioapp.com
14806
14730
  // Submitted by Vasyl Tsalko <vtsalko@qualityunit.com>
14807
14731
  ladesk.com
14808
14732
 
14809
- // QuickBackend: https://www.quickbackend.com
14733
+ // QuickBackend : https://www.quickbackend.com
14810
14734
  // Submitted by Dani Biro <dani@pymet.com>
14811
14735
  qbuser.com
14812
14736
 
@@ -14824,7 +14748,7 @@ vaporcloud.io
14824
14748
  rackmaze.com
14825
14749
  rackmaze.net
14826
14750
 
14827
- // Rad Web Hosting: https://radwebhosting.com
14751
+ // Rad Web Hosting : https://radwebhosting.com
14828
14752
  // Submitted by Scott Claeys <s.claeys@radwebhosting.com>
14829
14753
  cloudsite.builders
14830
14754
  myradweb.net
@@ -14859,7 +14783,7 @@ readthedocs.io
14859
14783
  // Submitted by Tim Kramer <tkramer@rhcloud.com>
14860
14784
  rhcloud.com
14861
14785
 
14862
- // Redgate Software: https://red-gate.com
14786
+ // Redgate Software : https://red-gate.com
14863
14787
  // Submitted by Andrew Farries <andrew.farries@red-gate.com>
14864
14788
  instances.spawn.cc
14865
14789
 
@@ -14935,7 +14859,13 @@ git-pages.rit.edu
14935
14859
  // Submitted by Neil Hanlon <neil@resf.org>
14936
14860
  rocky.page
14937
14861
 
14938
- // Rusnames Limited: http://rusnames.ru/
14862
+ // Ruhr University Bochum : https://www.ruhr-uni-bochum.de/
14863
+ // Submitted by Andreas Jobs <noc@ruhr-uni-bochum.de>
14864
+ rub.de
14865
+ ruhr-uni-bochum.de
14866
+ io.noc.ruhr-uni-bochum.de
14867
+
14868
+ // Rusnames Limited : http://rusnames.ru/
14939
14869
  // Submitted by Sergey Zotov <admin@rusnames.ru>
14940
14870
  биз.рус
14941
14871
  ком.рус
@@ -15006,7 +14936,7 @@ x0.to
15006
14936
  from.tv
15007
14937
  sakura.tv
15008
14938
 
15009
- // Salesforce.com, Inc. https://salesforce.com/
14939
+ // Salesforce.com, Inc. : https://salesforce.com/
15010
14940
  // Submitted by Salesforce Public Suffix List Team <public-suffix-list@salesforce.com>
15011
14941
  *.builder.code.com
15012
14942
  *.dev-builder.code.com
@@ -15065,7 +14995,7 @@ dedibox.fr
15065
14995
  // Submitted by Hanno Böck <hanno@schokokeks.org>
15066
14996
  schokokeks.net
15067
14997
 
15068
- // Scottish Government: https://www.gov.scot
14998
+ // Scottish Government : https://www.gov.scot
15069
14999
  // Submitted by Martin Ellis <martin.ellis@gov.scot>
15070
15000
  gov.scot
15071
15001
  service.gov.scot
@@ -15099,7 +15029,7 @@ seidat.net
15099
15029
  // Submitted by Yuriy Romadin <contact@sellfy.com>
15100
15030
  sellfy.store
15101
15031
 
15102
- // Sendmsg: https://www.sendmsg.co.il
15032
+ // Sendmsg : https://www.sendmsg.co.il
15103
15033
  // Submitted by Assaf Stern <domains@comstar.co.il>
15104
15034
  minisite.ms
15105
15035
 
@@ -15107,7 +15037,7 @@ minisite.ms
15107
15037
  // Submitted by Felix Mönckemeyer <f.moenckemeyer@senseering.de>
15108
15038
  senseering.net
15109
15039
 
15110
- // Servebolt AS: https://servebolt.com
15040
+ // Servebolt AS : https://servebolt.com
15111
15041
  // Submitted by Daniel Kjeserud <cloudops@servebolt.com>
15112
15042
  servebolt.cloud
15113
15043
 
@@ -15125,10 +15055,6 @@ as.sh.cn
15125
15055
  // Submitted by Nyoom <admin@sheezy.art>
15126
15056
  sheezy.games
15127
15057
 
15128
- // ShiftEdit : https://shiftedit.net/
15129
- // Submitted by Adam Jimenez <adam@shiftcreate.com>
15130
- shiftedit.io
15131
-
15132
15058
  // Shopblocks : http://www.shopblocks.com/
15133
15059
  // Submitted by Alex Bowers <alex@shopblocks.com>
15134
15060
  myshopblocks.com
@@ -15166,7 +15092,7 @@ siteleaf.net
15166
15092
  // Submitted by Aral Balkan <aral@small-tech.org>
15167
15093
  small-web.org
15168
15094
 
15169
- // Smallregistry by Promopixel SARL: https://www.smallregistry.net
15095
+ // Smallregistry by Promopixel SARL : https://www.smallregistry.net
15170
15096
  // Former AFNIC's SLDs
15171
15097
  // Submitted by Jérôme Lipowicz <support@promopixel.com>
15172
15098
  aeroport.fr
@@ -15212,15 +15138,11 @@ srht.site
15212
15138
  apps.lair.io
15213
15139
  *.stolos.io
15214
15140
 
15215
- // SpaceKit : https://www.spacekit.io/
15216
- // Submitted by Reza Akhavan <spacekit.io@gmail.com>
15217
- spacekit.io
15218
-
15219
15141
  // SparrowHost : https://sparrowhost.in/
15220
15142
  // Submitted by Anant Pandey <info@sparrowhost.in>
15221
15143
  ind.mom
15222
15144
 
15223
- // SpeedPartner GmbH: https://www.speedpartner.de/
15145
+ // SpeedPartner GmbH : https://www.speedpartner.de/
15224
15146
  // Submitted by Stefan Neufeind <info@speedpartner.de>
15225
15147
  customer.speedpartner.de
15226
15148
 
@@ -15256,8 +15178,8 @@ w-staticblitz.com
15256
15178
  // Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
15257
15179
  stackhero-network.com
15258
15180
 
15259
- // STACKIT : https://www.stackit.de/en/
15260
- // Submitted by STACKIT-DNS Team (Simon Stier) <stackit-dns@mail.schwarz>
15181
+ // STACKIT GmbH & Co. KG : https://www.stackit.de/en/
15182
+ // Submitted by STACKIT-DNS Team (Simon Stier) <dns@stackit.cloud>
15261
15183
  runs.onstackit.cloud
15262
15184
  stackit.gg
15263
15185
  stackit.rocks
@@ -15304,7 +15226,7 @@ storj.farm
15304
15226
  strapiapp.com
15305
15227
  media.strapiapp.com
15306
15228
 
15307
- // Strategic System Consulting (eApps Hosting): https://www.eapps.com/
15229
+ // Strategic System Consulting (eApps Hosting) : https://www.eapps.com/
15308
15230
  // Submitted by Alex Oancea <aoancea@cloudscale365.com>
15309
15231
  vps-host.net
15310
15232
  atl.jelastic.vps-host.net
@@ -15326,7 +15248,7 @@ user.srcf.net
15326
15248
  // Submitted by Silke Hofstra <syscom@snt.utwente.nl>
15327
15249
  utwente.io
15328
15250
 
15329
- // Sub 6 Limited: http://www.sub6.com
15251
+ // Sub 6 Limited : http://www.sub6.com
15330
15252
  // Submitted by Dan Miller <dm@sub6.com>
15331
15253
  temp-dns.com
15332
15254
 
@@ -15374,7 +15296,7 @@ taifun-dns.de
15374
15296
  ts.net
15375
15297
  *.c.ts.net
15376
15298
 
15377
- // TASK geographical domains (https://www.task.gda.pl/uslugi/dns)
15299
+ // TASK geographical domains : https://task.gda.pl/en/services/for-entrepreneurs/
15378
15300
  gda.pl
15379
15301
  gdansk.pl
15380
15302
  gdynia.pl
@@ -15390,7 +15312,7 @@ taveusercontent.com
15390
15312
  p.tawk.email
15391
15313
  p.tawkto.email
15392
15314
 
15393
- // team.blue https://team.blue
15315
+ // team.blue : https://team.blue
15394
15316
  // Submitted by Cedric Dubois <cedric.dubois@team.blue>
15395
15317
  site.tb-hosting.com
15396
15318
 
@@ -15534,14 +15456,10 @@ org.yt
15534
15456
  // Submitted by Marko Ivanovic <kormang@hotmail.rs>
15535
15457
  rs.ba
15536
15458
 
15537
- // University of Bielsko-Biala regional domain: http://dns.bielsko.pl/
15459
+ // University of Bielsko-Biala regional domain : http://dns.bielsko.pl/
15538
15460
  // Submitted by Marcin <dns@ath.bielsko.pl>
15539
15461
  bielsko.pl
15540
15462
 
15541
- // Upli : https://upli.io
15542
- // Submitted by Lenny Bakkalian <lenny.bakkalian@gmail.com>
15543
- upli.io
15544
-
15545
15463
  // urown.net : https://urown.net
15546
15464
  // Submitted by Hostmaster <hostmaster@urown.net>
15547
15465
  urown.cloud
@@ -15580,7 +15498,7 @@ router.management
15580
15498
  // Submitted by Adnan RIHAN <hostmaster@v-info.info>
15581
15499
  v-info.info
15582
15500
 
15583
- // Voorloper.com: https://voorloper.com
15501
+ // Voorloper.com : https://voorloper.com
15584
15502
  // Submitted by Nathan van Bakel <info@voorloper.com>
15585
15503
  voorloper.cloud
15586
15504
 
@@ -15639,8 +15557,8 @@ toolforge.org
15639
15557
  wmcloud.org
15640
15558
  wmflabs.org
15641
15559
 
15642
- // William Harrison : https://wdh.gg
15643
- // Submitted by William Harrison <william@harrison.id.au>
15560
+ // William Harrison : https://wharrison.com.au
15561
+ // Submitted by William Harrison <psl@wharrison.com.au>
15644
15562
  wdh.app
15645
15563
 
15646
15564
  // WISP : https://wisp.gg
@@ -15681,7 +15599,7 @@ weeklylottery.org.uk
15681
15599
  wpenginepowered.com
15682
15600
  js.wpenginepowered.com
15683
15601
 
15684
- // XenonCloud GbR: https://xenoncloud.net
15602
+ // XenonCloud GbR : https://xenoncloud.net
15685
15603
  // Submitted by Julian Uphoff <publicsuffixlist@xenoncloud.net>
15686
15604
  half.host
15687
15605
 
@@ -15711,10 +15629,6 @@ official.academy
15711
15629
  // Submitted by Stefano Rivera <stefano@yola.com>
15712
15630
  yolasite.com
15713
15631
 
15714
- // Yombo : https://yombo.net
15715
- // Submitted by Mitch Schwenk <mitch@yombo.net>
15716
- yombo.me
15717
-
15718
15632
  // Yunohost : https://yunohost.org
15719
15633
  // Submitted by Valentin Grimaud <security@yunohost.org>
15720
15634
  ynh.fr