public_suffix 3.0.3 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db25a54fc0b67b7906c186324185f71d08f848e0f520b6e7b591429505eaf7bc
4
- data.tar.gz: ae070e1611d89bfa664188ccca18606c0a482cd0e09a2ccf7d73343575ee5f9d
3
+ metadata.gz: 2882fdd03684973d58da7d6ab31972b3e63a9a1be9830f9ffdea4e0b3b1388cb
4
+ data.tar.gz: b0a3773d8cb10cee6f23b5b2cca3443b246f29dda5d7a8a2c2dd4081ab5bc2e3
5
5
  SHA512:
6
- metadata.gz: ddf6ed9d0fb235f8747d16a8861fb0427ce57f1ccf33e607bab3406fabbfea44b6ef670fd0bb49f3d1f12a8e1fdae2c68285d4e4ce09dd6d4bd7508f0e94ec41
7
- data.tar.gz: ed737ad2c839c513389ea2cdb304eb318420dc7fd383713d156d0dd8684db12700a45e5dba1f5616b7dec38deec5526477f4c3502447cef87c3bcc49958eb1ba
6
+ metadata.gz: f3464d49567b455953707990adf15f09b46def015cc15ca481960b780eb0cd6e3b4abe0c7c3c026303ebece570b99a3569e652dc0ff479f4100c3161c25f8931
7
+ data.tar.gz: 8a77d9b3ad305dad91b1433e52eab8b6f3b6c5ecd91e4f15c02d245fe400cd8b06de1288a2680c92e3281024c81571da0f5fb66816b4280f010ee9e161389381
@@ -63,11 +63,6 @@ Metrics/ParameterLists:
63
63
  Metrics/PerceivedComplexity:
64
64
  Enabled: false
65
65
 
66
- # [codesmell]
67
- # I don't really get the point of this cop.
68
- Performance/RedundantMerge:
69
- Enabled: false
70
-
71
66
  # Do not use "and" or "or" in conditionals, but for readability we can use it
72
67
  # to chain executions. Just beware of operator order.
73
68
  Style/AndOr:
@@ -123,12 +118,12 @@ Style/RescueStandardError:
123
118
 
124
119
  # Array indentation should be considered like MultilineMethodCallIndentation indentation
125
120
  # and use 4 spaces instead of 2.
126
- Layout/IndentArray:
121
+ Layout/IndentFirstArrayElement:
127
122
  IndentationWidth: 4
128
123
 
129
124
  # Hash indentation should be considered like MultilineMethodCallIndentation indentation
130
125
  # and use 4 spaces instead of 2.
131
- Layout/IndentHash:
126
+ Layout/IndentFirstHashElement:
132
127
  IndentationWidth: 4
133
128
 
134
129
  # Multi-line differs from standard indentation, they are indented twice.
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- publicsuffix
1
+ -global
data/.travis.yml CHANGED
@@ -1,16 +1,15 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.1
5
- - 2.2
6
4
  - 2.3
7
5
  - 2.4
8
6
  - 2.5
7
+ - 2.6
9
8
  - jruby-9.1.5.0
10
9
  - ruby-head
11
10
 
12
11
  env:
13
- - COVERALL=1
12
+ - COVERAGE=1
14
13
 
15
14
  cache:
16
15
  - bundler
@@ -18,8 +17,8 @@ cache:
18
17
  matrix:
19
18
  allow_failures:
20
19
  - rvm: ruby-head
21
- - rvm: jruby-9.1.0.0
20
+ - rvm: jruby-9.1.5.0
22
21
 
23
22
  before_install:
24
- - rvm get latest
23
+ - gem update --system
25
24
  - gem install bundler
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ #### Release 3.1.0
5
+
6
+ - CHANGED: Updated definitions.
7
+ - CHANGED: Minimum Ruby version is 2.3
8
+ - CHANGED: Upgraded to Bundler 2.x
9
+
10
+
4
11
  #### Release 3.0.3
5
12
 
6
13
  - CHANGED: Updated definitions.
data/Gemfile CHANGED
@@ -1,8 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source "https://rubygems.org"
2
4
 
3
5
  gemspec
4
6
 
5
- gem "coveralls", require: false
7
+ gem "codecov", require: false
6
8
  gem "minitest"
7
9
  gem "minitest-reporters"
8
10
  gem "rubocop", require: false
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
1
+ Copyright (c) 2009-2019 Simone Carletti <weppos@weppos.net>
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -197,6 +197,6 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
197
197
 
198
198
  ## License
199
199
 
200
- Copyright (c) 2009-2018 Simone Carletti. This is Free Software distributed under the MIT license.
200
+ Copyright (c) 2009-2019 Simone Carletti. This is Free Software distributed under the MIT license.
201
201
 
202
202
  The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
 
3
5
  # By default, run tests and linter.
@@ -39,7 +41,7 @@ desc "Downloads the Public Suffix List file from the repository and stores it lo
39
41
  task :"update-list" do
40
42
  require "net/http"
41
43
 
42
- DEFINITION_URL = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat".freeze
44
+ DEFINITION_URL = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat"
43
45
 
44
46
  File.open("data/list.txt", "w+") do |f|
45
47
  response = Net::HTTP.get_response(URI.parse(DEFINITION_URL))
data/bin/console CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require "bundler/setup"
4
5
  require "public_suffix"
data/data/list.txt CHANGED
@@ -155,8 +155,13 @@ mil.al
155
155
  net.al
156
156
  org.al
157
157
 
158
- // am : https://en.wikipedia.org/wiki/.am
158
+ // am : https://www.amnic.net/policy/en/Policy_EN.pdf
159
159
  am
160
+ co.am
161
+ com.am
162
+ commune.am
163
+ net.am
164
+ org.am
160
165
 
161
166
  // ao : https://en.wikipedia.org/wiki/.ao
162
167
  // http://www.dns.ao/REGISTR.DOC
@@ -551,6 +556,7 @@ niteroi.br
551
556
  not.br
552
557
  ntr.br
553
558
  odo.br
559
+ ong.br
554
560
  org.br
555
561
  osasco.br
556
562
  palmas.br
@@ -580,6 +586,7 @@ slz.br
580
586
  sorocaba.br
