├── .gitignore ├── LICENSE ├── README.md └── src ├── dnspod-tlds.txt ├── dnspod-top10000-domains-20160501.txt ├── dnspod-top10000-domains-20170308.txt └── dnspod-top2000-sub-domains.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # oh-my-free-data 2 | - 前几天有粉丝在微博上圈我们,问 DNSPod 能否提供一份类似 OpenDNS 那样的 Top-Domains-List,话说我们一直都是以友好、开放的态度对待每一位用户、开发者、合作伙伴们,我们致力于让解析服务变得更安全、更稳定,so,这是第一个版本,我们整理了几个简单的数据指标,希望能通过这份数据帮助到互联网从业者们,也让更多的朋友了解 DNSPod,从而选择 DNSPod,enjoy it! 3 | 4 | 5 | #### DNSPod 支持的 TLDs 6 | - 这应该是史上最全的一份 TLDs 吧~ 从 DNSPod 诞生至今,我们一直精心维护着。我相信一切跟域名相关的业务都用得上她,如果你发现还有些 TLD 没有加进来,欢迎提交 pull request ^_^ 7 | - [dnspod-domain-tlds ](/src/dnspod-tlds.txt) [update on: 2017-03-08] 8 | 9 | 10 | #### 解析量 TOP 10000 的域名 11 | - 与其自吹自擂,倒不如让我们的客户来告诉你,DNSPod 到底是多么值得信赖!互联网大咖都选择 DNSPod,你还在纠结什么?(**注:以域名首字母进行排列,并非解析量的排名**) 12 | 13 | - [2016-05-01-top10000-domains](/src/dnspod-top10000-domains-20160501.txt) 14 | - [2017-03-08-top10000-domains](/src/dnspod-top10000-domains-20170308.txt) 15 | 16 | 17 | #### 使用最多的子域名 18 | - 选择子域名应该跟给变量取名是一样一样,总想找个更合适的,与其绞尽脑汁的想,倒不如先看看大家都喜欢使用哪些子域名吧~ PS:DNSPod 的记录自动导入就是基于这份列表实现的 (**注:以子域名首字母进行排列,并非使用量的排名**) 19 | - [top2000-used-sub-domain](/src/dnspod-top2000-sub-domains.txt) 20 | 21 | 22 | #### DNS 服务器分布列表 23 | 24 | - 免费组(10) 25 | 26 | | IP | 地区 | 27 | |:---------------: |:---------------: | 28 | | 101.226.220.16 | 上海 | 29 | | 101.226.30.224 | 上海 | 30 | | 115.236.151.191 | 浙江 杭州 | 31 | | 125.39.208.193 | 天津 | 32 | | 14.215.150.17 | 广东 深圳 | 33 | | 180.163.19.15 | 上海 | 34 | | 182.140.167.166 | 四川 成都 | 35 | | 182.140.167.188 | 四川 成都 | 36 | | 182.254.32.117 | 广东 深圳 | 37 | | 52.220.136.67 | 新加坡 | 38 | 39 | - 个人专业版(13) 40 | 41 | | IP | 地区 | 42 | |:---------------: |:---------------: | 43 | | 14.215.150.11 | 广东 深圳 | 44 | | 111.30.132.180 | 天津 | 45 | | 101.226.220.13 | 上海 | 46 | | 180.153.162.151 | 上海 | 47 | | 125.39.213.168 | 天津 | 48 | | 115.236.151.178 | 浙江 杭州 | 49 | | 180.163.19.11 | 上海 | 50 | | 122.225.217.193 | 浙江 杭州 | 51 | | 220.249.242.11 | 广东 深圳 | 52 | | 180.153.10.167 | 上海 | 53 | | 183.60.57.177 | 广东 深圳 | 54 | | 111.30.132.180 | 天津 | 55 | | 182.140.167.167 | 四川 成都 | 56 | 57 | - 企业创业版(14) 58 | 59 | | IP | 地区 | 60 | |:---------------: |:---------------: | 61 | | 111.30.136.110 | 天津 | 62 | | 182.140.167.168 | 四川 成都 | 63 | | 52.221.20.79 | 新加坡 | 64 | | 115.236.151.177 | 浙江 杭州 | 65 | | 220.249.242.12 | 广东 深圳 | 66 | | 14.215.150.12 | 广东 深圳 | 67 | | 180.153.10.166 | 上海 | 68 | | 180.163.19.16 | 上海 | 69 | | 111.30.136.110 | 天津 | 70 | | 52.221.20.79 | 新加坡 | 71 | | 125.39.213.167 | 天津 | 72 | | 183.60.57.178 | 广东 深圳 | 73 | | 101.226.220.15 | 上海 | 74 | | 180.153.10.168 | 上海 | 75 | 76 | - 企业标准版(18) 77 | 78 | | IP | 地区 | 79 | |:---------------: |:---------------: | 80 | | 125.39.213.169 | 天津 | 81 | | 115.236.151.140 | 浙江 杭州 | 82 | | 14.215.150.14 | 广东 深圳 | 83 | | 183.232.90.141 | 广东 深圳 | 84 | | 180.153.10.188 | 上海 | 85 | | 182.140.167.169 | 四川 成都 | 86 | | 183.60.57.179 | 广东 深圳 | 87 | | 52.74.43.18 | 新加坡 | 88 | | 184.105.206.69 | 美国 | 89 | | 180.153.10.189 | 上海 上海 | 90 | | 115.236.151.188 | 浙江 杭州 | 91 | | 183.232.90.141 | 广东 深圳 | 92 | | 115.236.151.189 | 浙江 杭州 | 93 | | 183.60.57.188 | 广东 深圳 | 94 | | 184.105.206.69 | 美国 | 95 | | 58.251.86.11 | 广东 深圳 | 96 | | 14.215.150.15 | 广东 深圳 | 97 | | 125.39.213.189 | 天津 | 98 | 99 | - 企业旗舰版(22) 100 | 101 | | IP | 地区 | 102 | |:---------------: |:---------------: | 103 | | 52.77.238.92 | 新加坡 | 104 | | 58.251.86.12 | 广东 深圳 | 105 | | 14.215.150.16 | 广东 深圳 | 106 | | 115.236.151.180 | 浙江 杭州 | 107 | | 121.51.2.171 | 广东 深圳 | 108 | | 117.135.170.109 | 上海 | 109 | | 125.39.213.190 | 天津 | 110 | | 183.60.57.192 | 广东 深圳 | 111 | | 182.140.167.191 | 四川 成都 | 112 | | 180.153.10.169 | 上海 | 113 | | 184.105.206.63 | 美国 | 114 | | 182.254.20.44 | 天津 | 115 | | 115.236.151.190 | 浙江 杭州 | 116 | | 184.105.206.67 | 美国 | 117 | | 14.215.150.13 | 广东 深圳 | 118 | | 180.163.19.12 | 上海 | 119 | | 180.153.10.191 | 上海 | 120 | | 117.135.170.109 | 上海 | 121 | | 125.39.213.166 | 天津 | 122 | | 101.226.220.12 | 上海 | 123 | | 161.202.103.211 | 日本 东京 | 124 | | 119.28.48.211 | 香港 | 125 | 126 | - 说明:实际 IP 会根据后端 DNS 服务器的负(gong)载(ji)情况进行调整,所以有可能你实际看到的 IP 并不是上面这些,没错,以你看到的为准~ 127 | 128 | 129 | #### 开放API 130 | - [DNSPod 开放 API](https://www.dnspod.cn/docs/index.html) 131 | - 我们一直在维护着这份 API,希望她更安全、更便捷、更开箱即用,当然,我们也希望看到更多基于 DNSPod API 打造的开源程序问世。[这里](https://support.dnspod.cn/Support/api) 有一些官网和第三方的程序、Demo,如果你有什么好看好玩的项目,欢迎联系我们~ 132 | 133 | 134 | #### 最后 135 | - 这份数据由开发童鞋维护,不代表公司立场,我们会定期或不定期进行更新,并且对此享有最终解释权 136 | - 我们视数据安全如自己的生命一样宝贵,所以对数据做了一些必要的处理,如果您仍然不希望您的域名出现在这份列表里面,可以联系我们删除 137 | -------------------------------------------------------------------------------- /src/dnspod-tlds.txt: -------------------------------------------------------------------------------- 1 | 2000.hu 2 | aaa 3 | aaa.pro 4 | aarp 5 | ab.ca 6 | abb 7 | abbott 8 | abc.name 9 | abogado 10 | ac 11 | ac.ae 12 | ac.at 13 | ac.be 14 | ac.cn 15 | ac.cr 16 | ac.cy 17 | ac.fj 18 | ac.fk 19 | ac.gg 20 | ac.id 21 | ac.il 22 | ac.im 23 | ac.in 24 | ac.ir 25 | ac.je 26 | ac.jp 27 | ac.kr 28 | ac.ma 29 | ac.ng 30 | ac.nz 31 | ac.om 32 | ac.pa 33 | ac.pg 34 | ac.th 35 | ac.ug 36 | ac.uk 37 | ac.vn 38 | ac.yu 39 | ac.za 40 | ac.zw 41 | aca.pro 42 | academy 43 | accenture 44 | accountant 45 | accountants 46 | acct.pro 47 | acg 48 | aco 49 | active 50 | actor 51 | ad 52 | ad.jp 53 | adac 54 | adm.br 55 | ads 56 | adult 57 | adv.br 58 | ae 59 | ae.org 60 | aeg 61 | aero 62 | aero.tt 63 | aeroport.fr 64 | af 65 | afl 66 | ag 67 | agency 68 | agr.br 69 | agrar.hu 70 | agro.pl 71 | ah.cn 72 | ai 73 | aichi.jp 74 | aid.pl 75 | aig 76 | airforce 77 | airtel 78 | akita.jp 79 | al 80 | alderney.gg 81 | alibaba 82 | alipay 83 | allfinanz 84 | alsace 85 | alt.na 86 | alt.za 87 | am 88 | am.br 89 | amica 90 | amsterdam 91 | an 92 | analytics 93 | android 94 | ao 95 | aomori.jp 96 | apartments 97 | app 98 | apple 99 | aq 100 | aquarelle 101 | ar 102 | ar.com 103 | aramco 104 | arc.pro 105 | archi 106 | army 107 | arpa 108 | arq.br 109 | art.br 110 | art.do 111 | art.dz 112 | arte 113 | arts.co 114 | arts.ro 115 | arts.ve 116 | as 117 | asia 118 | asn.au 119 | asn.lv 120 | ass.dz 121 | assedic.fr 122 | asso.fr 123 | asso.re 124 | associates 125 | at 126 | at.gg 127 | at.pn 128 | at.tc 129 | at.tf 130 | at.tt 131 | atm.pl 132 | ato.br 133 | attorney 134 | au 135 | au.com 136 | au.ms 137 | au.pn 138 | au.tc 139 | au.tt 140 | auction 141 | audi 142 | audio 143 | author 144 | auto 145 | auto.pl 146 | autos 147 | avocat.fr 148 | avocat.pro 149 | avoues.fr 150 | aw 151 | ax 152 | axa 153 | az 154 | azure 155 | ba 156 | baidu 157 | band 158 | bank 159 | bar 160 | bar.pro 161 | barcelona 162 | barclaycard 163 | barclays 164 | bargains 165 | barreau.fr 166 | bauhaus 167 | bayern 168 | bb 169 | bbc 170 | bbs.tr 171 | bbva 172 | bc.ca 173 | bcn 174 | bd 175 | be 176 | be.tc 177 | be.tt 178 | beats 179 | beer 180 | belgie.be 181 | bentley 182 | berlin 183 | best 184 | bet 185 | bf 186 | bg 187 | bg.tc 188 | bg.tf 189 | bh 190 | bharti 191 | bi 192 | bib.ve 193 | bible 194 | bid 195 | bike 196 | bing 197 | bingo 198 | bio 199 | bio.br 200 | biz 201 | biz.et 202 | biz.ki 203 | biz.om 204 | biz.pk 205 | biz.pl 206 | biz.tm 207 | biz.tt 208 | biz.vn 209 | bj 210 | bj.cn 211 | bl 212 | black 213 | blackfriday 214 | bloomberg 215 | blue 216 | bm 217 | bmd.br 218 | bms 219 | bmw 220 | bn 221 | bnl 222 | bnpparibas 223 | bo 224 | boats 225 | boehringer 226 | bolt.hu 227 | bom 228 | bond 229 | boo 230 | book 231 | boots 232 | bosch 233 | bostik 234 | bot 235 | bourse.za 236 | boutique 237 | box.tl 238 | bq 239 | br 240 | br.com 241 | br.ms 242 | br.tc 243 | bradesco 244 | brand.se 245 | bridgestone 246 | broadway 247 | broker 248 | brother 249 | brussels 250 | bs 251 | bt 252 | budapest 253 | bugatti 254 | build 255 | builders 256 | business 257 | buy 258 | buzz 259 | bv 260 | bw 261 | bxb.me 262 | by 263 | bz 264 | bzh 265 | ca 266 | ca.pn 267 | ca.tf 268 | ca.tt 269 | cab 270 | cafe 271 | cal 272 | call 273 | camera 274 | camp 275 | cancerresearch 276 | canon 277 | capetown 278 | capital 279 | car 280 | caravan 281 | cards 282 | care 283 | career 284 | careers 285 | cars 286 | cartier 287 | casa 288 | cash 289 | casino 290 | casino.hu 291 | cat 292 | catering 293 | cba 294 | cbn 295 | cc 296 | cci.fr 297 | cd 298 | ceb 299 | center 300 | ceo 301 | cern 302 | cf 303 | cfa 304 | cfd 305 | cg 306 | ch 307 | ch.gg 308 | ch.pn 309 | ch.tc 310 | ch.tf 311 | ch.vu 312 | chambagri.fr 313 | chanel 314 | channel 315 | chat 316 | cheap 317 | chiba.jp 318 | chirurgiens-dentiste 319 | chloe 320 | christmas 321 | chrome 322 | church 323 | chuzu.pro 324 | ci 325 | cim.br 326 | cipriani 327 | circle 328 | cisco 329 | citic 330 | city 331 | city.hu 332 | city.za 333 | cityeats 334 | ck 335 | cl 336 | claims 337 | cleaning 338 | click 339 | clinic 340 | clinique 341 | clothing 342 | cloud 343 | club 344 | club.tw 345 | clubmed 346 | cm 347 | cn 348 | cn.com 349 | cn.im 350 | cn.mn 351 | cn.ms 352 | cn.name 353 | cn.pn 354 | cng.br 355 | cngogo.com 356 | cnkk.org 357 | cnt.br 358 | co 359 | co.ae 360 | co.ag 361 | co.at 362 | co.be 363 | co.cc 364 | co.ck 365 | co.cm 366 | co.com 367 | co.cr 368 | co.dk 369 | co.gg 370 | co.hu 371 | co.id 372 | co.il 373 | co.im 374 | co.in 375 | co.ir 376 | co.je 377 | co.jp 378 | co.kr 379 | co.lc 380 | co.ma 381 | co.ms 382 | co.nl 383 | co.no 384 | co.nz 385 | co.om 386 | co.st 387 | co.th 388 | co.tt 389 | co.tv 390 | co.ug 391 | co.uk 392 | co.ve 393 | co.vi 394 | co.yu 395 | co.za 396 | co.zw 397 | coach 398 | codes 399 | coffee 400 | college 401 | cologne 402 | com 403 | com.ac 404 | com.ae 405 | com.ag 406 | com.ai 407 | com.ar 408 | com.au 409 | com.az 410 | com.band 411 | com.bb 412 | com.bh 413 | com.bi 414 | com.bm 415 | com.br 416 | com.bs 417 | com.bz 418 | com.ci 419 | com.cm 420 | com.cn 421 | com.co 422 | com.cu 423 | com.cy 424 | com.de 425 | com.do 426 | com.dz 427 | com.ec 428 | com.ee 429 | com.eg 430 | com.er 431 | com.es 432 | com.et 433 | com.fail 434 | com.fj 435 | com.fk 436 | com.fr 437 | com.ge 438 | com.gr 439 | com.gt 440 | com.gu 441 | com.hk 442 | com.hn 443 | com.hr 444 | com.ht 445 | com.im 446 | com.jo 447 | com.kh 448 | com.ki 449 | com.kw 450 | com.la 451 | com.lb 452 | com.lc 453 | com.lv 454 | com.ly 455 | com.mk 456 | com.mm 457 | com.mn 458 | com.mo 459 | com.ms 460 | com.mt 461 | com.mu 462 | com.mx 463 | com.my 464 | com.na 465 | com.nc 466 | com.nf 467 | com.ng 468 | com.ni 469 | com.nl 470 | com.np 471 | com.om 472 | com.pa 473 | com.pe 474 | com.pg 475 | com.ph 476 | com.pk 477 | com.pl 478 | com.pt 479 | com.py 480 | com.qa 481 | com.re 482 | com.ro 483 | com.ru 484 | com.sa 485 | com.sb 486 | com.sc 487 | com.sd 488 | com.se 489 | com.sg 490 | com.sh 491 | com.so 492 | com.st 493 | com.sv 494 | com.sy 495 | com.tn 496 | com.tr 497 | com.tt 498 | com.tw 499 | com.ua 500 | com.uy 501 | com.vc 502 | com.ve 503 | com.vet 504 | com.vn 505 | com.vu 506 | com.work 507 | com.ws 508 | com.ye 509 | commbank 510 | community 511 | company 512 | compare 513 | computer 514 | comsec 515 | condos 516 | conf.au 517 | conf.lv 518 | construction 519 | consulado.st 520 | consulting 521 | contact 522 | contractors 523 | cooking 524 | cool 525 | coop 526 | coop.br 527 | coop.tt 528 | corsica 529 | country 530 | coupons 531 | courses 532 | cpa.pro 533 | cq.cn 534 | cr 535 | credit 536 | creditcard 537 | creditunion 538 | cri.nz 539 | cricket 540 | crown 541 | crs 542 | cruises 543 | csc 544 | csiro.au 545 | cu 546 | cu.cc 547 | cuisinella 548 | cul.na 549 | cv 550 | cw 551 | cx 552 | cy 553 | cymru 554 | cyou 555 | cz 556 | cz.cc 557 | cz.co 558 | cz.tc 559 | cz.tf 560 | dabur 561 | dad 562 | dance 563 | date 564 | dating 565 | datsun 566 | day 567 | dclk 568 | dds.pro 569 | de 570 | de.com 571 | de.gg 572 | de.ms 573 | de.net 574 | de.pn 575 | de.tc 576 | de.tf 577 | de.tt 578 | de.vu 579 | dealer 580 | deals 581 | degree 582 | delivery 583 | dell 584 | deloitte 585 | delta 586 | democrat 587 | den.pro 588 | dental 589 | dentist 590 | desi 591 | design 592 | dev 593 | diamonds 594 | diet 595 | digital 596 | direct 597 | directory 598 | discount 599 | dj 600 | dk 601 | dk.org 602 | dk.tc 603 | dk.tt 604 | dm 605 | dni.us 606 | dnp 607 | dns.be 608 | dnt.pro 609 | do 610 | docs 611 | dog 612 | doha 613 | domain.name 614 | domains 615 | done.fail 616 | doosan 617 | download 618 | drive 619 | dubai 620 | durban 621 | dvag 622 | dz 623 | e164.arpa 624 | earth 625 | eat 626 | eb.cn 627 | ebiz.tw 628 | ec 629 | ecn.br 630 | ed.cr 631 | ed.jp 632 | edeka 633 | edu 634 | edu.ac 635 | edu.ai 636 | edu.ar 637 | edu.au 638 | edu.bh 639 | edu.bm 640 | edu.br 641 | edu.cc 642 | edu.ck 643 | edu.cn 644 | edu.co 645 | edu.do 646 | edu.dz 647 | edu.ec 648 | edu.eg 649 | edu.er 650 | edu.es 651 | edu.et 652 | edu.ge 653 | edu.gl 654 | edu.gr 655 | edu.gt 656 | edu.gu 657 | edu.hk 658 | edu.jo 659 | edu.kh 660 | edu.kw 661 | edu.lb 662 | edu.lc 663 | edu.lv 664 | edu.mm 665 | edu.mn 666 | edu.mo 667 | edu.ms 668 | edu.mt 669 | edu.mx 670 | edu.my 671 | edu.na 672 | edu.ng 673 | edu.ni 674 | edu.np 675 | edu.om 676 | edu.pa 677 | edu.pe 678 | edu.pk 679 | edu.pl 680 | edu.ps 681 | edu.pt 682 | edu.py 683 | edu.qa 684 | edu.sa 685 | edu.sb 686 | edu.sd 687 | edu.sg 688 | edu.sh 689 | edu.st 690 | edu.sv 691 | edu.tc 692 | edu.tf 693 | edu.tr 694 | edu.tt 695 | edu.tw 696 | edu.ua 697 | edu.uk 698 | edu.uy 699 | edu.ve 700 | edu.vn 701 | edu.vu 702 | edu.ws 703 | edu.ye 704 | edu.yu 705 | edu.za 706 | education 707 | edunet.tn 708 | ee 709 | eg 710 | eh 711 | ehime.jp 712 | email 713 | embaixada.st 714 | emerck 715 | energy 716 | eng.br 717 | eng.pro 718 | engineer 719 | engineering 720 | ens.tn 721 | enterprises 722 | epson 723 | equipment 724 | er 725 | ernet.in 726 | erni 727 | erotica.hu 728 | erotika.hu 729 | es 730 | es.tc 731 | es.tt 732 | esp.br 733 | esq 734 | estate 735 | et 736 | etc.br 737 | eti.br 738 | eu 739 | eu.com 740 | eu.org 741 | eu.tc 742 | eu.tf 743 | eu.tt 744 | eu.tv 745 | eun.eg 746 | eurovision 747 | eus 748 | events 749 | everbank 750 | exchange 751 | expert 752 | experts-comptables.f 753 | exposed 754 | express 755 | fage 756 | fail 757 | fairwinds 758 | faith 759 | fam.pk 760 | family 761 | fan 762 | fans 763 | far.br 764 | farm 765 | fashion 766 | fast 767 | fax.nr 768 | fed.us 769 | feedback 770 | ferrero 771 | fgov.be 772 | fh.se 773 | fhsk.se 774 | fhv.se 775 | fi 776 | fi.cr 777 | fie.ee 778 | film 779 | film.hu 780 | fin.ec 781 | fin.tn 782 | final 783 | finance 784 | financial 785 | firestone 786 | firm.co 787 | firm.in 788 | firm.ro 789 | firm.ve 790 | firmdale 791 | fish 792 | fishing 793 | fit 794 | fitness 795 | fj 796 | fj.cn 797 | fk 798 | flights 799 | florist 800 | flowers 801 | flsmidth 802 | fly 803 | fm 804 | fm.br 805 | fnd.br 806 | fo 807 | foo 808 | football 809 | ford 810 | forex 811 | forsale 812 | forum 813 | forum.hu 814 | fot.br 815 | foundation 816 | fox 817 | fr 818 | fr.gg 819 | fr.ms 820 | fr.pn 821 | fr.tt 822 | fr.vu 823 | fresenius 824 | frl 825 | frogans 826 | fst.br 827 | fukui.jp 828 | fukuoka.jp 829 | fukushima.jp 830 | fund 831 | furniture 832 | futbol 833 | fyi 834 | g12.br 835 | ga 836 | gal 837 | gallery 838 | game 839 | game.tw 840 | games.hu 841 | garden 842 | gb 843 | gb.com 844 | gb.net 845 | gbiz 846 | gc.ca 847 | gd 848 | gd.cn 849 | gdn 850 | ge 851 | gea 852 | geek.nz 853 | gen.in 854 | gen.nz 855 | gen.tr 856 | gent 857 | genting 858 | geometre-expert.fr 859 | gf 860 | gg 861 | ggee 862 | ggf.br 863 | gh 864 | gi 865 | gift 866 | gifts 867 | gifu.jp 868 | gives 869 | giving 870 | gl 871 | glass 872 | gle 873 | global 874 | globo 875 | gm 876 | gmail 877 | gmina.pl 878 | gmo 879 | gmx 880 | gn 881 | go.cr 882 | go.id 883 | go.jp 884 | go.kr 885 | go.th 886 | go.ug 887 | gob.do 888 | gob.es 889 | gob.gt 890 | gob.mx 891 | gob.ni 892 | gob.pa 893 | gob.pe 894 | gob.pk 895 | gob.sv 896 | gok.pk 897 | gold 898 | goldpoint 899 | golf 900 | gon.pk 901 | goo 902 | good.name 903 | goog 904 | google 905 | gop 906 | gop.pk 907 | gos.pk 908 | got 909 | gouv.fr 910 | gov 911 | gov.ac 912 | gov.ae 913 | gov.ai 914 | gov.ar 915 | gov.au 916 | gov.bh 917 | gov.bm 918 | gov.br 919 | gov.ck 920 | gov.cn 921 | gov.co 922 | gov.cy 923 | gov.do 924 | gov.dz 925 | gov.ec 926 | gov.eg 927 | gov.er 928 | gov.et 929 | gov.fj 930 | gov.fk 931 | gov.ge 932 | gov.gg 933 | gov.gr 934 | gov.gu 935 | gov.hk 936 | gov.il 937 | gov.im 938 | gov.in 939 | gov.ir 940 | gov.je 941 | gov.jo 942 | gov.jp 943 | gov.kh 944 | gov.kw 945 | gov.lb 946 | gov.lc 947 | gov.lv 948 | gov.mm 949 | gov.mn 950 | gov.mo 951 | gov.my 952 | gov.ng 953 | gov.np 954 | gov.om 955 | gov.pk 956 | gov.ps 957 | gov.pt 958 | gov.qa 959 | gov.ru 960 | gov.sa 961 | gov.sb 962 | gov.sd 963 | gov.sg 964 | gov.sh 965 | gov.st 966 | gov.sy 967 | gov.tn 968 | gov.tr 969 | gov.tt 970 | gov.tw 971 | gov.ua 972 | gov.uk 973 | gov.ve 974 | gov.vn 975 | gov.ws 976 | gov.ye 977 | gov.za 978 | gov.zw 979 | govt.nz 980 | gp 981 | gq 982 | gr 983 | gr.com 984 | gr.jp 985 | grainger 986 | graphics 987 | gratis 988 | green 989 | greta.fr 990 | gripe 991 | group 992 | gs 993 | gs.cn 994 | gsm.pl 995 | gt 996 | gu 997 | gub.uy 998 | gucci 999 | guernsey.gg 1000 | guge 1001 | guide 1002 | guitars 1003 | gunma.jp 1004 | guru 1005 | gv.at 1006 | gw 1007 | gx.cn 1008 | gy 1009 | gz.cn 1010 | ha.cn 1011 | hamburg 1012 | hangout 1013 | haus 1014 | hb.cn 1015 | he.cn 1016 | health 1017 | health.vn 1018 | healthcare 1019 | help 1020 | helsinki 1021 | here 1022 | hermes 1023 | hi.cn 1024 | hiphop 1025 | hiroshima.jp 1026 | hitachi 1027 | hiv 1028 | hj.cx 1029 | hk 1030 | hk.cn 1031 | hk.com 1032 | hk.ms 1033 | hk.tc 1034 | hl.cn 1035 | hm 1036 | hn 1037 | hn.cn 1038 | hockey 1039 | hokkaido.jp 1040 | holdings 1041 | holiday 1042 | home.kg 1043 | homedepot 1044 | homes 1045 | honda 1046 | horse 1047 | host 1048 | hosting 1049 | hotel.hu 1050 | hoteles 1051 | hotmail 1052 | house 1053 | how 1054 | hr 1055 | hsbc 1056 | ht 1057 | hu 1058 | hu.com 1059 | hu.tc 1060 | huissier-justice.fr 1061 | hyogo.jp 1062 | hyundai 1063 | ibaraki.jp 1064 | ibiz.cc 1065 | ibm 1066 | icbc 1067 | ice 1068 | icu 1069 | id 1070 | id.au 1071 | id.fj 1072 | id.ir 1073 | id.lv 1074 | idf.il 1075 | idv.hk 1076 | idv.tw 1077 | ie 1078 | ie.tc 1079 | ifm 1080 | igg.biz 1081 | iinet 1082 | il 1083 | im 1084 | imb.br 1085 | immo 1086 | immobilien 1087 | in 1088 | in.net 1089 | in.th 1090 | ind.br 1091 | ind.er 1092 | ind.gg 1093 | ind.gt 1094 | ind.in 1095 | ind.je 1096 | ind.tn 1097 | industries 1098 | inf.br 1099 | infiniti 1100 | info 1101 | info.au 1102 | info.co 1103 | info.et 1104 | info.ht 1105 | info.hu 1106 | info.ki 1107 | info.ms 1108 | info.nf 1109 | info.pl 1110 | info.ro 1111 | info.tm 1112 | info.tn 1113 | info.tt 1114 | info.ve 1115 | info.vn 1116 | ing 1117 | ing.pro 1118 | ingatlan.hu 1119 | ink 1120 | institute 1121 | insurance 1122 | insure 1123 | int 1124 | int.ar 1125 | int.co 1126 | int.pt 1127 | int.ru 1128 | int.tc 1129 | int.tf 1130 | int.tt 1131 | int.ve 1132 | int.vn 1133 | international 1134 | intl.tn 1135 | investments 1136 | io 1137 | ipiranga 1138 | iq 1139 | ir 1140 | irc.se 1141 | irc.su 1142 | irish 1143 | is 1144 | iselect 1145 | ishikawa.jp 1146 | ist 1147 | istanbul 1148 | it 1149 | it.pn 1150 | it.tc 1151 | itau 1152 | iwate.jp 1153 | iwc 1154 | iwi.nz 1155 | jaguar 1156 | java 1157 | jcb 1158 | je 1159 | jersey.je 1160 | jetzt 1161 | jewelry 1162 | jl.cn 1163 | jlc 1164 | jll 1165 | jm 1166 | jmp 1167 | jo 1168 | jobs 1169 | jobs.tt 1170 | joburg 1171 | jogasz.hu 1172 | jor.br 1173 | jot 1174 | joy 1175 | jp 1176 | jp.net 1177 | jp.pn 1178 | jpn.com 1179 | jprs 1180 | js.cn 1181 | juegos 1182 | jur.pro 1183 | jx.cn 1184 | k12.ec 1185 | k12.il 1186 | k12.tr 1187 | kagawa.jp 1188 | kagoshima.jp 1189 | kanagawa.jp 1190 | kanazawa.jp 1191 | kaufen 1192 | kawasaki.jp 1193 | kddi 1194 | ke 1195 | kfh 1196 | kg 1197 | kh 1198 | ki 1199 | kia 1200 | kim 1201 | kinder 1202 | kitakyushu.jp 1203 | kitchen 1204 | kiwi 1205 | kiwi.nz 1206 | km 1207 | kn 1208 | kobe.jp 1209 | kochi.jp 1210 | koeln 1211 | komatsu 1212 | komforb.se 1213 | kommunalforbund.se 1214 | komvux.se 1215 | konyvelo.hu 1216 | kp 1217 | kpn 1218 | kr 1219 | kr.com 1220 | kr.tc 1221 | krd 1222 | kred 1223 | kumamoto.jp 1224 | kw 1225 | ky 1226 | kyonggi.kr 1227 | kyoto 1228 | kyoto.jp 1229 | kz 1230 | la 1231 | lacaixa 1232 | lakas.hu 1233 | lamborghini 1234 | lamer 1235 | lanarb.se 1236 | lanbib.se 1237 | lancaster 1238 | land 1239 | landrover 1240 | lanxess 1241 | lasalle 1242 | lat 1243 | latrobe 1244 | law 1245 | law.pro 1246 | law.za 1247 | lawyer 1248 | lb 1249 | lc 1250 | lds 1251 | lease 1252 | leclerc 1253 | legal 1254 | lel.br 1255 | lexus 1256 | lg.jp 1257 | lgbt 1258 | li 1259 | liaison 1260 | lidl 1261 | life 1262 | lifeinsurance 1263 | lifestyle 1264 | lighting 1265 | like 1266 | limited 1267 | limo 1268 | limo.cf 1269 | lincoln 1270 | linde 1271 | link 1272 | live 1273 | living 1274 | lixil 1275 | lk 1276 | lkd.co.im 1277 | llc 1278 | ln.cn 1279 | loan 1280 | loans 1281 | localdomain 1282 | lol 1283 | london 1284 | lotte 1285 | lotto 1286 | love 1287 | lr 1288 | ls 1289 | lt 1290 | ltd 1291 | ltd.gg 1292 | ltd.je 1293 | ltd.uk 1294 | ltda 1295 | lu 1296 | lupin 1297 | luxe 1298 | luxury 1299 | lv 1300 | ly 1301 | ma 1302 | madrid 1303 | maif 1304 | mail.pl 1305 | maison 1306 | makeup 1307 | man 1308 | management 1309 | mango 1310 | maori.nz 1311 | market 1312 | marketing 1313 | markets 1314 | marriott 1315 | mat.br 1316 | matsuyama.jp 1317 | mb.ca 1318 | mba 1319 | mc 1320 | md 1321 | me 1322 | me.uk 1323 | med 1324 | med.br 1325 | med.ec 1326 | med.ee 1327 | med.om 1328 | med.pro 1329 | med.sa 1330 | med.sd 1331 | medecin.fr 1332 | media 1333 | media.hu 1334 | media.pl 1335 | meet 1336 | melbourne 1337 | meme 1338 | memorial 1339 | men 1340 | menu 1341 | meo 1342 | mf 1343 | mg 1344 | mh 1345 | miami 1346 | miasta.pl 1347 | microsoft 1348 | mie.jp 1349 | mil 1350 | mil.ac 1351 | mil.ar 1352 | mil.br 1353 | mil.co 1354 | mil.do 1355 | mil.ec 1356 | mil.er 1357 | mil.ge 1358 | mil.gt 1359 | mil.gu 1360 | mil.id 1361 | mil.in 1362 | mil.jo 1363 | mil.kh 1364 | mil.lb 1365 | mil.lv 1366 | mil.nz 1367 | mil.pe 1368 | mil.ph 1369 | mil.pl 1370 | mil.sh 1371 | mil.st 1372 | mil.tr 1373 | mil.uy 1374 | mil.ve 1375 | mil.ye 1376 | mil.za 1377 | mini 1378 | miyagi.jp 1379 | miyazaki.jp 1380 | mjj.la 1381 | mk 1382 | ml 1383 | mm 1384 | mma 1385 | mn 1386 | mo 1387 | mo.cn 1388 | mob.nr 1389 | mobi 1390 | mobi.tt 1391 | mobil.nr 1392 | mobile.nr 1393 | mobily 1394 | mod.om 1395 | mod.uk 1396 | moda 1397 | moe 1398 | moi 1399 | mom 1400 | monash 1401 | money 1402 | montblanc 1403 | mormon 1404 | mortgage 1405 | moscow 1406 | motorcycles 1407 | mov 1408 | movie 1409 | movistar 1410 | mp 1411 | mq 1412 | mr 1413 | ms 1414 | msk.ru 1415 | mt 1416 | mtn 1417 | mtpc 1418 | mtr 1419 | mu 1420 | muni.il 1421 | mus.br 1422 | museum 1423 | museum.mn 1424 | museum.om 1425 | museum.tt 1426 | mutuelle 1427 | mv 1428 | mw 1429 | mx 1430 | mx.tc 1431 | my 1432 | mz 1433 | na 1434 | nadex 1435 | nagano.jp 1436 | nagasaki.jp 1437 | nagoya 1438 | nagoya.jp 1439 | name 1440 | name.et 1441 | name.tt 1442 | name.vg 1443 | name.vn 1444 | nara.jp 1445 | nat.tn 1446 | naturbruksgymn.se 1447 | navy 1448 | nb.ca 1449 | nc 1450 | ne 1451 | ne.gg 1452 | ne.jp 1453 | ne.kr 1454 | nec 1455 | net 1456 | net.ac 1457 | net.ae 1458 | net.ag 1459 | net.ar 1460 | net.au 1461 | net.az 1462 | net.bb 1463 | net.bh 1464 | net.bm 1465 | net.br 1466 | net.bs 1467 | net.bz 1468 | net.ck 1469 | net.cm 1470 | net.cn 1471 | net.co 1472 | net.cu 1473 | net.cy 1474 | net.do 1475 | net.dz 1476 | net.ec 1477 | net.eg 1478 | net.er 1479 | net.et 1480 | net.fk 1481 | net.ge 1482 | net.gg 1483 | net.gr 1484 | net.gt 1485 | net.gu 1486 | net.hk 1487 | net.hn 1488 | net.ht 1489 | net.id 1490 | net.il 1491 | net.im 1492 | net.in 1493 | net.ir 1494 | net.je 1495 | net.jo 1496 | net.jp 1497 | net.kh 1498 | net.ki 1499 | net.kw 1500 | net.la 1501 | net.lb 1502 | net.lc 1503 | net.lv 1504 | net.ly 1505 | net.ma 1506 | net.mm 1507 | net.mo 1508 | net.ms 1509 | net.mt 1510 | net.mu 1511 | net.mx 1512 | net.my 1513 | net.na 1514 | net.nc 1515 | net.nf 1516 | net.ng 1517 | net.ni 1518 | net.np 1519 | net.nz 1520 | net.om 1521 | net.pa 1522 | net.pe 1523 | net.pg 1524 | net.ph 1525 | net.pk 1526 | net.pl 1527 | net.pt 1528 | net.py 1529 | net.qa 1530 | net.ru 1531 | net.sa 1532 | net.sb 1533 | net.sc 1534 | net.sd 1535 | net.sg 1536 | net.sh 1537 | net.so 1538 | net.st 1539 | net.sy 1540 | net.tc 1541 | net.tf 1542 | net.th 1543 | net.tn 1544 | net.tr 1545 | net.tt 1546 | net.tw 1547 | net.ua 1548 | net.uk 1549 | net.uy 1550 | net.vc 1551 | net.ve 1552 | net.vi 1553 | net.vn 1554 | net.vu 1555 | net.ws 1556 | net.ye 1557 | net.za 1558 | netbank 1559 | network 1560 | neustar 1561 | new 1562 | news 1563 | news.hu 1564 | nexus 1565 | nf 1566 | nf.ca 1567 | ng 1568 | ngo 1569 | ngo.ph 1570 | ngo.za 1571 | nhk 1572 | nhs.uk 1573 | ni 1574 | nic.im 1575 | nic.in 1576 | nic.tt 1577 | nic.uk 1578 | nico 1579 | nieruchomosci.pl 1580 | niigata.jp 1581 | ninja 1582 | nissan 1583 | nl 1584 | nl.ca 1585 | nm.cn 1586 | no 1587 | no.com 1588 | no.tc 1589 | nokia 1590 | nom.ag 1591 | nom.br 1592 | nom.co 1593 | nom.es 1594 | nom.fk 1595 | nom.fr 1596 | nom.ni 1597 | nom.pe 1598 | nom.pl 1599 | nom.re 1600 | nom.ro 1601 | nom.ve 1602 | nom.za 1603 | nome.pt 1604 | norton 1605 | not.br 1606 | notaires.fr 1607 | nowruz 1608 | np 1609 | nr 1610 | nra 1611 | nrw 1612 | ns.ca 1613 | nt.ca 1614 | nt.ro 1615 | ntr.br 1616 | ntt 1617 | nu 1618 | nu.ca 1619 | nx.cn 1620 | nyc 1621 | nz 1622 | obi 1623 | odo.br 1624 | office 1625 | oita.jp 1626 | ok.pe 1627 | okayama.jp 1628 | okinawa 1629 | okinawa.jp 1630 | om 1631 | omega 1632 | on.ca 1633 | one 1634 | ong 1635 | onl 1636 | online 1637 | oo.lv 1638 | ooo 1639 | or.at 1640 | or.cr 1641 | or.id 1642 | or.jp 1643 | or.kr 1644 | or.th 1645 | or.ug 1646 | oracle 1647 | orange 1648 | org 1649 | org.ac 1650 | org.ae 1651 | org.ag 1652 | org.ai 1653 | org.ar 1654 | org.au 1655 | org.az 1656 | org.bb 1657 | org.bh 1658 | org.bm 1659 | org.br 1660 | org.bs 1661 | org.ck 1662 | org.cm 1663 | org.cn 1664 | org.co 1665 | org.cu 1666 | org.cy 1667 | org.do 1668 | org.dz 1669 | org.ec 1670 | org.ee 1671 | org.eg 1672 | org.er 1673 | org.es 1674 | org.et 1675 | org.fj 1676 | org.fk 1677 | org.ge 1678 | org.gg 1679 | org.gr 1680 | org.gt 1681 | org.gu 1682 | org.hk 1683 | org.hn 1684 | org.ht 1685 | org.hu 1686 | org.il 1687 | org.im 1688 | org.in 1689 | org.ir 1690 | org.je 1691 | org.jo 1692 | org.jp 1693 | org.kh 1694 | org.ki 1695 | org.kw 1696 | org.la 1697 | org.lb 1698 | org.lc 1699 | org.lv 1700 | org.ly 1701 | org.ma 1702 | org.mm 1703 | org.mn 1704 | org.mo 1705 | org.mt 1706 | org.mu 1707 | org.mx 1708 | org.my 1709 | org.na 1710 | org.nc 1711 | org.ng 1712 | org.ni 1713 | org.np 1714 | org.nz 1715 | org.om 1716 | org.pa 1717 | org.pe 1718 | org.ph 1719 | org.pk 1720 | org.pl 1721 | org.pt 1722 | org.py 1723 | org.qa 1724 | org.ro 1725 | org.ru 1726 | org.sa 1727 | org.sb 1728 | org.sc 1729 | org.sd 1730 | org.se 1731 | org.sg 1732 | org.sh 1733 | org.so 1734 | org.st 1735 | org.sv 1736 | org.sy 1737 | org.tn 1738 | org.tr 1739 | org.tt 1740 | org.tw 1741 | org.ua 1742 | org.uk 1743 | org.uy 1744 | org.vc 1745 | org.ve 1746 | org.vi 1747 | org.vn 1748 | org.vu 1749 | org.ws 1750 | org.ye 1751 | org.yu 1752 | org.za 1753 | org.zw 1754 | organic 1755 | origins 1756 | osaka 1757 | osaka.jp 1758 | otc.au 1759 | otsuka 1760 | ovh 1761 | oz.au 1762 | pa 1763 | page 1764 | pamperedchef 1765 | panerai 1766 | paris 1767 | pars 1768 | parti.se 1769 | partners 1770 | parts 1771 | party 1772 | pay 1773 | pc.pl 1774 | pe 1775 | pe.ca 1776 | pe.kr 1777 | per.kh 1778 | per.sg 1779 | pet 1780 | pf 1781 | pg 1782 | ph 1783 | ph.tc 1784 | pharmacien.fr 1785 | pharmacy 1786 | philips 1787 | photo 1788 | photography 1789 | photos 1790 | physio 1791 | piaget 1792 | pics 1793 | pictet 1794 | pictures 1795 | pid 1796 | pin 1797 | ping 1798 | pink 1799 | pizza 1800 | pk 1801 | pl 1802 | pl.tc 1803 | pl.tf 1804 | place 1805 | play 1806 | playstation 1807 | plc.co.im 1808 | plc.im 1809 | plc.uk 1810 | plo.ps 1811 | plumbing 1812 | plus 1813 | pm 1814 | pn 1815 | pohl 1816 | poker 1817 | pol.dz 1818 | police.uk 1819 | porn 1820 | port.fr 1821 | post 1822 | powiat.pl 1823 | pp.ru 1824 | pp.se 1825 | ppg.br 1826 | pr 1827 | praxi 1828 | prd.fr 1829 | press 1830 | press.ma 1831 | press.se 1832 | presse.fr 1833 | pri.ee 1834 | principe.st 1835 | priv.at 1836 | priv.hu 1837 | priv.pl 1838 | pro 1839 | pro.ae 1840 | pro.br 1841 | pro.om 1842 | pro.tc 1843 | pro.tt 1844 | pro.vg 1845 | pro.vn 1846 | prod 1847 | productions 1848 | prof 1849 | promo 1850 | properties 1851 | property 1852 | protection 1853 | ps 1854 | psc.br 1855 | psi.br 1856 | pt 1857 | pub 1858 | pub.sa 1859 | publ.pt 1860 | pvt.ge 1861 | pw 1862 | py 1863 | qa 1864 | qc.ca 1865 | qc.com 1866 | qh.cn 1867 | qpon 1868 | qq.name 1869 | qsl.br 1870 | quebec 1871 | racing 1872 | re 1873 | re.kr 1874 | read 1875 | realestate.pl 1876 | realtor 1877 | realty 1878 | rec.br 1879 | rec.co 1880 | rec.ro 1881 | rec.ve 1882 | recht.pro 1883 | recipes 1884 | red 1885 | red.sv 1886 | redstone 1887 | redumbrella 1888 | rehab 1889 | reise 1890 | reisen 1891 | reit 1892 | reklam.hu 1893 | rel.pl 1894 | ren 1895 | rent 1896 | rentals 1897 | repair 1898 | report 1899 | republican 1900 | res.in 1901 | rest 1902 | restaurant 1903 | review 1904 | reviews 1905 | rexroth 1906 | rich 1907 | ricoh 1908 | rio 1909 | rip 1910 | rnrt.tn 1911 | rns.tn 1912 | rnu.tn 1913 | ro 1914 | rocher 1915 | rocks 1916 | rodeo 1917 | room 1918 | rs 1919 | rsvp 1920 | ru 1921 | ru.com 1922 | ru.tc 1923 | ru.tf 1924 | ruhr 1925 | run 1926 | rw 1927 | rwe 1928 | ryukyu 1929 | s.pe 1930 | sa 1931 | sa.com 1932 | sa.cr 1933 | saarland 1934 | safe 1935 | safety 1936 | saga.jp 1937 | saitama.jp 1938 | sakura 1939 | sale 1940 | salon 1941 | samsung 1942 | sandvik 1943 | sandvikcoromant 1944 | sanofi 1945 | saotome.st 1946 | sap 1947 | sapo 1948 | sapporo.jp 1949 | sark.gg 1950 | sarl 1951 | sas 1952 | saxo 1953 | sb 1954 | sbs 1955 | sc 1956 | sc.cn 1957 | sca 1958 | scb 1959 | sch.ae 1960 | sch.gg 1961 | sch.ir 1962 | sch.je 1963 | sch.ng 1964 | sch.sa 1965 | sch.sd 1966 | sch.uk 1967 | schaeffler 1968 | schmidt 1969 | scholarships 1970 | school 1971 | school.fj 1972 | school.nz 1973 | school.za 1974 | schule 1975 | schwarz 1976 | sci.eg 1977 | science 1978 | scor 1979 | scot 1980 | sd 1981 | sd.cn 1982 | se 1983 | se.com 1984 | se.net 1985 | se.tt 1986 | seat 1987 | sec.kz 1988 | sec.ps 1989 | security 1990 | seek 1991 | select 1992 | sendai.jp 1993 | sener 1994 | seoul.kr 1995 | services 1996 | seven 1997 | sew 1998 | sex 1999 | sex.hu 2000 | sex.pl 2001 | sexy 2002 | sfr 2003 | sg 2004 | sg.tf 2005 | sh 2006 | sh.cn 2007 | sharp 2008 | shell 2009 | shia 2010 | shiga.jp 2011 | shiksha 2012 | shimane.jp 2013 | shizuoka.jp 2014 | shoes 2015 | shop 2016 | shop.hu 2017 | shop.ms 2018 | shop.pl 2019 | shop.tc 2020 | shop.tm 2021 | show 2022 | shriram 2023 | si 2024 | singles 2025 | site 2026 | sj 2027 | sk 2028 | sk.ca 2029 | ski 2030 | skin 2031 | sklep.pl 2032 | sky 2033 | skype 2034 | sl 2035 | sld.do 2036 | sld.pa 2037 | slg.br 2038 | sm 2039 | sm.tv 2040 | smile 2041 | sn 2042 | sn.cn 2043 | sncf 2044 | so 2045 | soccer 2046 | social 2047 | softbank 2048 | software 2049 | sohu 2050 | solar 2051 | solutions 2052 | sony 2053 | sos.pl 2054 | soy 2055 | space 2056 | spb.ru 2057 | spiegel 2058 | sport.hu 2059 | spreadbetting 2060 | sr 2061 | srl 2062 | srv.br 2063 | ss 2064 | sshn.se 2065 | st 2066 | stada 2067 | star 2068 | starhub 2069 | statefarm 2070 | statoil 2071 | stb.pro 2072 | stc 2073 | stcgroup 2074 | stockholm 2075 | storage 2076 | store 2077 | store.co 2078 | store.ro 2079 | store.st 2080 | store.ve 2081 | studio 2082 | study 2083 | style 2084 | su 2085 | sucks 2086 | suli.hu 2087 | supplies 2088 | supply 2089 | support 2090 | surf 2091 | surgery 2092 | suzuki 2093 | sv 2094 | swatch 2095 | swiss 2096 | sx 2097 | sx.cn 2098 | sy 2099 | sydney 2100 | symantec 2101 | systems 2102 | sz 2103 | szex.hu 2104 | szkola.pl 2105 | tab 2106 | taipei 2107 | takamatsu.jp 2108 | taobao 2109 | targi.pl 2110 | tatamotors 2111 | tatar 2112 | tattoo 2113 | tax 2114 | taxi 2115 | tc 2116 | tci 2117 | td 2118 | team 2119 | tec.ve 2120 | tech 2121 | technology 2122 | tel 2123 | tel.no 2124 | tel.nr 2125 | telecom.na 2126 | telefonica 2127 | telememo.au 2128 | temasek 2129 | tennis 2130 | tf 2131 | tg 2132 | th 2133 | th.tc 2134 | thd 2135 | theater 2136 | theatre 2137 | then.fail 2138 | tickets 2139 | tienda 2140 | tiffany 2141 | tips 2142 | tires 2143 | tirol 2144 | tj 2145 | tj.cn 2146 | tk 2147 | tl 2148 | tlf.nr 2149 | tm 2150 | tm.fr 2151 | tm.hu 2152 | tm.mt 2153 | tm.pl 2154 | tm.ro 2155 | tm.se 2156 | tm.za 2157 | tmall 2158 | tmp.br 2159 | tn 2160 | to 2161 | tochigi.jp 2162 | today 2163 | tokushima.jp 2164 | tokyo 2165 | tokyo.jp 2166 | tools 2167 | top 2168 | toray 2169 | toshiba 2170 | tottori.jp 2171 | tourism.pl 2172 | tourism.tn 2173 | tours 2174 | town 2175 | toyama.jp 2176 | toyota 2177 | toys 2178 | tozsde.hu 2179 | tp 2180 | tr 2181 | trade 2182 | trading 2183 | training 2184 | travel 2185 | travel.pl 2186 | travel.tt 2187 | travelers 2188 | travelersinsurance 2189 | trd.br 2190 | trust 2191 | trv 2192 | tt 2193 | tube 2194 | tui 2195 | tur.br 2196 | turystyka.pl 2197 | tushu 2198 | tv 2199 | tv.br 2200 | tw 2201 | tw.cn 2202 | twbbs.org 2203 | twgg.org 2204 | twgogo.com 2205 | tz 2206 | ua 2207 | ua.tc 2208 | ubs 2209 | ug 2210 | uk 2211 | uk.com 2212 | uk.net 2213 | uk.pn 2214 | uk.tc 2215 | uk.to 2216 | uk.tt 2217 | um 2218 | unam.na 2219 | uni.cc 2220 | uni.me 2221 | university 2222 | uno 2223 | uol 2224 | us 2225 | us.com 2226 | us.ms 2227 | us.org 2228 | us.pn 2229 | us.tc 2230 | us.tf 2231 | us.to 2232 | us.tt 2233 | usa.cc 2234 | utazas.hu 2235 | utsunomiya.jp 2236 | uu.mt 2237 | uy 2238 | uy.com 2239 | uz 2240 | va 2241 | vacations 2242 | vana 2243 | vc 2244 | ve 2245 | vegas 2246 | ventures 2247 | verisign 2248 | versicherung 2249 | vet 2250 | vet.br 2251 | veterinaire.fr 2252 | vg 2253 | vi 2254 | viajes 2255 | video 2256 | video.hu 2257 | villas 2258 | vin 2259 | vip 2260 | virgin 2261 | vision 2262 | vista 2263 | vistaprint 2264 | viva 2265 | vlaanderen 2266 | vn 2267 | vodka 2268 | volkswagen 2269 | vote 2270 | voting 2271 | voto 2272 | voyage 2273 | vu 2274 | vv.cc 2275 | wakayama.jp 2276 | wales 2277 | walter 2278 | wang 2279 | wanggou 2280 | watch 2281 | watches 2282 | weather 2283 | web 2284 | web.co 2285 | web.do 2286 | web.pk 2287 | web.ve 2288 | web.za 2289 | webcam 2290 | weber 2291 | website 2292 | wed 2293 | wedding 2294 | weir 2295 | wf 2296 | whoswho 2297 | wien 2298 | wiki 2299 | williamhill 2300 | win 2301 | windows 2302 | wine 2303 | wme 2304 | wo.tc 2305 | work 2306 | works 2307 | world 2308 | ws 2309 | wtc 2310 | wtf 2311 | www.ro 2312 | xbox 2313 | xerox 2314 | xin 2315 | xj.cn 2316 | xn--1qqw23a 2317 | xn--3bst00m 2318 | xn--3ds443g 2319 | xn--3e0b707e 2320 | xn--45q11c 2321 | xn--55qw42g 2322 | xn--55qx5d 2323 | xn--55qx5d.hk 2324 | xn--55qx5d.xn--j6w193g 2325 | xn--6frz82g 2326 | xn--6qq986b3xl 2327 | xn--ciqpn.xn--j6w193g 2328 | xn--czr694b 2329 | xn--fiq228c5hs 2330 | xn--fiqs8s 2331 | xn--fiqz9s 2332 | xn--flw351e 2333 | xn--fzc2c9e2c 2334 | xn--gmqw5a.xn--j6w193g 2335 | xn--hxt814e 2336 | xn--i1b6b1a6a2e 2337 | xn--io0a7i 2338 | xn--io0a7i.xn--j6w193g 2339 | xn--j6w193g 2340 | xn--kput3i 2341 | xn--mxtq1m.xn--j6w193g 2342 | xn--nqv7f 2343 | xn--o3cw4h 2344 | xn--od0alg 2345 | xn--od0alg.xn--j6w193g 2346 | xn--q9jyb4c 2347 | xn--rhqv96g 2348 | xn--ses554g 2349 | xn--tn0ag.xn--j6w193g 2350 | xn--uc0atv.xn--j6w193g 2351 | xn--vhquv 2352 | xn--wcvs22d.xn--j6w193g 2353 | xn--xhq521b 2354 | xo.vc 2355 | xorg.pl 2356 | xperia 2357 | xxx 2358 | xyz 2359 | xz.cn 2360 | yachts 2361 | yamagata.jp 2362 | yamaguchi.jp 2363 | yamanashi.jp 2364 | yamaxun 2365 | yandex 2366 | ye 2367 | yi.org 2368 | yk.ca 2369 | yn.cn 2370 | yodobashi 2371 | yoga 2372 | yokohama 2373 | yokohama.jp 2374 | youtube 2375 | yt 2376 | yu 2377 | za 2378 | za.com 2379 | za.net 2380 | za.org 2381 | zara 2382 | zero 2383 | zip 2384 | zj.cn 2385 | zlg.br 2386 | zm 2387 | zone 2388 | zuerich 2389 | zw 2390 | -------------------------------------------------------------------------------- /src/dnspod-top2000-sub-domains.txt: -------------------------------------------------------------------------------- 1 | * 2 | *.238 3 | *._domainkey 4 | *.a 5 | *.bbs 6 | *.cn 7 | *.com 8 | *.demo 9 | *.dev 10 | *.fht 11 | *.game 12 | *.gov 13 | *.hk 14 | *.hsd 15 | *.img 16 | *.m 17 | *.n 18 | *.product 19 | *.q33 20 | *.qq 21 | *.r 22 | *.test 23 | *.v 24 | *.www 25 | 0 26 | 001 27 | 002 28 | 01 29 | 0a9b2de453a49a6c9f578588a9ca8cf863501ed6 30 | 1 31 | 10 32 | 100 33 | 101 34 | 11 35 | 1100lu 36 | 111 37 | 1111 38 | 114 39 | 12 40 | 120 41 | 123 42 | 129979 43 | 13 44 | 14 45 | 15 46 | 16 47 | 163 48 | 168 49 | 17 50 | 176 51 | 178896 52 | 18 53 | 180 54 | 19 55 | 2 56 | 20 57 | 2012 58 | 2013 59 | 2014 60 | 2015 61 | 2016 62 | 21 63 | 21112 64 | 22 65 | 222 66 | 22cn575615 67 | 22eee 68 | 23 69 | 24 70 | 25 71 | 26 72 | 26uuu 73 | 26xe 74 | 27 75 | 28 76 | 29 77 | 3 78 | 30 79 | 300 80 | 31 81 | 315 82 | 32 83 | 33 84 | 333 85 | 33eee 86 | 34 87 | 35 88 | 36 89 | 360 90 | 365 91 | 37 92 | 38 93 | 39 94 | 3d 95 | 3g 96 | 3gwww 97 | 3w 98 | 4 99 | 400 100 | 44 101 | 4444kk 102 | 4g 103 | 5 104 | 51 105 | 520 106 | 544qq 107 | 55 108 | 555 109 | 56 110 | 58 111 | 595688 112 | 5g 113 | 6 114 | 611vv 115 | 66 116 | 666 117 | 669139 118 | 6j 119 | 6s 120 | 7 121 | 77 122 | 777 123 | 777me 124 | 8 125 | 88 126 | 888 127 | 9 128 | 99 129 | 999 130 | @ 131 | DNS2 132 | Francais 133 | IN 134 | Quel 135 | TEL 136 | _amazonses 137 | _dmarc 138 | _dmarc.mail1 139 | _dmarc.mail10 140 | _dmarc.mail2 141 | _dmarc.mail3 142 | _dmarc.mail4 143 | _dmarc.mail5 144 | _dmarc.mail6 145 | _dmarc.mail7 146 | _dmarc.mail8 147 | _dmarc.mail9 148 | _domainkey 149 | _sip._tls 150 | _sipfederationtls._tcp 151 | a 152 | a1 153 | a2 154 | a3 155 | a4 156 | a5 157 | a6 158 | a8 159 | aa 160 | aaa 161 | aaak7 162 | aal 163 | ab 164 | abc 165 | about 166 | ac 167 | access 168 | account 169 | act 170 | activity 171 | ad 172 | adm 173 | admin 174 | ads 175 | ag 176 | agent 177 | ah 178 | ai 179 | akesu 180 | aks 181 | al 182 | ale 183 | ali 184 | aliyun 185 | all 186 | aller 187 | allons 188 | alsm 189 | alt 190 | am 191 | amazon 192 | anange 193 | android 194 | ankang 195 | annee 196 | anqing 197 | anquye 198 | anshan 199 | anshun 200 | anyang 201 | ap 202 | api 203 | api2 204 | apk 205 | app 206 | app.lhzs 207 | apple 208 | apps 209 | aq 210 | ar 211 | art 212 | article 213 | as 214 | asd 215 | asd.f 216 | ask 217 | asp 218 | assets 219 | auth 220 | auto 221 | autodiscover 222 | av 223 | avantage 224 | avatar 225 | avec 226 | avxcl 227 | aws 228 | ay 229 | b 230 | b1 231 | b2 232 | b2b 233 | b3 234 | ba 235 | baby 236 | back 237 | backend 238 | backup 239 | bai 240 | baicheng 241 | baidu 242 | baidu1 243 | baidu2 244 | baike 245 | baise 246 | baisha 247 | baishan 248 | baiyin 249 | bak 250 | bao 251 | baoding 252 | baoji 253 | baoshan 254 | baoting 255 | baotou 256 | base 257 | bazhong 258 | bb 259 | bbb 260 | bbs 261 | bbs1 262 | bbs2 263 | bc 264 | bd 265 | bd123001 266 | bd3g 267 | bdf 268 | bdtb 269 | beau 270 | beian 271 | beihai 272 | beijing 273 | bengbu 274 | benxi 275 | best 276 | beta 277 | betl 278 | bf 279 | bg 280 | bh 281 | bhs 282 | bi 283 | biao 284 | bien 285 | bijie 286 | binzhou 287 | bit 288 | biz 289 | bj 290 | bk 291 | bl 292 | blc 293 | blog 294 | bm 295 | bn 296 | bo 297 | bole 298 | bonnes 299 | bons 300 | book 301 | boss 302 | boutique 303 | box 304 | bozhou 305 | brand 306 | brandalley 307 | bs 308 | bt 309 | bug 310 | business 311 | buy 312 | bx 313 | bxbg 314 | by 315 | bygl 316 | bz 317 | bzml 318 | c 319 | c1 320 | c2 321 | c3 322 | ca 323 | cache 324 | cacti 325 | cadeau 326 | cai 327 | calendar 328 | call 329 | cangzhou 330 | car 331 | card 332 | carte 333 | cas 334 | cb 335 | cc 336 | ccc 337 | cd 338 | cddck 339 | cdiscount 340 | cdn 341 | cdn1 342 | cdn2 343 | ce 344 | center 345 | certifiee 346 | ces 347 | ceshi 348 | cf 349 | cg 350 | ch 351 | cha 352 | changchun 353 | changde 354 | changdu 355 | changge 356 | changji 357 | changjiang 358 | changle 359 | changsha 360 | changshu 361 | changzhi 362 | changzhou 363 | chaohu 364 | chaoyang 365 | chaozhou 366 | chat 367 | chaussures 368 | cheap 369 | check 370 | chengde 371 | chengdu 372 | chengmai 373 | chenzhou 374 | cher 375 | chez 376 | chibi 377 | chifeng 378 | china 379 | chizhou 380 | chongqing 381 | chongzuo 382 | chuxiong 383 | chuzhou 384 | ci 385 | city 386 | cixi 387 | cj 388 | cjs168 389 | ck 390 | cl 391 | click 392 | client 393 | clients 394 | cliquez 395 | cloud 396 | cls 397 | club 398 | cm 399 | cm1 400 | cms 401 | cn 402 | cname 403 | cnc 404 | cnn 405 | code 406 | colis 407 | com 408 | commande 409 | comment 410 | company 411 | config 412 | conghua 413 | connect 414 | console 415 | contact 416 | cool 417 | corp 418 | count 419 | cp 420 | cpanel 421 | cps 422 | cq 423 | credit 424 | creditcard 425 | crm 426 | cs 427 | css 428 | ct 429 | cw 430 | cx 431 | cy 432 | cz 433 | d 434 | d1 435 | d2 436 | d3 437 | d4 438 | da 439 | dafeng 440 | daili 441 | daily 442 | dali 443 | dalian 444 | dandong 445 | danmu 446 | danyang 447 | danzhou 448 | daohang 449 | daqing 450 | data 451 | dataminer-telecom 452 | dataminer-unicom 453 | dates 454 | datong 455 | dazhou 456 | db 457 | dc 458 | dd 459 | ddd 460 | de 461 | default._domainkey 462 | default._domainkey.a 463 | demo 464 | demo1 465 | demo2 466 | desk 467 | dev 468 | deyang 469 | dezhou 470 | df 471 | dg 472 | dh 473 | dilianbeian 474 | dingan 475 | dingzhou 476 | diqing 477 | direct 478 | disk 479 | diy 480 | dj 481 | dk 482 | dkim._domainkey 483 | dkim1._domainkey 484 | dl 485 | dlq 486 | dm 487 | dn 488 | dns 489 | dns1 490 | do 491 | doc 492 | docs 493 | domain 494 | dongfang 495 | dongguan 496 | dongyang 497 | dongying 498 | down 499 | down1 500 | down2 501 | download 502 | dp 503 | dq 504 | ds 505 | dt 506 | du 507 | dw 508 | dx 509 | dxal 510 | dy 511 | dz 512 | e 513 | easy 514 | ebay 515 | ec 516 | economie 517 | edm 518 | edu 519 | ee 520 | eee 521 | eel 522 | eerduosi 523 | eeuss 524 | em 525 | email 526 | en 527 | english 528 | enshi 529 | ent 530 | enterpriseenrollment 531 | enterpriseregistration 532 | epg 533 | eq 534 | er 535 | erds 536 | erp 537 | es 538 | est 539 | event 540 | ex 541 | exam 542 | exmail 543 | ez 544 | ezhou 545 | f 546 | f1 547 | f2 548 | f2.market 549 | fa 550 | faire 551 | fang 552 | fangchenggang 553 | fanli 554 | faq 555 | fashion 556 | fast 557 | fb 558 | fc 559 | fcg 560 | fd 561 | feed 562 | fenghua 563 | fenxiao 564 | ff 565 | fff 566 | fgey 567 | fh 568 | fi 569 | file 570 | files 571 | finance 572 | fj 573 | fk 574 | fl 575 | fladmin 576 | flash 577 | flv 578 | fm 579 | fnac 580 | focus 581 | food 582 | forum 583 | foshan 584 | fozhu 585 | fr 586 | frais 587 | france 588 | free 589 | fs 590 | ft 591 | ftp 592 | fuck 593 | fuke 594 | fun 595 | fund 596 | fuqing 597 | fushun 598 | fuxin 599 | fuyang 600 | fuzhou 601 | fw 602 | fx 603 | fy 604 | fz 605 | g 606 | g1 607 | g2 608 | g3 609 | g3.gslb 610 | g5 611 | g6.gslb 612 | ga 613 | galerieslafayette 614 | game 615 | games 616 | gansu 617 | ganzhou 618 | ganzi 619 | garden 620 | gb 621 | gc 622 | gd 623 | gengxin 624 | gf 625 | gg 626 | ggg 627 | gh 628 | gi 629 | git 630 | gitlab 631 | gj 632 | gk 633 | gl 634 | global 635 | gm 636 | gmarket 637 | gn 638 | go 639 | gongyi 640 | good 641 | google 642 | google._domainkey 643 | gov 644 | gov.cn 645 | gp 646 | gps 647 | gratuit 648 | green 649 | group 650 | gs 651 | gslb-mmtrix 652 | gt 653 | guangan 654 | guangyuan 655 | guangzhou 656 | guanli 657 | guide 658 | guigang 659 | guilin 660 | guiyang 661 | guizhou 662 | guoluo 663 | guyuan 664 | gw 665 | gx 666 | gy 667 | gz 668 | h 669 | h1 670 | h5 671 | ha 672 | haerbin 673 | haibei 674 | haicheng 675 | haidong 676 | haikou 677 | hainan 678 | haining 679 | hami 680 | handan 681 | hangzhou 682 | hanzhong 683 | hao 684 | hao123 685 | haoleav 686 | hb 687 | hc 688 | hd 689 | he 690 | health 691 | hebei 692 | hebi 693 | hefei 694 | hefeng 695 | hegang 696 | heihe 697 | help 698 | henan 699 | hengshui 700 | hengyang 701 | henhenlu 702 | hetian 703 | hexian 704 | heyuan 705 | heze 706 | hezhou 707 | hf 708 | hg 709 | hh 710 | hhh 711 | hhl 712 | hhs 713 | hi 714 | history 715 | hj 716 | hk 717 | hk1 718 | hk2 719 | hl 720 | hlbe 721 | hld 722 | hlj 723 | hlr 724 | hm 725 | hn 726 | hnh 727 | hnzz 728 | home 729 | honghe 730 | host 731 | host1 732 | host2 733 | hot 734 | hotel 735 | house 736 | houtai 737 | hp 738 | hq 739 | hr 740 | hrb 741 | hs 742 | hshi 743 | ht 744 | html 745 | hu 746 | huaian 747 | huaibei 748 | huaihua 749 | huainan 750 | huanggang 751 | huangnan 752 | huangshan 753 | huangshi 754 | hubei 755 | huhehaote 756 | huizhou 757 | huludao 758 | hunan 759 | huodong 760 | huzhou 761 | hw 762 | hwpop 763 | hwsmtp 764 | hx 765 | hy 766 | hz 767 | i 768 | i1 769 | i2 770 | iask 771 | icloud 772 | id 773 | idc 774 | ie 775 | im 776 | image 777 | images 778 | images2 779 | imap 780 | img 781 | img0 782 | img01 783 | img1 784 | img2 785 | img3 786 | img4 787 | img5 788 | img6 789 | img7 790 | img8 791 | imgs 792 | importants 793 | index 794 | info 795 | interface 796 | ios 797 | ip 798 | iphone 799 | ipv6 800 | ismart 801 | it 802 | item 803 | iwap 804 | j 805 | ja 806 | jb 807 | jc 808 | jcc 809 | jd 810 | jdz 811 | jenkins 812 | jennyfer 813 | jf 814 | jh 815 | jhs 816 | jia 817 | jiaju 818 | jiamusi 819 | jian 820 | jiangmen 821 | jiangsu 822 | jiangxi 823 | jiangyan 824 | jiangyin 825 | jiankang 826 | jiaozuo 827 | jiaxing 828 | jilin 829 | jimo 830 | jinan 831 | jinchang 832 | jincheng 833 | jingdezhen 834 | jingjiang 835 | jingmen 836 | jingzhou 837 | jinhua 838 | jining 839 | jinjiang 840 | jintan 841 | jinzhong 842 | jinzhou 843 | jira 844 | jiujiang 845 | jiuquan 846 | jixi 847 | jiyuan 848 | jizz 849 | jj 850 | jjj 851 | jk 852 | jl 853 | jm 854 | jms 855 | jn 856 | job 857 | jp 858 | jq 859 | jr 860 | js 861 | jslverify 862 | jt 863 | jump 864 | jusqu 865 | juventus 866 | jw 867 | jx 868 | jy 869 | jyg 870 | jz 871 | k 872 | ka 873 | kaifeng 874 | kaili 875 | kaiyuan 876 | kb 877 | kc 878 | kefu 879 | kel 880 | kelamayi 881 | key._domainkey 882 | kf 883 | kh 884 | kj 885 | kk 886 | kk44kk 887 | kkk 888 | kl 889 | klj 890 | klmy 891 | km 892 | kq 893 | kr 894 | ks 895 | ksc.gslb 896 | kt 897 | kuerle 898 | kunming 899 | kunshan 900 | kzls 901 | l 902 | la 903 | lab 904 | lady 905 | lai 906 | laibin 907 | laifeng 908 | laiwu 909 | laizhou 910 | langfang 911 | lanzhou 912 | laredoute 913 | lasa 914 | lb 915 | lc 916 | ld 917 | le 918 | learning 919 | leche 920 | ledong 921 | les 922 | leshan 923 | lf 924 | lg 925 | lh 926 | lhc 927 | lhzs 928 | lianyungang 929 | liaocheng 930 | liaoning 931 | liaoyang 932 | liaoyuan 933 | lib 934 | lichuan 935 | life 936 | light 937 | lijiang 938 | linan 939 | lincang 940 | line 941 | linfen 942 | lingao 943 | lingbao 944 | lingcang 945 | lingshui 946 | link 947 | linode 948 | linxia 949 | linyi 950 | linyixian 951 | linzhi 952 | lishui 953 | list 954 | liuan 955 | liupanshui 956 | liuzhou 957 | live 958 | livraison 959 | liyang 960 | lj 961 | ll 962 | lls 963 | lm 964 | ln 965 | load 966 | local 967 | localhost 968 | log 969 | login 970 | lol 971 | long 972 | longyan 973 | looks 974 | lotto 975 | loudi 976 | love 977 | lps 978 | ls 979 | lt 980 | luohe 981 | luoyang 982 | luzhou 983 | lv 984 | lvliang 985 | lvyou 986 | lw 987 | lx 988 | ly 989 | lyg 990 | lyncdiscover 991 | lz 992 | m 993 | m1 994 | m2 995 | m3 996 | m4 997 | m5 998 | ma 999 | maanshan 1000 | mac 1001 | mail 1002 | mail._domainkey 1003 | mail._domainkey.mail 1004 | mail1 1005 | mail10 1006 | mail11 1007 | mail12 1008 | mail13 1009 | mail2 1010 | mail3 1011 | mail4 1012 | mail5 1013 | mail6 1014 | mail7 1015 | mail8 1016 | mail9 1017 | main 1018 | maka 1019 | mall 1020 | man 1021 | manage 1022 | manager 1023 | mandrill._domainkey 1024 | mango 1025 | maoming 1026 | map 1027 | maps 1028 | market 1029 | marques 1030 | mas 1031 | master 1032 | max 1033 | mb 1034 | mc 1035 | md 1036 | mdaemon._domainkey 1037 | mdj 1038 | me 1039 | media 1040 | meet 1041 | meeting 1042 | meinv 1043 | meishan 1044 | meishi 1045 | meizhou 1046 | meizu 1047 | member 1048 | message 1049 | metronews 1050 | mf 1051 | mg 1052 | mh 1053 | mi 1054 | mianyang 1055 | mil 1056 | mim 1057 | mini 1058 | mino 1059 | mir 1060 | missguidedfr 1061 | mj 1062 | mk 1063 | mkt 1064 | ml 1065 | mm 1066 | mmm 1067 | mmmm 1068 | mms 1069 | mn 1070 | mo 1071 | mob 1072 | mobi 1073 | mobile 1074 | model 1075 | modes 1076 | moins 1077 | money 1078 | monitor 1079 | movie 1080 | moyen 1081 | mp 1082 | mp3 1083 | mpingpong 1084 | mr 1085 | ms 1086 | msg 1087 | msoid 1088 | mt 1089 | mu 1090 | mudanjiang 1091 | music 1092 | mv 1093 | mvip88888 1094 | mx 1095 | mx1 1096 | mx2 1097 | my 1098 | mysql 1099 | mz 1100 | n 1101 | nanan 1102 | nanchang 1103 | nanchong 1104 | nanjing 1105 | nanke 1106 | nanning 1107 | nanping 1108 | nantong 1109 | nanyang 1110 | nas 1111 | nb 1112 | nba 1113 | nc 1114 | nd 1115 | neijiang 1116 | net 1117 | new 1118 | news 1119 | newsletter 1120 | nexus 1121 | ningbo 1122 | ningde 1123 | nj 1124 | nk 1125 | nl 1126 | nm 1127 | nmg 1128 | nn 1129 | no 1130 | note 1131 | notice 1132 | notify 1133 | now 1134 | np 1135 | nq 1136 | ns 1137 | ns1 1138 | ns2 1139 | ns3 1140 | ns4 1141 | nt 1142 | nt168 1143 | nujiang 1144 | nx 1145 | ny 1146 | nz 1147 | o 1148 | o2o 1149 | oa 1150 | offerts 1151 | office 1152 | ok 1153 | old 1154 | on 1155 | one 1156 | online 1157 | op 1158 | open 1159 | openapi 1160 | order 1161 | os 1162 | oss 1163 | outlet 1164 | p 1165 | p1 1166 | p2 1167 | p2p 1168 | p3 1169 | pan 1170 | panier 1171 | panjin 1172 | pantalon 1173 | panzhihua 1174 | park 1175 | partner 1176 | passport 1177 | pay 1178 | pay1 1179 | pay2 1180 | payer 1181 | payment 1182 | pc 1183 | pdf 1184 | pds 1185 | pe 1186 | peixun 1187 | penglai 1188 | peu 1189 | peut 1190 | pf 1191 | phone 1192 | photo 1193 | php 1194 | phpmyadmin 1195 | pi 1196 | pic 1197 | pic1 1198 | pic2 1199 | pili-zeus 1200 | pingdingshan 1201 | pingdu 1202 | pinghu 1203 | pingliang 1204 | pinglun 1205 | pingpong 1206 | pingxiang 1207 | pj 1208 | pk 1209 | pl 1210 | plaisir 1211 | play 1212 | pld 1213 | pm 1214 | pma 1215 | pms 1216 | pod 1217 | pop 1218 | pop3 1219 | portal 1220 | pos 1221 | post 1222 | pour 1223 | pp 1224 | pr 1225 | prix 1226 | pro 1227 | product 1228 | produits 1229 | profitez 1230 | project 1231 | promod 1232 | promos 1233 | promotions 1234 | propos 1235 | proxy 1236 | ps 1237 | pt 1238 | pub 1239 | public 1240 | pure 1241 | push 1242 | putian 1243 | putizi 1244 | putizipifa 1245 | puyang 1246 | px 1247 | py 1248 | q 1249 | q1 1250 | q2 1251 | q3 1252 | qa 1253 | qb 1254 | qc 1255 | qd 1256 | qdf 1257 | qdn 1258 | qg 1259 | qh 1260 | qhd 1261 | qianjiang 1262 | qiannan 1263 | qidong 1264 | qingdao 1265 | qingxu 1266 | qingyang 1267 | qingyuan 1268 | qingzhou 1269 | qinhuangdao 1270 | qinzhou 1271 | qionghai 1272 | qiongzhong 1273 | qiqihaer 1274 | qitaihe 1275 | qiye 1276 | qj 1277 | qm 1278 | qn 1279 | qp 1280 | qq 1281 | qqhr 1282 | qqq 1283 | qs 1284 | qt 1285 | qth 1286 | qualite 1287 | quan 1288 | quanzhou 1289 | quhui 1290 | quiz 1291 | quiz1 1292 | quiz10 1293 | quiz11 1294 | quiz12 1295 | quiz13 1296 | quiz14 1297 | quiz15 1298 | quiz16 1299 | quiz17 1300 | quiz18 1301 | quiz19 1302 | quiz2 1303 | quiz20 1304 | quiz3 1305 | quiz4 1306 | quiz5 1307 | quiz6 1308 | quiz7 1309 | quiz8 1310 | quiz88 1311 | quiz9 1312 | qujing 1313 | quzhou 1314 | qwe 1315 | qx 1316 | qxn 1317 | qxw 1318 | qy 1319 | qz 1320 | r 1321 | rabais 1322 | radio 1323 | rc 1324 | rd 1325 | read 1326 | redmine 1327 | reductions 1328 | reduits 1329 | reg 1330 | report 1331 | res 1332 | resource 1333 | resources 1334 | review 1335 | rikaze 1336 | rizhao 1337 | rj 1338 | rkz 1339 | rl 1340 | room 1341 | rrr 1342 | rs 1343 | rss 1344 | rtx 1345 | ru 1346 | rugao 1347 | ruian 1348 | rz 1349 | s 1350 | s0 1351 | s1 1352 | s1.wz 1353 | s2 1354 | s2.wz 1355 | s3 1356 | s4 1357 | s5 1358 | s6 1359 | s7 1360 | s8 1361 | s9 1362 | sa 1363 | safe 1364 | saison 1365 | sale 1366 | sales 1367 | sanmenxia 1368 | sanming 1369 | sansha 1370 | sanya 1371 | sarenza 1372 | satisfait 1373 | sb 1374 | sc 1375 | school 1376 | scnj 1377 | sctrack 1378 | sctrack.mail 1379 | sd 1380 | sdk 1381 | se 1382 | search 1383 | securise 1384 | send 1385 | sendmail 1386 | sense 1387 | seo 1388 | server 1389 | server1 1390 | server2 1391 | service 1392 | services 1393 | sex 1394 | sf 1395 | sg 1396 | sh 1397 | shaanxi 1398 | shandong 1399 | shanghai 1400 | shangluo 1401 | shangqiu 1402 | shangrao 1403 | shangyu 1404 | shantou 1405 | shanxi 1406 | shaoguan 1407 | shaoxing 1408 | shaoyang 1409 | share 1410 | sharp 1411 | shenyang 1412 | shenzhen 1413 | shihezi 1414 | shijiazhuang 1415 | shishi 1416 | shiyan 1417 | shop 1418 | shouguang 1419 | shouji 1420 | show 1421 | shuangyashan 1422 | shuozhou 1423 | shuyang 1424 | shz 1425 | simao 1426 | sina 1427 | sip 1428 | siping 1429 | site 1430 | sitemap 1431 | sites 1432 | sj 1433 | sjlp 1434 | sjz 1435 | sk 1436 | sky 1437 | sl 1438 | sm 1439 | smart 1440 | smm 1441 | sms 1442 | smtp 1443 | smx 1444 | sn 1445 | snj 1446 | sns 1447 | so 1448 | soft 1449 | sogou 1450 | solde 1451 | soldes 1452 | songyuan 1453 | sont 1454 | soso 1455 | sou 1456 | source 1457 | sp 1458 | space 1459 | special 1460 | spf 1461 | sport 1462 | sports 1463 | sq 1464 | sql 1465 | sqqvod 1466 | sr 1467 | ss 1468 | ssc 1469 | ssh 1470 | ssl 1471 | sso 1472 | sss 1473 | st 1474 | star 1475 | stat 1476 | static 1477 | static2 1478 | statics 1479 | stats 1480 | status 1481 | stmp 1482 | stock 1483 | store 1484 | story 1485 | study 1486 | style 1487 | styles 1488 | su 1489 | suihua 1490 | suining 1491 | suizhou 1492 | super 1493 | support 1494 | suqian 1495 | sur 1496 | surprise 1497 | survey 1498 | suyu 1499 | suzhou 1500 | sv 1501 | svip 1502 | svn 1503 | sw 1504 | swap 1505 | swt 1506 | sx 1507 | sxd 1508 | sy 1509 | sys 1510 | system 1511 | sz 1512 | szs 1513 | t 1514 | t1 1515 | t2 1516 | t3 1517 | t4 1518 | ta 1519 | tacheng 1520 | tag 1521 | taian 1522 | taicang 1523 | taixing 1524 | taiyuan 1525 | taizhou 1526 | talk 1527 | tangshan 1528 | tao 1529 | taobao 1530 | task 1531 | tb 1532 | tc 1533 | td 1534 | tdm 1535 | team 1536 | tech 1537 | temp 1538 | tengzhou 1539 | test 1540 | test1 1541 | test2 1542 | test3 1543 | testdns.gslb 1544 | tf 1545 | tg 1546 | tggbaidu 1547 | th 1548 | think 1549 | tianjin 1550 | tianmen 1551 | tianshui 1552 | tieba 1553 | tieling 1554 | time 1555 | tj 1556 | tk 1557 | tl 1558 | tlf 1559 | tm 1560 | tmall 1561 | tmp 1562 | tmsk 1563 | tongcheng 1564 | tongchuan 1565 | tonghua 1566 | tongji 1567 | tongliao 1568 | tongling 1569 | tongren 1570 | tongxiang 1571 | tool 1572 | tools 1573 | top 1574 | topic 1575 | toupiao 1576 | tp 1577 | tpfd 1578 | tr 1579 | track 1580 | trade 1581 | travel 1582 | ts 1583 | tt 1584 | ttt 1585 | tu 1586 | tuan 1587 | tui 1588 | tuku 1589 | tulufan 1590 | tunchang 1591 | tupian 1592 | tv 1593 | tw 1594 | tx 1595 | txt 1596 | ty 1597 | tz 1598 | u 1599 | uc 1600 | ucenter 1601 | uk 1602 | un 1603 | union 1604 | up 1605 | update 1606 | upload 1607 | url 1608 | us 1609 | us1 1610 | usa 1611 | user 1612 | uu 1613 | uuu 1614 | v 1615 | v01.gslb 1616 | v02.gslb 1617 | v1 1618 | v2 1619 | v2-ag 1620 | v3 1621 | v4 1622 | v5 1623 | v6 1624 | ventes 1625 | video 1626 | view 1627 | vip 1628 | vip1 1629 | vip2 1630 | vip3 1631 | vip3699 1632 | vip4 1633 | vip5678 1634 | vip6 1635 | vip66666 1636 | vip8 1637 | vip88888 1638 | visiter 1639 | vitrines 1640 | vod 1641 | voice 1642 | vont 1643 | vote 1644 | vous 1645 | vpn 1646 | vpn2 1647 | vps 1648 | vraies 1649 | vv 1650 | vvv 1651 | vvvv 1652 | vvvvv 1653 | vvw 1654 | vvwvv 1655 | vvww 1656 | vvwwv 1657 | vwv 1658 | vwvv 1659 | vwvw 1660 | vww 1661 | vwwv 1662 | w 1663 | w1 1664 | w2 1665 | w3 1666 | w5 1667 | w6 1668 | wa 1669 | wak 1670 | wan 1671 | wang 1672 | wap 1673 | wap1 1674 | wap2 1675 | wap3 1676 | wapgt 1677 | wapzb 1678 | wapzdy 1679 | watch 1680 | wawawa 1681 | wb 1682 | wc 1683 | wd 1684 | we 1685 | web 1686 | web1 1687 | web2 1688 | webapp 1689 | webmail 1690 | wechat 1691 | wei 1692 | weibo 1693 | weifang 1694 | weihai 1695 | weiku 1696 | weinan 1697 | weixin 1698 | wen 1699 | wenchang 1700 | wenda 1701 | wenling 1702 | wenzhou 1703 | wf 1704 | wfd 1705 | wg 1706 | wh 1707 | whale.rtmp 1708 | wifi 1709 | wiki 1710 | win 1711 | wj 1712 | wjq 1713 | wk 1714 | wl 1715 | wlcb 1716 | wlik 1717 | wlk 1718 | wlmq 1719 | wm 1720 | wn 1721 | wo 1722 | woman 1723 | work 1724 | world 1725 | wp 1726 | wq 1727 | ws 1728 | wt 1729 | wuhai 1730 | wuhan 1731 | wuhu 1732 | wujiang 1733 | wulumuqi 1734 | wuwei 1735 | wuxi 1736 | wuyishan 1737 | wuzhong 1738 | wuzhou 1739 | wvv 1740 | wvvvv 1741 | wvvw 1742 | wvvwv 1743 | wvw 1744 | wvwv 1745 | wvwvv 1746 | ww 1747 | ww1 1748 | ww2 1749 | ww3 1750 | wwa 1751 | wwv 1752 | wwvv 1753 | wwvvv 1754 | www 1755 | www.aliapp.com 1756 | www.apple 1757 | www.baidu.com 1758 | www0 1759 | www1 1760 | www10 1761 | www11 1762 | www12 1763 | www13 1764 | www14 1765 | www15 1766 | www16 1767 | www17 1768 | www18 1769 | www19 1770 | www2 1771 | www20 1772 | www21 1773 | www22 1774 | www23 1775 | www24 1776 | www25 1777 | www3 1778 | www4 1779 | www5 1780 | www6 1781 | www7 1782 | www8 1783 | www9 1784 | wwwa 1785 | wwwi 1786 | wwwv 1787 | wwww 1788 | wwwww 1789 | wx 1790 | wx1 1791 | wx2 1792 | wxtest 1793 | wy 1794 | wz 1795 | wzs 1796 | x 1797 | x1 1798 | xa 1799 | xam 1800 | xb 1801 | xc 1802 | xd 1803 | xf 1804 | xg 1805 | xh 1806 | xiamen 1807 | xian 1808 | xianfeng 1809 | xiang 1810 | xiangcheng 1811 | xiangfan 1812 | xiangshan 1813 | xiangtan 1814 | xiangxi 1815 | xiangxiang 1816 | xianning 1817 | xiantao 1818 | xianyang 1819 | xiaogan 1820 | xiaoshan 1821 | xiazai 1822 | xichang 1823 | xin 1824 | xinghua 1825 | xingtai 1826 | xingyi 1827 | xining 1828 | xinji 1829 | xinxiang 1830 | xinyang 1831 | xinyongka 1832 | xinyu 1833 | xinyv 1834 | xinzhou 1835 | xiu 1836 | xizang 1837 | xj 1838 | xjtc 1839 | xl 1840 | xm 1841 | xn 1842 | xp 1843 | xs 1844 | xt 1845 | xuancheng 1846 | xuanen 1847 | xuchang 1848 | xuzhou 1849 | xvideos 1850 | xw 1851 | xx 1852 | xxoo 1853 | xxx 1854 | xxxxx 1855 | xy 1856 | xyktx 1857 | xz 1858 | y 1859 | y2 1860 | y2002 1861 | y3 1862 | ya 1863 | yaan 1864 | yanan 1865 | yanbian 1866 | yancheng 1867 | yangchun 1868 | yangjiang 1869 | yangquan 1870 | yangzhou 1871 | yanji 1872 | yanling 1873 | yantai 1874 | yanzhou 1875 | yb 1876 | yc 1877 | yd 1878 | ydsy 1879 | ye321 1880 | yf 1881 | yg 1882 | yh 1883 | yibin 1884 | yich 1885 | yichang 1886 | yichun 1887 | yili 1888 | yinchuan 1889 | yingkou 1890 | yingtan 1891 | yining 1892 | yiwu 1893 | yixing 1894 | yiyang 1895 | yj 1896 | yjs 1897 | yk 1898 | yl 1899 | ylc 1900 | ylc1 1901 | ylk 1902 | ym 1903 | ymt 1904 | yn 1905 | yongkang 1906 | yongzhou 1907 | you 1908 | youjizz 1909 | youxi 1910 | yq 1911 | ys 1912 | yt 1913 | yu 1914 | yuedu 1915 | yueyang 1916 | yuhuan 1917 | yule 1918 | yulecheng 1919 | yulin 1920 | yun 1921 | yuncheng 1922 | yuxi 1923 | yuyao 1924 | yuzhou 1925 | yw 1926 | yx 1927 | yxx 1928 | yy 1929 | yyk 1930 | yym 1931 | yyy 1932 | yz 1933 | yzs 1934 | z 1935 | z1 1936 | z2 1937 | z3 1938 | z4 1939 | z5 1940 | zabbix 1941 | zalando 1942 | zaozhuang 1943 | zb 1944 | zc 1945 | zd 1946 | zdy 1947 | zengcheng 1948 | zf 1949 | zg 1950 | zh 1951 | zhangbei 1952 | zhangjiagang 1953 | zhangjiajie 1954 | zhangjiakou 1955 | zhangqiu 1956 | zhangye 1957 | zhangzhou 1958 | zhanjiang 1959 | zhaodong 1960 | zhaoqing 1961 | zhaotong 1962 | zhengzhou 1963 | zhenjiang 1964 | zhibo 1965 | zhidao 1966 | zhongshan 1967 | zhoukou 1968 | zhoushan 1969 | zhucheng 1970 | zhuhai 1971 | zhuji 1972 | zhumadian 1973 | zhuzhou 1974 | zibo 1975 | zigong 1976 | ziyang 1977 | zj 1978 | zjj 1979 | zjk 1980 | zk 1981 | zl 1982 | zlkhlbrl 1983 | zlkhrytz 1984 | zlkhtjsc 1985 | zm 1986 | zmd 1987 | zone 1988 | zoucheng 1989 | zp 1990 | zq 1991 | zs 1992 | zt 1993 | zuiyi 1994 | zunyi 1995 | zw 1996 | zx 1997 | zxt 1998 | zy 1999 | zz 2000 | zzz --------------------------------------------------------------------------------