581
587
  srv.br
582
588
  taxi.br
589
+ tc.br
583
590
  teo.br
584
591
  the.br
585
592
  tmp.br
@@ -983,17 +990,16 @@ fm
983
990
  fo
984
991
 
985
992
  // fr : http://www.afnic.fr/
986
- // domaines descriptifs : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-descriptifs
993
+ // domaines descriptifs : https://www.afnic.fr/medias/documents/Cadre_legal/Afnic_Naming_Policy_12122016_VEN.pdf
987
994
  fr
988
- com.fr
989
995
  asso.fr
996
+ com.fr
997
+ gouv.fr
990
998
  nom.fr
991
999
  prd.fr
992
- presse.fr
993
1000
  tm.fr
994
- // domaines sectoriels : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-sectoriels
1001
+ // domaines sectoriels : https://www.afnic.fr/en/products-and-services/the-fr-tld/sector-based-fr-domains-4.html
995
1002
  aeroport.fr
996
- assedic.fr
997
1003
  avocat.fr
998
1004
  avoues.fr
999
1005
  cci.fr
@@ -1001,7 +1007,6 @@ chambagri.fr
1001
1007
  chirurgiens-dentistes.fr
1002
1008
  experts-comptables.fr
1003
1009
  geometre-expert.fr
1004
- gouv.fr
1005
1010
  greta.fr
1006
1011
  huissier-justice.fr
1007
1012
  medecin.fr
@@ -1413,9 +1418,9 @@ taa.it
1413
1418
  tos.it
1414
1419
  toscana.it
1415
1420
  trentin-sud-tirol.it
1416
- trentin-süd-tirol.it
1421
+ trentin-süd-tirol.it
1417
1422
  trentin-sudtirol.it
1418
- trentin-südtirol.it
1423
+ trentin-südtirol.it
1419
1424
  trentin-sued-tirol.it
1420
1425
  trentin-suedtirol.it
1421
1426
  trentino-a-adige.it
@@ -1425,9 +1430,9 @@ trentino-altoadige.it
1425
1430
  trentino-s-tirol.it
1426
1431
  trentino-stirol.it
1427
1432
  trentino-sud-tirol.it
1428
- trentino-süd-tirol.it
1433
+ trentino-süd-tirol.it
1429
1434
  trentino-sudtirol.it
1430
- trentino-südtirol.it
1435
+ trentino-südtirol.it
1431
1436
  trentino-sued-tirol.it
1432
1437
  trentino-suedtirol.it
1433
1438
  trentino.it
@@ -1438,15 +1443,15 @@ trentinoaltoadige.it
1438
1443
  trentinos-tirol.it
1439
1444
  trentinostirol.it
1440
1445
  trentinosud-tirol.it
1441
- trentinosüd-tirol.it
1446
+ trentinosüd-tirol.it
1442
1447
  trentinosudtirol.it
1443
- trentinosüdtirol.it
1448
+ trentinosüdtirol.it
1444
1449
  trentinosued-tirol.it
1445
1450
  trentinosuedtirol.it
1446
1451
  trentinsud-tirol.it
1447
- trentinsüd-tirol.it
1452
+ trentinsüd-tirol.it
1448
1453
  trentinsudtirol.it
1449
- trentinsüdtirol.it
1454
+ trentinsüdtirol.it
1450
1455
  trentinsued-tirol.it
1451
1456
  trentinsuedtirol.it
1452
1457
  tuscany.it
@@ -1463,13 +1468,13 @@ valleaosta.it
1463
1468
  valled-aosta.it
1464
1469
  valledaosta.it
1465
1470
  vallee-aoste.it
1466
- vallée-aoste.it
1471
+ vallée-aoste.it
1467
1472
  vallee-d-aoste.it
1468
- vallée-d-aoste.it
1473
+ vallée-d-aoste.it
1469
1474
  valleeaoste.it
1470
- valléeaoste.it
1475
+ valléeaoste.it
1471
1476
  valleedaoste.it
1472
- valléedaoste.it
1477
+ valléedaoste.it
1473
1478
  vao.it
1474
1479
  vda.it
1475
1480
  ven.it
@@ -1503,7 +1508,7 @@ av.it
1503
1508
  avellino.it
1504
1509
  ba.it
1505
1510
  balsan-sudtirol.it
1506
- balsan-südtirol.it
1511
+ balsan-südtirol.it
1507
1512
  balsan-suedtirol.it
1508
1513
  balsan.it
1509
1514
  bari.it
@@ -1522,7 +1527,7 @@ bologna.it
1522
1527
  bolzano-altoadige.it
1523
1528
  bolzano.it
1524
1529
  bozen-sudtirol.it
1525
- bozen-südtirol.it
1530
+ bozen-südtirol.it
1526
1531
  bozen-suedtirol.it
1527
1532
  bozen.it
1528
1533
  br.it
@@ -1531,7 +1536,7 @@ brindisi.it
1531
1536
  bs.it
1532
1537
  bt.it
1533
1538
  bulsan-sudtirol.it
1534
- bulsan-südtirol.it
1539
+ bulsan-südtirol.it
1535
1540
  bulsan-suedtirol.it
1536
1541
  bulsan.it
1537
1542
  bz.it
@@ -1551,9 +1556,9 @@ catanzaro.it
1551
1556
  cb.it
1552
1557
  ce.it
1553
1558
  cesena-forli.it
1554
- cesena-forlì.it
1559
+ cesena-forlì.it
1555
1560
  cesenaforli.it
1556
- cesenaforlì.it
1561
+ cesenaforlì.it
1557
1562
  ch.it
1558
1563
  chieti.it
1559
1564
  ci.it
@@ -1584,9 +1589,9 @@ florence.it
1584
1589
  fm.it
1585
1590
  foggia.it
1586
1591
  forli-cesena.it
1587
- forlì-cesena.it
1592
+ forlì-cesena.it
1588
1593
  forlicesena.it
1589
- forlìcesena.it
1594
+ forlìcesena.it
1590
1595
  fr.it
1591
1596
  frosinone.it
1592
1597
  ge.it
@@ -1717,7 +1722,7 @@ sp.it
1717
1722
  sr.it
1718
1723
  ss.it
1719
1724
  suedtirol.it
1720
- südtirol.it
1725
+ südtirol.it
1721
1726
  sv.it
1722
1727
  ta.it
1723
1728
  taranto.it
@@ -3789,10 +3794,18 @@ gov.lr
3789
3794
  org.lr
3790
3795
  net.lr
3791
3796
 
3792
- // ls : https://en.wikipedia.org/wiki/.ls
3797
+ // ls : http://www.nic.ls/
3798
+ // Confirmed by registry <lsadmin@nic.ls>
3793
3799
  ls
3800
+ ac.ls
3801
+ biz.ls
3794
3802
  co.ls
3803
+ edu.ls
3804
+ gov.ls
3805
+ info.ls
3806
+ net.ls
3795
3807
  org.ls
3808
+ sc.ls
3796
3809
 
3797
3810
  // lt : https://en.wikipedia.org/wiki/.lt
3798
3811
  lt
@@ -4650,9 +4663,6 @@ web.ni
4650
4663
  // ccTLD for the Netherlands
4651
4664
  nl
4652
4665
 
4653
- // BV.nl will be a registry for dutch BV's (besloten vennootschap)
4654
- bv.nl
4655
-
4656
4666
  // no : http://www.norid.no/regelverk/index.en.html
4657
4667
  // The Norwegian registry has declined to notify us of updates. The web pages
4658
4668
  // referenced below are the official source of the data. There is also an
@@ -5882,17 +5892,15 @@ int.ru
5882
5892
  mil.ru
5883
5893
  test.ru
5884
5894
 
5885
- // rw : http://www.nic.rw/cgi-bin/policy.pl
5895
+ // rw : https://www.ricta.org.rw/sites/default/files/resources/registry_registrar_contract_0.pdf
5886
5896
  rw
5887
- gov.rw
5888
- net.rw
5889
- edu.rw
5890
5897
  ac.rw
5891
- com.rw
5892
5898
  co.rw
5893
- int.rw
5899
+ coop.rw
5900
+ gov.rw
5894
5901
  mil.rw
5895
- gouv.rw
5902
+ net.rw
5903
+ org.rw
5896
5904
 
5897
5905
  // sa : http://www.nic.net.sa/
5898
5906
  sa
@@ -6182,34 +6190,33 @@ org.to
6182
6190
  edu.to
6183
6191
  mil.to
6184
6192
 
6185
- // subTLDs: https://www.nic.tr/forms/eng/policies.pdf
6186
- // and: https://www.nic.tr/forms/politikalar.pdf
6187
- // Submitted by <mehmetgurevin@gmail.com>
6193
+ // tr : https://nic.tr/
6194
+ // https://nic.tr/forms/eng/policies.pdf
6195
+ // https://nic.tr/index.php?USRACTN=PRICELST
6188
6196
  tr
6189
- com.tr
6190
- info.tr
6191
- biz.tr
6192
- net.tr
6193
- org.tr
6194
- web.tr
6195
- gen.tr
6196
- tv.tr
6197
6197
  av.tr
6198
- dr.tr
6199
6198
  bbs.tr
6200
- name.tr
6201
- tel.tr
6202
- gov.tr
6203
6199
  bel.tr
6204
- pol.tr
6200
+ biz.tr
6201
+ com.tr
6202
+ dr.tr
6203
+ edu.tr
6204
+ gen.tr
6205
+ gov.tr
6206
+ info.tr
6205
6207
  mil.tr
6206
6208
  k12.tr
6207
- edu.tr
6208
6209
  kep.tr
6209
-
6210
+ name.tr
6211
+ net.tr
6212
+ org.tr
6213
+ pol.tr
6214
+ tel.tr
6215
+ tsk.tr
6216
+ tv.tr
6217
+ web.tr
6210
6218
  // Used by Northern Cyprus
6211
6219
  nc.tr
6212
-
6213
6220
  // Used by government agencies of Northern Cyprus
6214
6221
  gov.nc.tr
6215
6222
 
@@ -7098,9 +7105,6 @@ accountants
7098
7105
  // aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG
7099
7106
  aco
7100
7107
 
7101
- // active : 2014-05-01 Active Network, LLC
7102
- active
7103
-
7104
7108
  // actor : 2013-12-12 United TLD Holdco Ltd.
7105
7109
  actor
7106
7110
 
@@ -7401,9 +7405,6 @@ black
7401
7405
  // blackfriday : 2014-01-16 Uniregistry, Corp.
7402
7406
  blackfriday
7403
7407
 
7404
- // blanco : 2015-07-16 BLANCO GmbH + Co KG
7405
- blanco
7406
-
7407
7408
  // blockbuster : 2015-07-30 Dish DBS Corporation
7408
7409
  blockbuster
7409
7410
 
@@ -7938,9 +7939,6 @@ dodge
7938
7939
  // dog : 2014-12-04 Binky Moon, LLC
7939
7940
  dog
7940
7941
 
7941
- // doha : 2014-09-18 Communications Regulatory Authority (CRA)
7942
- doha
7943
-
7944
7942
  // domains : 2013-10-17 Binky Moon, LLC
7945
7943
  domains
7946
7944
 
@@ -8013,9 +8011,6 @@ engineering
8013
8011
  // enterprises : 2013-09-20 Binky Moon, LLC
8014
8012
  enterprises
8015
8013
 
8016
- // epost : 2015-07-23 Deutsche Post AG
8017
- epost
8018
-
8019
8014
  // epson : 2014-12-04 Seiko Epson Corporation
8020
8015
  epson
8021
8016
 
@@ -8343,9 +8338,6 @@ golf
8343
8338
  // goo : 2014-12-18 NTT Resonant Inc.
8344
8339
  goo
8345
8340
 
8346
- // goodhands : 2015-07-31 Allstate Fire and Casualty Insurance Company
8347
- goodhands
8348
-
8349
8341
  // goodyear : 2015-07-02 The Goodyear Tire & Rubber Company
8350
8342
  goodyear
8351
8343
 
@@ -8646,9 +8638,6 @@ jewelry
8646
8638
  // jio : 2015-04-02 Reliance Industries Limited
8647
8639
  jio
8648
8640
 
8649
- // jlc : 2014-12-04 Richemont DNS Inc.
8650
- jlc
8651
-
8652
8641
  // jll : 2015-04-02 Jones Lang LaSalle Incorporated
8653
8642
  jll
8654
8643
 
@@ -9291,9 +9280,6 @@ page
9291
9280
  // panasonic : 2015-07-30 Panasonic Corporation
9292
9281
  panasonic
9293
9282
 
9294
- // panerai : 2014-11-07 Richemont DNS Inc.
9295
- panerai
9296
-
9297
9283
  // paris : 2014-01-30 City of Paris
9298
9284
  paris
9299
9285
 
@@ -9846,9 +9832,6 @@ soy
9846
9832
  // space : 2014-04-03 DotSpace Inc.
9847
9833
  space
9848
9834
 
9849
- // spiegel : 2014-02-05 SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG
9850
- spiegel
9851
-
9852
9835
  // sport : 2017-11-16 Global Association of International Sports Federations (GAISF)
9853
9836
  sport
9854
9837
 
@@ -9882,9 +9865,6 @@ statebank
9882
9865
  // statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
9883
9866
  statefarm
9884
9867
 
9885
- // statoil : 2014-12-04 Statoil ASA
9886
- statoil
9887
-
9888
9868
  // stc : 2014-10-09 Saudi Telecom Company
9889
9869
  stc
9890
9870
 
@@ -9996,9 +9976,6 @@ tech
9996
9976
  // technology : 2013-09-13 Binky Moon, LLC
9997
9977
  technology
9998
9978
 
9999
- // telecity : 2015-02-19 TelecityGroup International Limited
10000
- telecity
10001
-
10002
9979
  // telefonica : 2014-10-16 Telefónica S.A.
10003
9980
  telefonica
10004
9981
 
@@ -10206,9 +10183,6 @@ visa
10206
10183
  // vision : 2013-12-05 Binky Moon, LLC
10207
10184
  vision
10208
10185
 
10209
- // vista : 2014-09-18 Vistaprint Limited
10210
- vista
10211
-
10212
10186
  // vistaprint : 2014-09-18 Vistaprint Limited
10213
10187
  vistaprint
10214
10188
 
@@ -10692,9 +10666,6 @@ zero
10692
10666
  // zip : 2014-05-08 Charleston Road Registry Inc.
10693
10667
  zip
10694
10668
 
10695
- // zippo : 2015-07-02 Zadco Company
10696
- zippo
10697
-
10698
10669
  // zone : 2013-11-14 Binky Moon, LLC
10699
10670
  zone
10700
10671
 
@@ -10716,6 +10687,10 @@ ltd.ua
10716
10687
  // Submitted by Przemyslaw Plewa <it-admin@domena.pl>
10717
10688
  beep.pl
10718
10689
 
10690
+ // alboto.ca : http://alboto.ca
10691
+ // Submitted by Anton Avramov <avramov@alboto.ca>
10692
+ barsy.ca
10693
+
10719
10694
  // Alces Software Ltd : http://alces-software.com
10720
10695
  // Submitted by Mark J. Titorenko <mark.titorenko@alces-software.com>
10721
10696
  *.compute.estate
@@ -10739,6 +10714,7 @@ us-east-1.amazonaws.com
10739
10714
  // Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
10740
10715
  // Submitted by Luke Wells <psl-maintainers@amazon.com>
10741
10716
  cn-north-1.eb.amazonaws.com.cn
10717
+ cn-northwest-1.eb.amazonaws.com.cn
10742
10718
  elasticbeanstalk.com
10743
10719
  ap-northeast-1.elasticbeanstalk.com
10744
10720
  ap-northeast-2.elasticbeanstalk.com
@@ -10825,6 +10801,10 @@ s3-website.us-east-2.amazonaws.com
10825
10801
  t3l3p0rt.net
10826
10802
  tele.amune.org
10827
10803
 
10804
+ // Apigee : https://apigee.com/
10805
+ // Submitted by Apigee Security Team <security@apigee.com>
10806
+ apigee.io
10807
+
10828
10808
  // Aptible : https://www.aptible.com/
10829
10809
  // Submitted by Thomas Orozco <thomas@aptible.com>
10830
10810
  on-aptible.com
@@ -10844,6 +10824,12 @@ sweetpepper.org
10844
10824
  // Submitted by Vincent Tseng <vincenttseng@asustor.com>
10845
10825
  myasustor.com
10846
10826
 
10827
+ // Automattic Inc. : https://automattic.com/
10828
+ // Submitted by Alex Concha <alex.concha@automattic.com>
10829
+ go-vip.co
10830
+ go-vip.net
10831
+ wpcomstaging.com
10832
+
10847
10833
  // AVM : https://avm.de
10848
10834
  // Submitted by Andreas Weise <a.weise@avm.de>
10849
10835
  myfritz.net
@@ -10853,10 +10839,18 @@ myfritz.net
10853
10839
  *.awdev.ca
10854
10840
  *.advisor.ws
10855
10841
 
10842
+ // b-data GmbH : https://www.b-data.io
10843
+ // Submitted by Olivier Benz <olivier.benz@b-data.ch>
10844
+ b-data.io
10845
+
10856
10846
  // backplane : https://www.backplane.io
10857
10847
  // Submitted by Anthony Voutas <anthony@backplane.io>
10858
10848
  backplaneapp.io
10859
10849
 
10850
+ // Banzai Cloud
10851
+ // Submitted by Gabor Kozma <info@banzaicloud.com>
10852
+ app.banzaicloud.io
10853
+
10860
10854
  // BetaInABox
10861
10855
  // Submitted by Adrian <adrian@betainabox.com>
10862
10856
  betainabox.com
@@ -10890,10 +10884,22 @@ square7.net
10890
10884
  // Submitted by Dave Tharp <browsersafetymark.io@quicinc.com>
10891
10885
  browsersafetymark.io
10892
10886
 
10887
+ // Bytemark Hosting : https://www.bytemark.co.uk
10888
+ // Submitted by Paul Cammish <paul.cammish@bytemark.co.uk>
10889
+ uk0.bigv.io
10890
+ dh.bytemark.co.uk
10891
+ vm.bytemark.co.uk
10892
+
10893
10893
  // callidomus : https://www.callidomus.com/
10894
10894
  // Submitted by Marcus Popp <admin@callidomus.com>
10895
10895
  mycd.eu
10896
10896
 
10897
+ // Carrd : https://carrd.co
10898
+ // Submitted by AJ <aj@carrd.co>
10899
+ carrd.co
10900
+ crd.co
10901
+ uwu.ai
10902
+
10897
10903
  // CentralNic : http://www.centralnic.com/names/domains
10898
10904
  // Submitted by registry <gavin.brown@centralnic.com>
10899
10905
  ae.org
@@ -10955,6 +10961,10 @@ certmgr.org
10955
10961
  // Submitted by Alex Stoddard <alex.stoddard@citrix.com>
10956
10962
  xenapponazure.com
10957
10963
 
10964
+ // Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/
10965
+ // Submitted by Rishabh Nambiar <rishabh.nambiar@discourse.org>
10966
+ discourse.group
10967
+
10958
10968
  // ClearVox : http://www.clearvox.nl/
10959
10969
  // Submitted by Leon Rowland <leon@clearvox.nl>
10960
10970
  virtueeldomein.nl
@@ -10963,10 +10973,16 @@ virtueeldomein.nl
10963
10973
  // Submitted by Quentin Adam <noc@clever-cloud.com>
10964
10974
  cleverapps.io
10965
10975
 
10976
+ // Clerk : https://www.clerk.dev
10977
+ // Submitted by Colin Sidoti <colin@clerk.dev>
10978
+ *.lcl.dev
10979
+ *.stg.dev
10980
+
10966
10981
  // Cloud66 : https://www.cloud66.com/
10967
10982
  // Submitted by Khash Sajadi <khash@cloud66.com>
10968
10983
  c66.me
10969
10984
  cloud66.ws
10985
+ cloud66.zone
10970
10986
 
10971
10987
  // CloudAccess.net : https://www.cloudaccess.net/
10972
10988
  // Submitted by Pawel Panek <noc@cloudaccess.net>
@@ -10981,6 +10997,14 @@ cloudaccess.net
10981
10997
  cloudcontrolled.com
10982
10998
  cloudcontrolapp.com
10983
10999
 
11000
+ // Cloudflare, Inc. : https://www.cloudflare.com/
11001
+ // Submitted by Jake Riesterer <publicsuffixlist@cloudflare.com>
11002
+ workers.dev
11003
+
11004
+ // Clovyr : https://clovyr.io
11005
+ // Submitted by Patrick Nielsen <patrick@clovyr.io>
11006
+ wnext.app
11007
+
10984
11008
  // co.ca : http://registry.co.ca/
10985
11009
  co.ca
10986
11010
 
@@ -11082,6 +11106,11 @@ firm.dk
11082
11106
  reg.dk
11083
11107
  store.dk
11084
11108
 
11109
+ // dapps.earth : https://dapps.earth/
11110
+ // Submitted by Daniil Burdakov <icqkill@gmail.com>
11111
+ *.dapps.earth
11112
+ *.bzz.dapps.earth
11113
+
11085
11114
  // Debian : https://www.debian.org/
11086
11115
  // Submitted by Peter Palfrader / Debian Sysadmin Team <dsa-publicsuffixlist@debian.org>
11087
11116
  debian.net
@@ -11094,6 +11123,11 @@ dedyn.io
11094
11123
  // Submitted by Norbert Auler <mail@dnshome.de>
11095
11124
  dnshome.de
11096
11125
 
11126
+ // DotArai : https://www.dotarai.com/
11127
+ // Submitted by Atsadawat Netcharadsang <atsadawat@dotarai.co.th>
11128
+ online.th
11129
+ shop.th
11130
+
11097
11131
  // DrayTek Corp. : https://www.draytek.com/
11098
11132
  // Submitted by Paul Fang <mis@draytek.com>
11099
11133
  drayddns.com
@@ -11454,6 +11488,11 @@ e4.cz
11454
11488
  // Submitted by Thomas Cottier <thomas.cottier@enalean.com>
11455
11489
  mytuleap.com
11456
11490
 
11491
+ // ECG Robotics, Inc: https://ecgrobotics.org
11492
+ // Submitted by <frc1533@ecgrobotics.org>
11493
+ onred.one
11494
+ staging.onred.one
11495
+
11457
11496
  // Enonic : http://enonic.com/
11458
11497
  // Submitted by Erik Kaareng-Sunde <esu@enonic.com>
11459
11498
  enonic.io
@@ -11623,6 +11662,7 @@ channelsdvr.net
11623
11662
 
11624
11663
  // Fastly Inc. : http://www.fastly.com/
11625
11664
  // Submitted by Fastly Security <security@fastly.com>
11665
+ fastly-terrarium.com
11626
11666
  fastlylb.net
11627
11667
  map.fastlylb.net
11628
11668
  freetls.fastly.net
@@ -11650,9 +11690,19 @@ cloud.fedoraproject.org
11650
11690
  app.os.fedoraproject.org
11651
11691
  app.os.stg.fedoraproject.org
11652
11692
 
11693
+ // Fermax : https://fermax.com/
11694
+ // submitted by Koen Van Isterdael <k.vanisterdael@fermax.be>
11695
+ mydobiss.com
11696
+
11653
11697
  // Filegear Inc. : https://www.filegear.com
11654
11698
  // Submitted by Jason Zhu <jason@owtware.com>
11655
11699
  filegear.me
11700
+ filegear-au.me
11701
+ filegear-de.me
11702
+ filegear-gb.me
11703
+ filegear-ie.me
11704
+ filegear-jp.me
11705
+ filegear-sg.me
11656
11706
 
11657
11707
  // Firebase, Inc.
11658
11708
  // Submitted by Chris Raynor <chris@firebase.com>
@@ -11691,6 +11741,15 @@ futuremailing.at
11691
11741
  // Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
11692
11742
  service.gov.uk
11693
11743
 
11744
+ // Gehirn Inc. : https://www.gehirn.co.jp/
11745
+ // Submitted by Kohei YOSHIDA <tech@gehirn.co.jp>
11746
+ gehirn.ne.jp
11747
+ usercontent.jp
11748
+
11749
+ // Gentlent, Limited : https://www.gentlent.com
11750
+ // Submitted by Tom Klein <tklein@gentlent.com>
11751
+ lab.ms
11752
+
11694
11753
  // GitHub, Inc.
11695
11754
  // Submitted by Patrick Toomey <security@github.com>
11696
11755
  github.io
@@ -11700,6 +11759,15 @@ githubusercontent.com
11700
11759
  // Submitted by Alex Hanselka <alex@gitlab.com>
11701
11760
  gitlab.io
11702
11761
 
11762
+ // Glitch, Inc : https://glitch.com
11763
+ // Submitted by Mads Hartmann <mads@glitch.com>
11764
+ glitch.me
11765
+
11766
+ // GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/
11767
+ // Submitted by Tom Whitwell <tom.whitwell@digital.cabinet-office.gov.uk>
11768
+ cloudapps.digital
11769
+ london.cloudapps.digital
11770
+
11703
11771
  // UKHomeOffice : https://www.gov.uk/government/organisations/home-office
11704
11772
  // Submitted by Jon Shanks <jon.shanks@digital.homeoffice.gov.uk>
11705
11773
  homeoffice.gov.uk
@@ -11715,6 +11783,8 @@ goip.de
11715
11783
 
11716
11784
  // Google, Inc.
11717
11785
  // Submitted by Eduardo Vela <evn@google.com>
11786
+ run.app
11787
+ a.run.app
11718
11788
  *.0emm.com
11719
11789
  appspot.com
11720
11790
  blogspot.ae
@@ -11801,6 +11871,14 @@ publishproxy.com
11801
11871
  withgoogle.com
11802
11872
  withyoutube.com
11803
11873
 
11874
+ // Hakaran group: http://hakaran.cz
11875
+ // Submited by Arseniy Sokolov <security@hakaran.cz>
11876
+ fin.ci
11877
+ free.hr
11878
+ caa.li
11879
+ ua.rs
11880
+ conf.se
11881
+
11804
11882
  // Hashbang : https://hashbang.sh
11805
11883
  hashbang.sh
11806
11884
 
@@ -11826,14 +11904,44 @@ ravendb.me
11826
11904
  development.run
11827
11905
  ravendb.run
11828
11906
 
11907
+ // HOSTBIP REGISTRY : https://www.hostbip.com/
11908
+ // Submitted by Atanunu Igbunuroghene <publicsuffixlist@hostbip.com>
11909
+ bpl.biz
11910
+ orx.biz
11911
+ ng.city
11912
+ ng.ink
11913
+ biz.gl
11914
+ col.ng
11915
+ gen.ng
11916
+ ltd.ng
11917
+ sch.so
11918
+
11919
+ // Häkkinen.fi
11920
+ // Submitted by Eero Häkkinen <Eero+psl@Häkkinen.fi>
11921
+ häkkinen.fi
11922
+
11829
11923
  // Ici la Lune : http://www.icilalune.com/
11830
11924
  // Submitted by Simon Morvan <simon@icilalune.com>
11925
+ *.moonscale.io
11831
11926
  moonscale.net
11832
11927
 
11833
11928
  // iki.fi
11834
11929
  // Submitted by Hannu Aronsson <haa@iki.fi>
11835
11930
  iki.fi
11836
11931
 
11932
+ // Individual Network Berlin e.V. : https://www.in-berlin.de/
11933
+ // Submitted by Christian Seitz <chris@in-berlin.de>
11934
+ dyn-berlin.de
11935
+ in-berlin.de
11936
+ in-brb.de
11937
+ in-butter.de
11938
+ in-dsl.de
11939
+ in-dsl.net
11940
+ in-dsl.org
11941
+ in-vpn.de
11942
+ in-vpn.net
11943
+ in-vpn.org
11944
+
11837
11945
  // info.at : http://www.info.at/
11838
11946
  biz.at
11839
11947
  info.at
@@ -11902,6 +12010,11 @@ myjino.ru
11902
12010
  // Submitted by Stefan Keim <admin@js.org>
11903
12011
  js.org
11904
12012
 
12013
+ // KaasHosting : http://www.kaashosting.nl/
12014
+ // Submitted by Wouter Bakker <hostmaster@kaashosting.nl>
12015
+ kaas.gg
12016
+ khplay.nl
12017
+
11905
12018
  // Keyweb AG : https://www.keyweb.de
11906
12019
  // Submitted by Martin Dannehl <postmaster@keymachine.de>
11907
12020
  keymachine.de
@@ -11920,6 +12033,22 @@ git-repos.de
11920
12033
  lcube-server.de
11921
12034
  svn-repos.de
11922
12035
 
12036
+ // Leadpages : https://www.leadpages.net
12037
+ // Submitted by Greg Dallavalle <domains@leadpages.net>
12038
+ leadpages.co
12039
+ lpages.co
12040
+ lpusercontent.com
12041
+
12042
+ // Lifetime Hosting : https://Lifetime.Hosting/
12043
+ // Submitted by Mike Fillator <support@lifetime.hosting>
12044
+ co.business
12045
+ co.education
12046
+ co.events
12047
+ co.financial
12048
+ co.network
12049
+ co.place
12050
+ co.technology
12051
+
11923
12052
  // Lightmaker Property Manager, Inc. : https://app.lmpm.com/
11924
12053
  // Submitted by Greg Holland <greg.holland@lmpm.com>
11925
12054
  app.lmpm.com
@@ -11933,10 +12062,32 @@ linkitools.space
11933
12062
  linkyard.cloud
11934
12063
  linkyard-cloud.ch
11935
12064
 
12065
+ // Linode : https://linode.com
12066
+ // Submitted by <security@linode.com>
12067
+ members.linode.com
12068
+ nodebalancer.linode.com
12069
+
11936
12070
  // LiquidNet Ltd : http://www.liquidnetlimited.com/
11937
12071
  // Submitted by Victor Velchev <admin@liquidnetlimited.com>
11938
12072
  we.bs
11939
12073
 
12074
+ // Log'in Line : https://www.loginline.com/
12075
+ // Submitted by Rémi Mach <remi.mach@loginline.com>
12076
+ loginline.app
12077
+ loginline.dev
12078
+ loginline.io
12079
+ loginline.services
12080
+ loginline.site
12081
+
12082
+ // LubMAN UMCS Sp. z o.o : https://lubman.pl/
12083
+ // Submitted by Ireneusz Maliszewski <ireneusz.maliszewski@lubman.pl>
12084
+ krasnik.pl
12085
+ leczna.pl
12086
+ lubartow.pl
12087
+ lublin.pl
12088
+ poniatowa.pl
12089
+ swidnik.pl
12090
+
11940
12091
  // Lug.org.uk : https://lug.org.uk
11941
12092
  // Submitted by Jon Spriggs <admin@lug.org.uk>
11942
12093
  uklugs.org
@@ -12027,6 +12178,30 @@ net.ru
12027
12178
  org.ru
12028
12179
  pp.ru
12029
12180
 
12181
+ // Nabu Casa : https://www.nabucasa.com
12182
+ // Submitted by Paulus Schoutsen <infra@nabucasa.com>
12183
+ ui.nabu.casa
12184
+
12185
+ // Names.of.London : https://names.of.london/
12186
+ // Submitted by James Stevens <registry@names.of.london> or <james@jrcs.net>
12187
+ pony.club
12188
+ of.fashion
12189
+ on.fashion
12190
+ of.football
12191
+ in.london
12192
+ of.london
12193
+ for.men
12194
+ and.mom
12195
+ for.mom
12196
+ for.one
12197
+ for.sale
12198
+ of.work
12199
+ to.work
12200
+
12201
+ // NCTU.ME : https://nctu.me/
12202
+ // Submitted by Tocknicsu <admin@nctu.me>
12203
+ nctu.me
12204
+
12030
12205
  // Netlify : https://www.netlify.com
12031
12206
  // Submitted by Jessica Parsons <jessica@netlify.com>
12032
12207
  bitballoon.com
@@ -12307,6 +12482,14 @@ on-web.fr
12307
12482
  *.platform.sh
12308
12483
  *.platformsh.site
12309
12484
 
12485
+ // Port53 : https://port53.io/
12486
+ // Submitted by Maximilian Schieder <maxi@zeug.co>
12487
+ dyn53.io
12488
+
12489
+ // Positive Codes Technology Company : http://co.bn/faq.html
12490
+ // Submitted by Zulfais <pc@co.bn>
12491
+ co.bn
12492
+
12310
12493
  // prgmr.com : https://prgmr.com/
12311
12494
  // Submitted by Sarah Newman <owner@prgmr.com>
12312
12495
  xen.prgmr.com
@@ -12315,6 +12498,14 @@ xen.prgmr.com
12315
12498
  // Submitted by registry <lendl@nic.at>
12316
12499
  priv.at
12317
12500
 
12501
+ // privacytools.io : https://www.privacytools.io/
12502
+ // Submitted by Jonah Aragon <jonah@privacytools.io>
12503
+ prvcy.page
12504
+
12505
+ // Protocol Labs : https://protocol.ai/
12506
+ // Submitted by Michael Burns <noc@protocol.ai>
12507
+ *.dweb.link
12508
+
12318
12509
  // Protonet GmbH : http://protonet.io
12319
12510
  // Submitted by Martin Meier <admin@protonet.io>
12320
12511
  protonet.io
@@ -12324,6 +12515,10 @@ protonet.io
12324
12515
  chirurgiens-dentistes-en-france.fr
12325
12516
  byen.site
12326
12517
 
12518
+ // Redstar Consultants : https://www.redstarconsultants.com/
12519
+ // Submitted by Jons Slemmer <jons@redstarconsultants.com>
12520
+ instantcloud.cn
12521
+
12327
12522
  // Russian Academy of Sciences
12328
12523
  // Submitted by Tech Support <support@rasnet.ru>
12329
12524
  ras.ru
@@ -12352,10 +12547,29 @@ vaporcloud.io
12352
12547
  rackmaze.com
12353
12548
  rackmaze.net
12354
12549
 
12550
+ // Rancher Labs, Inc : https://rancher.com
12551
+ // Submitted by Vincent Fiduccia <domains@rancher.com>
12552
+ *.on-rancher.cloud
12553
+ *.on-rio.io
12554
+
12555
+ // Read The Docs, Inc : https://www.readthedocs.org
12556
+ // Submitted by David Fischer <team@readthedocs.org>
12557
+ readthedocs.io
12558
+
12355
12559
  // Red Hat, Inc. OpenShift : https://openshift.redhat.com/
12356
12560
  // Submitted by Tim Kramer <tkramer@rhcloud.com>
12357
12561
  rhcloud.com
12358
12562
 
12563
+ // Render : https://render.com
12564
+ // Submitted by Anurag Goel <dev@render.com>
12565
+ app.render.com
12566
+ onrender.com
12567
+
12568
+ // Repl.it : https://repl.it
12569
+ // Submitted by Mason Clayton <mason@repl.it>
12570
+ repl.co
12571
+ repl.run
12572
+
12359
12573
  // Resin.io : https://resin.io
12360
12574
  // Submitted by Tim Perry <tim@resin.io>
12361
12575
  resindevice.io
@@ -12371,6 +12585,10 @@ wellbeingzone.eu
12371
12585
  ptplus.fit
12372
12586
  wellbeingzone.co.uk
12373
12587
 
12588
+ // Rochester Institute of Technology : http://www.rit.edu/
12589
+ // Submitted by Jennifer Herting <jchits@rit.edu>
12590
+ git-pages.rit.edu
12591
+
12374
12592
  // Sandstorm Development Group, Inc. : https://sandcats.io/
12375
12593
  // Submitted by Asheesh Laroia <asheesh@sandstorm.io>
12376
12594
  sandcats.io
@@ -12420,6 +12638,10 @@ shiftedit.io
12420
12638
  // Submitted by Alex Bowers <alex@shopblocks.com>
12421
12639
  myshopblocks.com
12422
12640
 
12641
+ // Siemens Mobility GmbH
12642
+ // Submitted by Oliver Graebner <security@mo-siemens.io>
12643
+ mo-siemens.io
12644
+
12423
12645
  // SinaAppEngine : http://sae.sina.com.cn/
12424
12646
  // Submitted by SinaAppEngine <saesupport@sinacloud.com>
12425
12647
  1kapp.com
@@ -12428,12 +12650,20 @@ applinzi.com
12428
12650
  sinaapp.com
12429
12651
  vipsinaapp.com
12430
12652
 
12653
+ // Siteleaf : https://www.siteleaf.com/
12654
+ // Submitted by Skylar Challand <support@siteleaf.com>
12655
+ siteleaf.net
12656
+
12431
12657
  // Skyhat : http://www.skyhat.io
12432
12658
  // Submitted by Shante Adam <shante@skyhat.io>
12433
12659
  bounty-full.com
12434
12660
  alpha.bounty-full.com
12435
12661
  beta.bounty-full.com
12436
12662
 
12663
+ // Stackhero : https://www.stackhero.io
12664
+ // Submitted by Adrien Gillon <adrien+public-suffix-list@stackhero.io>
12665
+ stackhero-network.com
12666
+
12437
12667
  // staticland : https://static.land
12438
12668
  // Submitted by Seth Vincent <sethvincent@gmail.com>
12439
12669
  static.land
@@ -12453,6 +12683,10 @@ spacekit.io
12453
12683
  // Submitted by Stefan Neufeind <info@speedpartner.de>
12454
12684
  customer.speedpartner.de
12455
12685
 
12686
+ // Standard Library : https://stdlib.com
12687
+ // Submitted by Jacob Lee <jacob@stdlib.com>
12688
+ api.stdlib.com
12689
+
12456
12690
  // Storj Labs Inc. : https://storj.io/
12457
12691
  // Submitted by Philip Hutchins <hostmaster@storj.io>
12458
12692
  storj.farm
@@ -12461,10 +12695,24 @@ storj.farm
12461
12695
  // Submitted by Silke Hofstra <syscom@snt.utwente.nl>
12462
12696
  utwente.io
12463
12697
 
12698
+ // Student-Run Computing Facility : https://www.srcf.net/
12699
+ // Submitted by Edwin Balani <sysadmins@srcf.net>
12700
+ soc.srcf.net
12701
+ user.srcf.net
12702
+
12464
12703
  // Sub 6 Limited: http://www.sub6.com
12465
12704
  // Submitted by Dan Miller <dm@sub6.com>
12466
12705
  temp-dns.com
12467
12706
 
12707
+ // Swisscom Application Cloud: https://developer.swisscom.com
12708
+ // Submitted by Matthias.Winzeler <matthias.winzeler@swisscom.com>
12709
+ applicationcloud.io
12710
+ scapp.io
12711
+
12712
+ // Syncloud : https://syncloud.org
12713
+ // Submitted by Boris Rybalkin <syncloud@syncloud.it>
12714
+ syncloud.it
12715
+
12468
12716
  // Synology, Inc. : https://www.synology.com/
12469
12717
  // Submitted by Rony Weng <ronyweng@synology.com>
12470
12718
  diskstation.me
@@ -12493,17 +12741,33 @@ gdynia.pl
12493
12741
  med.pl
12494
12742
  sopot.pl
12495
12743
 
12744
+ // Teckids e.V. : https://www.teckids.org
12745
+ // Submitted by Dominik George <dominik.george@teckids.org>
12746
+ edugit.org
12747
+
12748
+ // Telebit : https://telebit.cloud
12749
+ // Submitted by AJ ONeal <aj@telebit.cloud>
12750
+ telebit.app
12751
+ telebit.io
12752
+ *.telebit.xyz
12753
+
12496
12754
  // The Gwiddle Foundation : https://gwiddlefoundation.org.uk
12497
12755
  // Submitted by Joshua Bayfield <joshua.bayfield@gwiddlefoundation.org.uk>
12498
12756
  gwiddle.co.uk
12499
12757
 
12500
12758
  // Thingdust AG : https://thingdust.com/
12501
12759
  // Submitted by Adrian Imboden <adi@thingdust.com>
12760
+ thingdustdata.com
12502
12761
  cust.dev.thingdust.io
12503
12762
  cust.disrec.thingdust.io
12504
12763
  cust.prod.thingdust.io
12505
12764
  cust.testing.thingdust.io
12506
12765
 
12766
+ // Tlon.io : https://tlon.io
12767
+ // Submitted by Mark Staarink <mark@tlon.io>
12768
+ arvo.network
12769
+ azimuth.network
12770
+
12507
12771
  // TownNews.com : http://www.townnews.com
12508
12772
  // Submitted by Dustin Ward <dward@townnews.com>
12509
12773
  bloxcms.com
@@ -12590,6 +12854,14 @@ router.management
12590
12854
  // Submitted by Adnan RIHAN <hostmaster@v-info.info>
12591
12855
  v-info.info
12592
12856
 
12857
+ // Voorloper.com: https://voorloper.com
12858
+ // Submitted by Nathan van Bakel <info@voorloper.com>
12859
+ voorloper.cloud
12860
+
12861
+ // Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
12862
+ // Submitted by Masayuki Note <masa@blade.wafflecell.com>
12863
+ wafflecell.com
12864
+
12593
12865
  // WeDeploy by Liferay, Inc. : https://www.wedeploy.com
12594
12866
  // Submitted by Henrique Vicente <security@wedeploy.com>
12595
12867
  wedeploy.io
@@ -12652,6 +12924,17 @@ za.org
12652
12924
  // Submitted by Olli Vanhoja <olli@zeit.co>
12653
12925
  now.sh
12654
12926
 
12927
+ // Zine EOOD : https://zine.bg/
12928
+ // Submitted by Martin Angelov <martin@zine.bg>
12929
+ bss.design
12930
+
12931
+ // Zitcom A/S : https://www.zitcom.dk
12932
+ // Submitted by Emil Stahl <esp@zitcom.dk>
12933
+ basicserver.io
12934
+ virtualserver.io
12935
+ site.builder.nu
12936
+ enterprisecloud.nu
12937
+
12655
12938
  // Zone.id : https://zone.id/
12656
12939
  // Submitted by Su Hendro <admin@zone.id>
12657
12940
  zone.id