diff --git a/about.html b/about.html new file mode 100644 index 0000000..9ff197d --- /dev/null +++ b/about.html @@ -0,0 +1,120 @@ + + + + + 关于 MSTOOL - 专注于提供 Windows 和 Office 激活解决方案 + + + + + + + + + + + + + +
+
+
+ 关于 MSTOOL +
+ 专注于提供 Windows 和 Office 激活解决方案 +
+
+
+
+
+

+ 🎯关于我们 +

+

+ MSTOOL 是一个免费的在线工具集合,致力于为用户提供便捷的 Windows 和 Office 激活相关服务。我们提供密钥检测、确认ID获取等多种实用工具,帮助用户解决系统激活过程中遇到的各种问题。由于各种原因,不保证本站能够一直正常运行。 +

+
+ +
+

+ 💡核心功能 +

+
+
+

+ 🔑密钥检测 +

+

+ 提供快速的密钥检测服务,实时查看密钥状态和可用次数,帮助用户避免使用无效密钥 +

+
+
+

+ 🔄️确认ID获取 +

+

+ 提供便捷的在线确认ID获取服务,支持电话激活方式,快速解决激活问题 +

+
+
+

+ 📋可用密钥 +

+

+ 不定期更新的可用密钥列表,所有密钥均经过验证,提供实时可用状态显示 +

+
+
+
+ +
+

+ 📢特别说明 +

+

+ 本站所有服务均为免费提供,旨在帮助用户解决系统激活问题。我们会持续优化和更新服务内容,但由于各种客观原因,不能保证服务永久可用,请您理解。 +

+
+ +
+

+ ⚠️免责声明 +

+

+ 本站提供的所有工具和服务仅供学习和研究使用。我们建议用户使用正版软件,支持软件开发商。对于使用本站工具和服务所产生的任何问题,本站不承担任何责任。请在使用本站服务时遵守相关法律法规。 +

+
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/build.html b/build.html new file mode 100644 index 0000000..5c9d9ab --- /dev/null +++ b/build.html @@ -0,0 +1,116 @@ + + + + + 搭建说明 - MSTOOL + + + + + + + + + + + + + +
+
+
+ 搭建说明 +
+ 如何搭建自己的MSTOOL站点 +
+
+
+
+
+

+ 📝项目说明 +

+

+ MSTOOL是一个开源的Windows和Office激活工具网站。本项目使用纯静态HTML+CSS+JavaScript开发,无需后端支持,可以轻松部署在任何Web服务器上。 +

+
+ +
+

+ 💻获取源码 +

+

+ 请通过以下链接获取完整源码: +

+ +
+ +
+

+ ⚠️特别说明 +

+

+ 本项目是开源的,您可以自由使用和修改,但请务必保留以下信息: +

+ +
+ +
+

+ 🚀部署说明 +

+

+ 本项目是纯静态网站,部署非常简单: +

+
    +
  1. 下载源码并解压
  2. +
  3. 将解压后的文件上传到您的Web服务器
  4. +
  5. 确保index.html可以正常访问
  6. +
  7. 完成部署!
  8. +
+
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/cid.html b/cid.html new file mode 100644 index 0000000..bc9825d --- /dev/null +++ b/cid.html @@ -0,0 +1,103 @@ + + + + + 在线获取确认ID-微软网页激活,电话激活 + + + + + + + + + + + + + +
+
+ +
+
+
+ 安装ID(IID) + 没有IID +
+
+
+ + +
+
+

当系统激活时出现已经另一台设备激活提示,需要获取确认ID激活!!

+
+
+
+ + +
+
+
+
+
+ + +
+
+
确认ID(CID)
+
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..f5be487 --- /dev/null +++ b/css/style.css @@ -0,0 +1,763 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + background-color: #f5f7fa; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + line-height: 1.5; +} + +.container { + max-width: 1200px; + padding: 0 20px; + margin: 0 auto; +} + +.nav { + background: white; + box-shadow: 0 2px 4px rgba(0,0,0,0.1); + margin-bottom: 30px; + padding: 15px 0; + position: relative; + overflow: hidden; +} + +.nav::before { + content: ''; + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + background-image: + linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px), + linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px); + background-size: 20px 20px; + background-color: #409EFF; + opacity: 0.1; + z-index: 0; +} + +.nav .container { + position: relative; + z-index: 1; +} + +.nav .logo { + font-size: 32px; + font-weight: bold; + color: #1a365d; + text-shadow: 1px 1px 1px rgba(0,0,0,0.1); + margin-bottom: 25px; + letter-spacing: 2px; + background: linear-gradient(45deg, #1a365d, #2c5282); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + position: relative; +} + +.nav .logo::after { + content: ''; + position: absolute; + bottom: -5px; + left: 50%; + transform: translateX(-50%); + width: 60px; + height: 3px; + background: linear-gradient(90deg, transparent, #409EFF, transparent); +} + +.nav ul { + margin: 0; + padding: 0; + list-style: none; + display: flex; + justify-content: center; + gap: 30px; +} + +.nav ul li a { + color: #606266; + text-decoration: none; + font-size: 15px; + padding: 8px 16px; + border-radius: 4px; + transition: all 0.3s ease; +} + +.nav ul li a:hover { + color: #409EFF; + background: #ecf5ff; +} + +.nav ul li a.active { + color: #409EFF; + background: #ecf5ff; + font-weight: 500; +} + +.content { + margin-top: 40px; + position: relative; +} + +.content::before { + content: ''; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-image: + linear-gradient(rgba(64, 158, 255, 0.05) 1px, transparent 1px), + linear-gradient(90deg, rgba(64, 158, 255, 0.05) 1px, transparent 1px); + background-size: 40px 40px; + z-index: -1; +} + +.row { + display: flex; + gap: 20px; + margin: 0 -10px; +} + +.col { + flex: 1; + padding: 0 10px; +} + +.card { + background: white; + border-radius: 8px; + box-shadow: 0 4px 16px rgba(0,0,0,0.08); + margin-bottom: 20px; + overflow: hidden; + backdrop-filter: blur(5px); + border: 1px solid rgba(255,255,255,0.8); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.card:hover { + transform: translateY(-2px); + box-shadow: 0 6px 20px rgba(64, 158, 255, 0.15); +} + +.card-header { + padding: 15px 20px; + border-bottom: 1px solid rgba(235, 238, 245, 0.6); + font-size: 16px; + font-weight: 500; + color: #303133; + background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8)); +} + +.card-body { + padding: 20px; +} + +.badge { + padding: 4px 8px; + border-radius: 4px; + font-size: 12px; + margin-left: 8px; +} + +.badge-black { + background-color: #303133; + color: white; +} + +.form-group { + margin-bottom: 20px; +} + +.form-label { + display: block; + margin-bottom: 8px; + color: #606266; + font-weight: 500; +} + +.form-input { + width: 100%; + padding: 8px 12px; + border: 1px solid rgba(220, 223, 230, 0.8); + border-radius: 4px; + transition: all 0.3s; + outline: none; + box-sizing: border-box; + background: rgba(255,255,255,0.9); +} + +.form-input:focus { + border-color: #409EFF; + box-shadow: 0 0 0 3px rgba(64,158,255,0.15); + background: white; +} + +.form-input[readonly] { + background-color: #f5f7fa; + cursor: not-allowed; +} + +.btn { + padding: 8px 15px; + font-size: 14px; + border-radius: 4px; + cursor: pointer; + transition: all 0.3s; + border: none; + outline: none; + background: linear-gradient(45deg, #409EFF, #66b1ff); + color: white; + position: relative; + overflow: hidden; +} + +.btn::after { + content: ''; + position: absolute; + top: 0; + left: -100%; + width: 100%; + height: 100%; + background: linear-gradient( + 120deg, + transparent, + rgba(255,255,255,0.3), + transparent + ); + transition: 0.5s; +} + +.btn:hover::after { + left: 100%; +} + +.btn:disabled { + background-color: #a0cfff; + cursor: not-allowed; +} + +.btn-clear { + background-color: #909399; + margin-left: 10px; +} + +.btn-clear:hover { + background-color: #a6a9ad; +} + +.btn-group { + display: flex; + gap: 10px; +} + +.keys-table { + width: 100%; + border-collapse: collapse; + margin-top: 15px; + border-radius: 4px; + overflow: hidden; + background: white; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03); +} + +.keys-table th, .keys-table td { + border: 1px solid #ddd; + padding: 12px 15px; + text-align: left; +} + +.keys-table th { + background: #f8f9fa; + color: #606266; + font-weight: 500; + padding: 12px 15px; + text-align: left; + white-space: nowrap; + position: relative; + display: table-cell; + border-bottom: 2px solid #ebeef5; +} + +.keys-table tr:nth-child(even) { + background-color: #f9f9f9; +} + +.keys-table tr:hover { + background: rgba(236, 245, 255, 0.5); +} + +.product-section { + margin-bottom: 15px; +} + +.product-header { + background: linear-gradient(to right, #f4f6f8, #ecf5ff); + padding: 12px 15px; + margin: 5px 0; + cursor: pointer; + display: flex; + justify-content: space-between; + align-items: center; + border-radius: 6px; + transition: all 0.3s ease; + border: 1px solid rgba(64, 158, 255, 0.1); +} + +.product-header:hover { + background: linear-gradient(to right, #ecf5ff, #e8f4ff); + border-color: rgba(64, 158, 255, 0.2); + transform: translateY(-1px); +} + +.product-content { + display: none; + margin-top: 10px; +} + +.product-content.show { + display: block; +} + +.toggle-icon { + font-size: 18px; + transition: transform 0.3s; +} + +.product-header.active .toggle-icon { + transform: rotate(180deg); +} + +.key-count { + font-size: 14px; + color: #666; + margin-left: 10px; +} + +.available-count { + color: #67c23a; +} + +.available { + color: #67c23a; + font-weight: 500; +} + +.unavailable { + color: #f56c6c; + font-weight: 500; +} + +.product-header div { + font-weight: 500; + color: #303133; +} + +.product-header.active div { + color: #409EFF; +} + +@media (max-width: 768px) { + .col { + flex: 0 0 100%; + } + + .row { + flex-direction: column; + } + + .card { + margin-bottom: 15px; + height: auto; + } + + .container { + padding: 0 10px; + } + + .content { + margin-top: 20px; + } + + .form-group { + margin-bottom: 10px; + } + + .nav { + padding: 5px 0; + } + + .nav a { + padding: 10px 15px; + } + + .btn-group { + display: flex; + flex-direction: column; + gap: 10px; + } + + .btn-clear { + margin-left: 0; + } +} + +@media (max-width: 480px) { + .container { + padding: 0 5px; + } + + .card { + border-radius: 0; + margin-bottom: 10px; + } + + .form-input { + padding: 6px 10px; + } + + .btn-group .btn { + width: 100%; + } +} + +.input-wrapper { + position: relative; + width: 100%; +} + +.clear-input { + position: absolute; + right: 10px; + top: 50%; + transform: translateY(-50%); + cursor: pointer; + color: #999; + padding: 4px; + display: none; + background: none; + border: none; + font-size: 16px; +} + +.clear-input:hover { + color: #666; +} + +.input-wrapper.has-value .clear-input { + display: block; +} + +.input-wrapper .form-input { + padding-right: 30px; +} + +/* 默认状态(大屏幕)下隐藏换行 */ +.nav ul li a br { + display: none; +} + +/* 修改响应式导航菜单样式 */ +@media screen and (max-width: 768px) { + .nav ul { + padding: 0; + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 10px; + } + + .nav ul li { + padding: 5px; + width: calc(20% - 8px); + text-align: center; + } + + .nav ul li a { + font-size: 14px; + white-space: normal; + display: flex; + flex-direction: column; + align-items: center; + line-height: 1.2; + padding: 5px; + height: 100%; + } + + .nav ul li a br { + display: block; /* 小屏幕时显示换行 */ + } +} + +@media screen and (max-width: 480px) { + .nav ul li { + padding: 3px; + } + + .nav ul li a { + font-size: 12px; + } +} + +/* 添加底部版权样式 */ +.footer { + text-align: center; + padding: 20px 0; + margin-top: 40px; + color: #909399; + font-size: 14px; +} + +.footer a { + color: #409EFF; + text-decoration: none; +} + +.footer a:hover { + color: #66b1ff; +} + +@media (max-width: 768px) { + .footer { + margin-top: 20px; + padding: 15px 0; + font-size: 12px; + } +} + +.lang-switch { + display: flex; + justify-content: center; + gap: 10px; + margin-top: 10px; + font-size: 14px; +} + +.lang-switch a { + color: #606266; + text-decoration: none; + padding: 2px 8px; + border-radius: 4px; + transition: all 0.3s; + position: relative; + overflow: hidden; +} + +.lang-switch a:hover { + background: #ecf5ff; + color: #409EFF; + transform: translateY(-1px); + box-shadow: 0 2px 4px rgba(64, 158, 255, 0.1); +} + +.lang-switch a.active { + background: #409EFF; + color: white; + box-shadow: 0 2px 4px rgba(64, 158, 255, 0.2); +} + +.lang-switch a::after { + content: ''; + position: absolute; + top: 0; + left: -100%; + width: 100%; + height: 100%; + background: linear-gradient( + 120deg, + transparent, + rgba(255,255,255,0.3), + transparent + ); + transition: 0.5s; +} + +.lang-switch a:hover::after { + left: 100%; +} + +.skip-link { + position: absolute; + top: -40px; + left: 0; + background: #409EFF; + color: white; + padding: 8px; + z-index: 100; + transition: top 0.3s; +} + +.skip-link:focus { + top: 0; +} + +.loading-indicator { + text-align: center; + color: #409EFF; + margin: 10px 0; + font-size: 14px; + display: flex; + align-items: center; + justify-content: center; + gap: 8px; +} + +.loading-indicator::before { + content: ''; + width: 16px; + height: 16px; + border: 2px solid #409EFF; + border-top-color: transparent; + border-radius: 50%; + animation: spin 1s linear infinite; +} + +@keyframes spin { + to { transform: rotate(360deg); } +} + +.error-message { + background: #fef0f0; + color: #f56c6c; + padding: 8px 16px; + border-radius: 4px; + margin-top: 8px; + font-size: 14px; + animation: fadeIn 0.3s ease; +} + +@keyframes fadeIn { + from { opacity: 0; transform: translateY(-10px); } + to { opacity: 1; transform: translateY(0); } +} + +/* 优化排序按钮样式 */ +.sort-btn { + background: none; + border: 1px solid transparent; + cursor: pointer; + padding: 2px 6px; + margin-left: 5px; + color: #909399; + border-radius: 4px; + transition: all 0.2s ease; + display: inline-flex; + align-items: center; + font-size: 12px; + vertical-align: middle; + line-height: 1; +} + +.sort-btn:hover { + background: #f5f7fa; + border-color: #dcdfe6; + color: #409EFF; +} + +.sort-btn.active { + color: #409EFF; + background: #ecf5ff; + border-color: #b3d8ff; +} + +.sort-icon { + display: inline-flex; + align-items: center; + justify-content: center; + width: 14px; + height: 14px; + margin-left: 3px; + font-size: 12px; + transition: all 0.2s ease; +} + +/* 优化排序时的过渡效果 */ +.keys-table tbody tr { + transition: all 0.2s ease-out; +} + +.keys-table tbody tr.sorting { + background-color: rgba(64, 158, 255, 0.04); +} + +/* 添加排序时的表格行高亮效果 */ +.keys-table tbody tr:hover { + background-color: #fafafa; +} + +/* 添加激活状态的动画效果 */ +.sort-btn.active .sort-icon { + transform: scale(1.1); +} + +/* 添加按钮点击效果 */ +.sort-btn:active { + transform: translateY(1px); +} + +/* 添加无障碍焦点样式 */ +.sort-btn:focus { + outline: none; + box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2); +} + +/* 优化移动端样式 */ +@media (max-width: 768px) { + .sort-btn { + padding: 4px 8px; + font-size: 14px; + } + + .sort-icon { + width: 16px; + height: 16px; + } +} + +/* 搜索框样式 */ +.search-box { + position: relative; + margin-bottom: 20px; +} + +.search-box .form-input { + padding-right: 40px; + padding-left: 15px; + height: 40px; + font-size: 14px; + border-radius: 20px; + background: #f5f7fa; + transition: all 0.3s ease; +} + +.search-box .form-input:focus { + background: #fff; + box-shadow: 0 0 0 3px rgba(64, 158, 255, 0.1); +} + +.search-box .search-icon { + position: absolute; + right: 15px; + top: 50%; + transform: translateY(-50%); + color: #909399; + font-size: 16px; + pointer-events: none; +} + +/* 响应式调整 */ +@media (max-width: 768px) { + .search-box .form-input { + height: 36px; + font-size: 13px; + } + + .search-box .search-icon { + font-size: 14px; + } +} \ No newline at end of file diff --git a/data/keys.json b/data/keys.json new file mode 100644 index 0000000..4de3566 --- /dev/null +++ b/data/keys.json @@ -0,0 +1,3402 @@ +[ + { + "product": "Office16 ProjectProVL MAK", + "keys": [ + { + "key": "9W2NK-D8H7V-D47JD-DDR44-PPQKV", + "activations": 995, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N8DB4-X88VW-MWT72-RVJR7-DRTDH", + "activations": 816, + "time": "2025-02-12 14:06:36" + }, + { + "key": "F9H3B-QNHTK-XRTM9-2PDW3-3PFG7", + "activations": 778, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office16 ProjectProXC2RVL MAKC2R", + "keys": [ + { + "key": "R6N6D-W7MD7-9PVKJ-8VH4K-4JR27", + "activations": 927, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office16 ProPlusVL MAK", + "keys": [ + { + "key": "XM2J4-4NRB4-6GV2Q-VCM2H-DRTDY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JDHTC-NCQHB-6W444-97QYC-KW3MB", + "activations": 379696, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N4RFM-3CKDQ-9Q86Y-J9Q9G-722QY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "T4NR6-38X6Q-RFQTM-XPRBT-XQBVM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Y8H2C-4PNJ8-26R6R-VHPKH-VT9YB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TWXNP-GYQ8D-M39V6-3T8X3-MDW3Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NJGXF-PBKXM-XXMDK-CYM2W-CPQMB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GXQXN-7CF4P-TM7M3-MWPC8-HMH7M", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office16 StandardVL MAK", + "keys": [ + { + "key": "2BNWF-HQ3XJ-QHXQD-639QJ-XW3M2", + "activations": 863, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office16 VisioProVL MAK", + "keys": [ + { + "key": "CQC4M-2N92T-B9CMV-CRFJP-FX84Y", + "activations": 920, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Y782Q-JND76-9FBJW-RJG3D-9D78M", + "activations": 914, + "time": "2025-02-12 14:06:36" + }, + { + "key": "ND3DP-WCDV2-YP4DF-J4YQH-2R4JM", + "activations": 778, + "time": "2025-02-12 14:06:36" + }, + { + "key": "M7T2H-QHNK8-3WY8Y-F42GH-8HV8M", + "activations": 469, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PWHYP-VNMKC-362DX-GGHPP-9QBWM", + "activations": 474, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office16 VisioProXC2RVL MAKC2R", + "keys": [ + { + "key": "VK3NW-WF676-QHW2P-B3M36-RRHTR", + "activations": 423, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office16 WordVL MAK", + "keys": [ + { + "key": "P4H2J-3N26Q-4699G-99Q2V-BDW6H", + "activations": 519, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 Access2019VL MAK AE", + "keys": [ + { + "key": "3RNVY-9YB64-F9VXM-3W99J-HMJ97", + "activations": 415, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JYQG4-NJ3XQ-P884Y-HBPX9-C7K7H", + "activations": 913, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4NBPF-KMY4M-267VP-4YKHQ-7VB3V", + "activations": 355, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3HYGR-N3GP2-TP3RJ-QCFYY-RC3VH", + "activations": 834, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 Outlook2019VL MAK AE", + "keys": [ + { + "key": "6NRRQ-9PXQQ-82R73-2CTHF-PPRVM", + "activations": 519, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 PowerPoint2019VL MAK AE", + "keys": [ + { + "key": "3Q8CN-9M2XB-JDFDD-TD29J-29Y74", + "activations": 411, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 ProjectPro2019VL MAK AE", + "keys": [ + { + "key": "KGG36-N2KV7-6YRTT-KBFQC-JB7PC", + "activations": 488, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6V6H6-N9Q6B-R2PKQ-DB9W3-M7XF2", + "activations": 267, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V2FXT-GVN2G-3DKXT-6RFP7-YY7PC", + "activations": 387, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GT3N6-TPK83-QX6V8-KFBRV-RGFWP", + "activations": 508, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GQPDK-WWNMH-Q3FR3-3RWYR-Q9P42", + "activations": 883, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TBXBD-FNWKJ-WRHBD-KBPHH-XD9F2", + "activations": 250, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 ProjectStd2019VL MAK AE", + "keys": [ + { + "key": "RBRFX-MQNDJ-4XFHF-7QVDR-JHXGC", + "activations": 500, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 ProPlus2019VL MAK AE", + "keys": [ + { + "key": "WMMJN-RXXXF-VG6VM-6JH9D-FM7QD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GGNVX-TPWVT-XR67G-F2BXJ-7FVQD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XB7NR-JCP3P-XF8Q2-KMK37-PWHQD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "B9GJN-QF697-2JD74-JQ9DM-XBWKQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G44NW-3J8CY-P7X2M-8XKTF-KBWKQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "C2PJN-J28BT-HW73X-4JQH7-9BWKQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RGWCN-D884V-BDP3F-XWHPF-PPRXQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3KVNC-XWTFG-3K2VJ-4QW4R-R3M9Q", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P7JJ8-N4MH7-XRC6V-9RRY2-XTQ3D", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DV7HN-T6HGW-RDJ3V-FHX2V-8HXG3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "T8YBN-4YV3X-KK24Q-QXBD7-T3C63", + "activations": 4125, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KKKPN-Q934M-FCGGW-KXPHQ-H233D", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G9Q2W-PNYK9-XF86W-WHFGF-846T3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TR3N9-2DR6D-8VQ6H-PKVK8-QDC63", + "activations": 60, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XN8F2-W98P9-PDRPH-P6V2V-T3C63", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "484N2-PHHQV-D93PT-6K7RX-CDM9Q", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FMN7C-TTQ49-BRM4P-36JQF-W8HQD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "39PQN-8D8KR-DTYPG-7QHXB-43M9Q", + "activations": 1369, + "time": "2025-02-12 14:06:36" + }, + { + "key": "F8MW8-VN7PC-B2XKC-272XR-7H8KQ", + "activations": 5, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CMJXK-JRN4V-GMX38-PTRYC-6JHQD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q4BNT-9VPJG-YFGBY-6F97P-V8TT3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2B37Y-NYQPP-YV6FK-8YKFX-Y7XG3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W6423-7FN2Q-YT4FV-CGR4D-FM7QD", + "activations": 6668, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XCYMN-HQDQ4-K3MDP-FGXM9-Y7XG3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NFHQD-W9TPY-MVHF6-Q67JY-PR6T3", + "activations": 1000, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CJ26N-Q3C6C-MPD7Y-9BM69-9HMDD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W9HYN-C8J79-2YGTT-JVQW8-K2GT3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CNYC3-BD9YK-C6J49-YC86V-GCRXQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NW6FW-RJWKT-8Q3YP-RX3W9-H6FXQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NFHQD-W9TP7-Q4YF6-Q67JY-PR6T3", + "activations": 2500, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MNJTQ-RVTWV-9M4HM-4G9F4-FC33D", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "D2JJX-XN8KB-HTRRG-W2FK9-RM7QD", + "activations": 3, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CBNK9-BV3FD-FT2JG-DWYWR-PPRXQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 Publisher2019VL MAK AE", + "keys": [ + { + "key": "MN7X6-P79R3-VJK63-RVJ88-9TQ3J", + "activations": 440, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G6VCM-QGNBG-W2QFV-YH37R-KBWKW", + "activations": 919, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3JDVN-8HH79-6F2KJ-4KHFJ-29Y9W", + "activations": 919, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TMHNF-W3KM6-TWV2F-KT8F9-HCGT8", + "activations": 420, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 SkypeforBusiness2019VL MAK AE", + "keys": [ + { + "key": "VG4WN-K3DDG-8PMYM-G6MBM-KD9G9", + "activations": 912, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JHDXN-9G444-WM6YD-2MVCT-WXD3K", + "activations": 290, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TNQVK-DF8WC-PBG7B-DVJ3B-G3C69", + "activations": 398, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 Standard2019VL MAK AE", + "keys": [ + { + "key": "PND4C-K3F77-9F97X-XBJDW-BWTVB", + "activations": 2223, + "time": "2025-02-12 14:06:36" + }, + { + "key": "44J8N-H9XBX-XGVG7-2W784-F627B", + "activations": 3706, + "time": "2025-02-12 14:06:36" + }, + { + "key": "88VNQ-GMM4Y-728T7-BT4XT-4M7QM", + "activations": 2115, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8GQCN-VRCY7-W9B8X-9V49X-6CRXY", + "activations": 1266, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QVDCN-367RB-J3JX2-X6PYF-846VB", + "activations": 2788, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 VisioPro2019VL MAK AE", + "keys": [ + { + "key": "77NHF-K8VDK-QV38W-9X8PT-WXD3P", + "activations": 690, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JQRNF-WVJM9-YKTFC-6H9JV-3J4X2", + "activations": 1108, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DGX6Y-2DNW3-Q9CXD-8PQ2H-3J4X2", + "activations": 734, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P8FH9-NJ864-F8CDT-B84X2-4RJK2", + "activations": 904, + "time": "2025-02-12 14:06:36" + }, + { + "key": "33YF4-GNCQ3-J6GDM-J67P3-FM7QP", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FWNRX-BHH3T-2WWRX-XQB47-M4JK2", + "activations": 350, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office19 VisioStd2019VL MAK AE", + "keys": [ + { + "key": "VWN8F-W4KVV-G4QHJ-BWFPG-6F6VF", + "activations": 824, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HMDBN-HY7PB-4YK7C-HW4PM-FGFX4", + "activations": 332, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BGNHX-QTPRJ-F9C9G-R8QQG-8T27F", + "activations": 500, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FD3YM-NQ7BD-8TTGT-G7TRV-CYWK4", + "activations": 808, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 ProjectPro2021PreviewVL MAK AE", + "keys": [ + { + "key": "2NYG6-3BBBX-M97JW-B7DFV-G6RMB", + "activations": 331384, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 ProjectPro2021VL MAK AE1", + "keys": [ + { + "key": "HVC34-CVNPG-RVCMT-X2JRF-CR7RK", + "activations": 250, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 ProjectPro2021VL MAK AE2", + "keys": [ + { + "key": "BTMNT-D9VPV-K3CF3-DFGTQ-PYXJB", + "activations": 1689, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NYG3R-4MWW4-86DJ6-3HTFP-XTRYY", + "activations": 447, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 ProjectStd2021VL MAK AE", + "keys": [ + { + "key": "3CNQX-T34TY-99RH4-C4YD2-KW6WH", + "activations": 500, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 ProPlus2021VL MAK AE1", + "keys": [ + { + "key": "RNHJY-DTFXW-HW9F8-4982D-MD2CW", + "activations": 475, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 ProPlus2021VL MAK AE2", + "keys": [ + { + "key": "2PDKD-N2YHD-J6TPG-YMY39-H6GW9", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KGXQW-NC8R2-6TJFP-XVM6J-GVPCX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N2RYY-GHXR3-C42G6-6YVYF-QGR2X", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QG37N-7RP6R-9WXHT-RVYKX-CDP89", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NYVDF-FMTM2-7VFBT-VKC7R-QGR2X", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HHFN7-P3VHY-4FWF4-QB7G2-D7C89", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NVXDH-R6BRX-DWXR8-JBPPY-F9F2X", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TCDPN-QBBYR-MCBXB-2PH9H-KHPCX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "32NDB-8RK82-89YJF-BF9H3-JT36K", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8W39N-XTY3Q-XHBKX-93CJB-WHYGK", + "activations": 98, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FN349-QJTBW-6283T-BGQM9-GJJPX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7RNW4-Y96B9-4TP4V-X6VGM-QJ6W9", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 Publisher2021VL MAK AE", + "keys": [ + { + "key": "N26GY-P7VX4-YG2B3-2K2B8-XW6XF", + "activations": 324, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 Standard2021VL MAK AE", + "keys": [ + { + "key": "2CJN4-C9XK2-HFPQ6-YH498-82TXH", + "activations": 499, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JFN9J-68GXT-FPHMQ-BVGJQ-RJVTV", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V4CCJ-MNDKT-DJC9Y-32FHW-6MXKH", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 VisioPro2021PreviewVL MAK AE", + "keys": [ + { + "key": "M9N3Y-CCB6D-J66FD-KKGF4-8B799", + "activations": 373460, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 VisioPro2021VL MAK AE", + "keys": [ + { + "key": "V84N7-JR29X-DF4W8-YBVXJ-7FWP8", + "activations": 99, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JNKBX-MH9P4-K8YYV-8CG2Y-VQ2C8", + "activations": 98, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DRNHW-KQBKG-DF4TD-G7KBK-PBCC8", + "activations": 1401, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 VisioStd2021VL MAK AE", + "keys": [ + { + "key": "BW43B-4PNFP-V637F-23TR2-J47TX", + "activations": 460, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N8T94-CQBPB-VR6GH-DJD9V-2R7TX", + "activations": 1560, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office21 Word2021VL MAK AE", + "keys": [ + { + "key": "J38BX-N2FK2-4YFPJ-3V6MG-C929M", + "activations": 463, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office24 ProjectPro2024PreviewVL MAK AE", + "keys": [ + { + "key": "GQRNR-KHGMM-TCMK6-M2R3H-94W9W", + "activations": 919070, + "time": "2025-02-12 14:06:36" + }, + { + "key": "X86XX-N3QMW-B4WGQ-QCB69-V26KW", + "activations": 919064, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office24 ProPlus2024PreviewVL MAK AE", + "keys": [ + { + "key": "Y63J7-9RNDJ-GD3BV-BDKBP-HH966", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office24 VisioPro2024PreviewVL MAK AE", + "keys": [ + { + "key": "DW99Y-H7NT6-6B29D-8JQ8F-R3QT7", + "activations": 901080, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3HYNG-BB9J3-MVPP7-2W3D8-CPVG7", + "activations": 901080, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office 2013 ProPlusVL MAK", + "keys": [ + { + "key": "QV9FC-XN3M9-7WM64-QJM34-YTBG7", + "activations": 7378, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q2797-PGN9H-YJWRG-YGHYB-8FD67", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6QG2C-9N42M-JX6DV-Y4CGR-CR2DH", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office 2013 StandardVL MAK", + "keys": [ + { + "key": "7FNBH-2X3B7-CVCGT-2C83Y-39JQ6", + "activations": 364, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3XHVX-FNYTX-464X7-KDTQQ-WQHVT", + "activations": 303, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 ProjectPro2024VL MAK AE1", + "keys": [ + { + "key": "WNFMR-HK4R7-7FJVM-VQ3JC-76HF6", + "activations": 250, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 ProjectStd2024VL MAK AE", + "keys": [ + { + "key": "8TYNF-8JTB4-VHRMC-XPYKD-YBM2K", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "F2VNW-MW8TT-K622Q-4D96H-PWJ8X", + "activations": 500, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 ProPlus2024VL MAK AE1", + "keys": [ + { + "key": "GM43N-F742Q-6JHXP-TGVHD-RJWCP", + "activations": 498, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KVJBQ-TCN3X-22F8D-RGD3M-7MM2P", + "activations": 498, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4YV2J-VNG7W-YGTP3-443TK-TF8CP", + "activations": 498, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KRNQF-HVVDC-J297V-YK8K9-HCJCP", + "activations": 498, + "time": "2025-02-12 14:06:36" + }, + { + "key": "X6N7K-GYCXR-JMPD6-7KVY3-Y4K6C", + "activations": 498, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WNYR4-KMR9H-KVHQ9-JMXWM-HVDTC", + "activations": 498, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 ProPlus2024VL MAK AE2", + "keys": [ + { + "key": "WHKMP-2NQT7-68BKX-CBD92-VFW83", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KN939-BXFV7-2Q8VB-XYHTG-WXGJ3", + "activations": 237, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J42VX-4FN4V-448W2-HYHP8-MTHGD", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7TND7-JPR3M-RVFVY-78V4K-T87GD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "D3VDG-FCNF9-FTV3Q-62W36-24B2Q", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FKN36-GT8B2-PVC9R-3DJCJ-YP6J3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CGWCM-VN2CM-KP868-G2BHH-DRW83", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3KR2W-NKWT4-CKWVH-2RDDM-R64PQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WB27W-N96T7-WMMF8-7BBBH-BD2W3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HR7HQ-VN8D8-GHK92-89PPH-M4K6D", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6D4NV-PV2CJ-XRBCJ-C84YQ-8MCW3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9J6NG-499G6-63HTD-6822F-37DTD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RNP3M-96C24-R6JVV-WHBHK-MHDTD", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VHCNG-VW4DB-26GF8-D6WCY-F9GJ3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BKTPC-NTKBX-P6M7R-VD8VQ-DV96D", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 Standard2024VL MAK AE1", + "keys": [ + { + "key": "GC4BN-GMBCK-CG6TC-VCRDB-6VPW8", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GVG6N-6WCHH-K2MVP-RQ78V-3J7GJ", + "activations": 500, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PPMNC-7WB2P-FQDC2-67BMY-WHY2W", + "activations": 100, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 VisioPro2024VL MAK AE", + "keys": [ + { + "key": "N42BF-CBY9F-W2C8C-RW2KJ-DGTJ9", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GBNHB-B2G3Q-G42YB-3MFC2-7CJCX", + "activations": 100, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Office RTM24 VisioStd2024VL MAK AE", + "keys": [ + { + "key": "M239V-9NRRQ-BBM2D-C437Q-XHPXB", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YNFTY-63K7P-FKHXK-28YYT-D32XB", + "activations": 500, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Server 2016 RTM ServerStandard Volume MAK", + "keys": [ + { + "key": "8CYNF-3BQTG-44X8H-CYRHJ-VH7YC", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Server 2019 RTM AzureStackHCIAddOn Volume MAK", + "keys": [ + { + "key": "FF9JN-RKB6R-KXDY9-BRTVV-FJT4H", + "activations": 122, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NKJ34-HFXXJ-3PW9G-JTWCT-68477", + "activations": 278, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NVDQX-FYHC7-YBBQP-D8T84-F63FH", + "activations": 75, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WQXJD-RQNMH-67TRV-DR4DY-X4VYV", + "activations": 233, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Server 2019 RTM ServerDatacenter ServerDatacenterACor Volume MAK", + "keys": [ + { + "key": "FF9JN-RKB6R-KXDY9-BRTVV-FJT4H", + "activations": 134, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NKJ34-HFXXJ-3PW9G-JTWCT-68477", + "activations": 317, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WQXJD-RQNMH-67TRV-DR4DY-X4VYV", + "activations": 281, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NVDQX-FYHC7-YBBQP-D8T84-F63FH", + "activations": 96, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Server 2019 RTM ServerStandard ServerStandardACor Volume MAK", + "keys": [ + { + "key": "W7YRN-XTBD9-2HQVG-7KVJM-3GRBQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MNKJX-374QK-WY8MM-CKGXH-VVCH3", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Server 2021 RTM ServerDatacenter ServerDatacenterACor AzureStackHCIAddOn2021 Volume MAK", + "keys": [ + { + "key": "TT7QN-DT9FY-87D74-RBQJ6-RRKBF", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Server Essentials 2019 RTM ServerSolution Volume MAK", + "keys": [ + { + "key": "QDQGN-GK64G-X3X78-HVM3G-4M727", + "activations": 431, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BXY3B-TCNGC-KCDJX-39BVJ-82R9H", + "activations": 374, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM EducationN Volume MAK", + "keys": [ + { + "key": "G6NH2-G8GM7-T9YYP-G39GC-9QBM9", + "activations": 878, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM Education Volume MAK", + "keys": [ + { + "key": "XJW7N-9W68G-RKGKJ-7FRCG-V6DFQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6MDN4-WF3FV-427DW-JHPGD-M7VY3", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VYCBM-HNX2G-7YXTB-WM8FY-DPFB3", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QX6PT-NF4FJ-GHBVH-9WGRX-KQBM3", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YR992-N4D47-RPB8W-FMPT9-GJF8D", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XFHVK-7BN36-YK3Q9-8FGKH-YY48D", + "activations": 50, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q73NR-FH3PR-BQTVJ-622VJ-J8F8D", + "activations": 50, + "time": "2025-02-12 14:06:36" + }, + { + "key": "B2HTN-JPH8C-J68XX-X78FH-VT9RQ", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7MC2Q-RN3YD-6FVKH-H7VTK-XKXRQ", + "activations": 50, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM EnterpriseN Volume MAK", + "keys": [ + { + "key": "RR8QD-RN2TC-CBRWM-VFJ6P-RVV2T", + "activations": 998, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8463N-D7JXF-GPJCC-W3W7X-TF4CT", + "activations": 121, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q87PM-NX8M6-MWTTF-46H4J-W44CT", + "activations": 883, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6YRCF-HNH86-H6MKV-P3B92-BTDGG", + "activations": 423, + "time": "2025-02-12 14:06:36" + }, + { + "key": "73FN2-3VWHF-83KJQ-F4XWK-6CQGG", + "activations": 947, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM EnterpriseSN Volume MAK", + "keys": [ + { + "key": "47Q3F-N4RJD-4K79G-YGY9T-FVV2X", + "activations": 946, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8TBNG-7BDPF-MFPMV-2D3MP-DDBPX", + "activations": 462, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VFN2G-4J4G6-79PTC-G3Q3H-MBH2X", + "activations": 464, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM EnterpriseS Volume MAK", + "keys": [ + { + "key": "JXBVN-J3VYK-RYDVH-YMJHK-66QF3", + "activations": 669, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DTN6F-C23HT-VWWWV-Y3F33-M7WWQ", + "activations": 597, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W2TMP-FNBRB-V4TY6-4RKXY-MY643", + "activations": 980, + "time": "2025-02-12 14:06:36" + }, + { + "key": "B98Y3-NY3B2-YQGFB-Q4PB9-6CRCD", + "activations": 1384, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NQDMG-Y938T-M4B3F-RWCGG-68442", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WNQCK-R9F9W-9TYXQ-Q68PK-C7MJP", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PHYWN-94977-8QXQH-MFPVJ-QDDCC", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM Enterprise Volume MAK", + "keys": [ + { + "key": "VC7MN-33KDQ-MFDQM-736CP-6JF8R", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VNWHF-FKFBW-Q2RG4-96YPY-QJ3F4", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8BC3T-N2H92-DWJ2F-VPCDY-TXXR4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G6FNC-RX6C6-CGCF2-89CC4-GXXR4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8YNYF-BV27Q-FDJ69-MPJHK-MG9R4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9MN7M-B9YVC-6XWKG-BWKKY-DPFCF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "M7NK8-H42D9-DXMB2-9KHDJ-D9MPF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TNY78-XKQDH-GHDK7-G3YGT-TJF8R", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MK3BN-KMFGC-7897W-B626J-K2FCF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N64WG-WQJYY-TMQG8-GJ882-9QBPF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FGKDW-KNHT6-K22T3-YHRJF-7H644", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N3QV9-TXG6P-2Q2Y4-GH7HY-YWRCF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XMBN8-W7BY4-XDTTB-FWCTT-H8RCF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2JM92-HNT6H-G6HK7-4CY7J-QDBPF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "437NW-7CWFG-HVFXV-GG3XH-GCQF4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KNWFW-TWCFV-XTM7C-2T2K7-M4G44", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J6MCT-N9TH8-Y8CYC-K4KHT-HFR8R", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "72F8H-XN68J-DBTDQ-R6HFJ-MTDF4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XRF83-8CNKK-D4KPR-CXRPP-2DKR4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K7N3P-JPYTQ-GM48X-KK2Y4-DJ3F4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KF8QX-WNCHQ-B7V2R-TX76C-V8RCF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W6XGF-TYN2P-BKV6R-RX343-C372F", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GC2B2-RN82G-9JDBW-KJQKD-BG9R4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WKPN8-6G4KC-DJRMM-Y824W-XW3F4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NV823-GJ472-V7DDF-M7KR6-6F4CF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GN462-G2R6F-QTGJT-KQ4QY-BBH2F", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W4NMX-TBMBY-QYKBC-9W7DH-2R4CF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HN2MP-XJ3B7-92D22-C74F8-YP2JR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QNYF4-QYMG3-2JF2R-VKXC8-7FR8R", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WD4K4-GNPPD-CFHQM-WWM6X-FRG44", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BBP8C-CFN6V-GVQPY-HXJPG-6F4CF", + "activations": 242, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QNXPK-XKKG2-TBCPY-GM3H9-JXCJR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NWJXJ-XY2G6-WTB8C-F26YH-T3BPF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NG8XV-243XM-DTMTD-PMJM6-FVV2F", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GXCNR-CBMVH-MG83K-YQPJQ-2WF8R", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PN3PJ-3PVH3-22K6J-MHJ6P-7CFCF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NH2PD-3KCF6-GK8WR-GCPG3-B98WR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "C7NWH-MB89F-8X4J8-WQ2M4-7H644", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4N2R4-DFV4G-QMCXR-PWJHJ-82QF4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WCRNJ-C9BK7-DKDKK-YV84P-TMT44", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BJVNX-TRKDF-JXVQH-KKFDP-BTDF4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3NHH2-DGYKD-7GTRR-RK7KD-JTYPF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WHDKC-3NBYD-C7X6G-QHHMF-4X8WR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PN3YY-MC3J7-MCRMK-2FR3R-369R4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3N6XB-W7VX4-FV7DG-KH4C2-RVV2F", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PQRD3-C9NJC-VYK29-8WK79-8QKR4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WNXTT-6T7J2-HTWTG-R9QMY-6VJWR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VVDY2-FN8RG-CF6HM-9Y89F-WFG44", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YX8B3-2NBTK-3V8DQ-R4WQM-3GPJR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K88NG-7D8XB-47TD9-M2FJJ-D9MPF", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6NR8D-7GTJB-QHRTJ-8DR9C-HH644", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q3DYN-RV47P-VYTKD-72MJY-JK8WR", + "activations": 100, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XC9NX-B7C4X-2J3C2-7P2P2-MP2JR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2NR9H-2MT89-2TJGW-XDRMB-JK8WR", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YN4RY-6WJ8M-6W8F2-JMQK2-P9XR4", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3X3XH-YNK3J-T42PD-XFGD7-PWF8R", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM ProfessionalN Volume MAK", + "keys": [ + { + "key": "BN82T-XQ748-8R2HX-P8F7Y-88F9Y", + "activations": 467, + "time": "2025-02-12 14:06:36" + }, + { + "key": "39VNH-2DY49-BD92J-V6JV6-TJF9Y", + "activations": 853, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G3BR7-4NXBP-H2CTV-VRQ7M-8FG7B", + "activations": 151, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BC8KC-N8MGR-YB27X-PWHWK-V22KY", + "activations": 997, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NQW28-P22MX-DPV6X-6R3TV-KHJXY", + "activations": 136, + "time": "2025-02-12 14:06:36" + }, + { + "key": "H9W2G-YDNBP-4QJQ2-9X294-FC2KY", + "activations": 57, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XMVNH-3FYCH-78PY3-PJPR8-82QHB", + "activations": 179, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V8JJJ-N8QP3-6M44J-CYQC4-GXXVB", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM ProfessionalWorkstationN Volume MAK", + "keys": [ + { + "key": "98QTC-N2B7D-MXQMY-V2H8G-YHBWG", + "activations": 109, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DNQFX-Q6YR8-DG8RJ-Q4WQY-PR6FT", + "activations": 28, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XHN9Y-MWHQR-XBDCK-G37PH-7QXY6", + "activations": 90, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DGNWK-JTQ29-2MC2Q-F63H9-BKPRT", + "activations": 87, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM ProfessionalWorkstation Volume MAK", + "keys": [ + { + "key": "YMNKK-8PKYJ-6VK96-MJ8MH-4C3MX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K7Q7J-WN9T7-97HRW-7Q88Q-2WHBX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2M28D-XFN3T-CX386-QGRKQ-Y4H79", + "activations": 449, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NPF6F-F4B7H-8FRHR-XPDT4-HQXYX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "243BJ-2N2HR-FJCDP-629RY-XBV79", + "activations": 217, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NRXD6-DKCW6-FGCTR-M834T-BP3MX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NRFYD-2X2G3-48DYW-27TK9-2YV79", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DJDPK-2VNPR-TGXH4-Q3PF7-DRVBX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q33QN-HH83K-CCHTV-GGQHC-FX9YX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8KN7G-74BKY-KKH9W-732X4-JHW4K", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KGVHN-BH9P7-7PQ87-YH6WH-94VBX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GXNQP-KX89R-DPDBJ-G46TK-XKYV9", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P6B2V-JN4TV-YKGDF-KFPGB-FGFH9", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HB44N-C28CD-R6TR7-M8TJY-JK9YX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6PNYQ-2DFWJ-CQJMV-PBVHF-TVKYX", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7F7RN-DGMRP-J6QBK-HGXRF-WFH79", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 10 RTM Professional Volume MAK", + "keys": [ + { + "key": "NPDB9-MGJ8H-YT289-WVRMP-RVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Y9CHK-7YDJG-HD7YW-F8T3K-NKXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KDJ9V-ND376-XHMW2-T8JQ6-MKMQB", + "activations": 50, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CMVNH-Q98QF-QD7FQ-TV2V3-BG9TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HNXWW-PX9MF-DV83Y-C39MP-W2QGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MM8G6-VDNMY-26GB6-9RCBG-MKMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GP6M4-N7FXB-YKW3Y-BK4KR-HQWXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JNT63-MF9C4-YG9CJ-3CPBK-DYH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NPCKC-CKR7G-KX88Q-CRDJH-RGDGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JMN4R-9Q8BC-3P86F-4G68C-PGYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GQ7DN-DW8RX-VW4TV-JFBY9-Y7V3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K4GBX-NRVQ8-TFMQX-FFGQ4-4X8XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NXXB6-JM92G-VGC3Q-MM42H-7QWXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WBPMD-YCNT3-2J98D-7KRCC-J44DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3377N-7RQRW-FFDGH-R24KT-8TYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "H2YRH-NYGMR-M7VQG-G76Q4-YTDGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NPRGX-WV9WV-Y2P2M-J2FQ3-DV66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PFKNQ-4QDV6-PRKKX-C2MR4-FC2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "72VYX-NKB4M-KCTMT-BV3VJ-J8F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3JMNH-HBQ2K-C7VYP-4KGFR-DJ3GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "F4CN7-C2QQB-63PKC-Q66K2-VFR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "B9N37-FPCC6-RH7FC-F2TG2-D69TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "D2FP7-WDN6V-P63PT-78MGH-T3BQB", + "activations": 29918, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N384C-FHCKQ-76WVR-VM432-KW3GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WWK9N-XH3B4-PHYY7-W9CFR-DJ3GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2NCQW-TY3Q9-D3KB3-CRDV2-RVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6XQ2K-MNF39-B4V9V-6KV44-JHV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JGXG7-TNGPK-RVWJV-DGT2M-PR4DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DY4RX-2NDGD-KGVX6-4PK2D-RJRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DJCQ2-7NTW6-VRGX7-6436V-QPFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HMDJJ-NT7HT-FWV2X-PCKKB-KD73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NC8M7-7HX72-G3QTW-24CPQ-DV66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V37BN-39VCF-2DP6V-XKFFY-XBT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XQBY8-BNF32-GPHB8-7MMDJ-JFG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NVB8W-7JRYD-3KRYB-WWG2B-R6YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Y4NCP-HTX8T-3PDRW-Y73MC-GQ73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FNPH3-JJC3K-CXGV6-KJW4M-CWF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VJ4JJ-KPNK9-GC93Q-3PRWB-92FDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YNCFP-Y4R9V-3WB77-4MCHY-YWRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VD6RP-R2NK7-HBG8F-3DJ8T-KTPKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MW6NX-3HF26-FFYMG-TFXM3-QRR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NJM2M-HVVXT-J44PV-XBH4M-K766Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6T3NP-6DH34-7X7KG-RRB2B-R6YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "43RMB-N3B4V-BHYXD-8VJFJ-29XTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RD7V7-N6HMM-FK3MW-XCGRB-QJ3GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K949M-8N2TP-2H9VY-BVQJR-FC2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N98JD-94X46-K9W22-9KXG9-9HJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8C3PH-9NTB4-8T7XX-6VB6X-4JRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "98KJP-NW6GB-WXP2H-TJ3HC-P9XTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J3KRN-YP2YB-HGJ6C-4794X-6CQGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HJC9P-N6H43-CCFYF-QFJP3-T6PKM", + "activations": 486, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NVYV8-BWJYW-QWT2Q-MCT77-QPFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WNH83-JKMW4-CPPCY-2HV28-7FR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CN329-KK4MT-49Q3G-GHTX2-J44DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XGCHN-VWX4Q-HDWJH-MCJX2-FX8XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CMMC4-2WNMT-DXKQF-6HFX4-TVJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9GPRT-NDT73-BT9YD-7RT7B-HT9TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "94YDN-9D83M-FCVXY-WCDJD-B98XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YQC4N-FPWFY-9QX3G-RBYF4-X2FDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "77KP3-2NKBM-2BWRG-Y6JMP-DDBQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TH4NW-Y4KJT-V3BKF-G44PD-C373B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MB99N-CWHR9-XC4JJ-3DYPF-FC2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FDBH9-NYFPC-VBRYX-GF9J4-QGPKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N6QRT-2TVVT-WV3FX-7WDCY-43KTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3YGDN-B6W8Y-8H22W-VTPJ3-M7V3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4CHPN-PGR77-X77QT-46TQV-7QWXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NJ6V3-JFF8P-G88CB-4CMH2-RVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9XNGC-9G6X8-TD698-HVCTF-4X8XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NQHY3-JGHCH-VTKXX-DG38T-Y98XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "32QRG-PN44Q-YD4GR-CFH6R-WFG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NY26R-7J8WH-VYV32-XVC2K-MG9TY", + "activations": 244, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CGNTW-9F3G4-V3TVY-YK7BR-GXXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4RVXJ-N3PHD-JQPDW-2JMK6-GMT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TN8MW-DRQ6J-4V7QC-DGT22-MP2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V8KGC-YTN4W-34FQB-7VVWX-C7JXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3YNTT-7CJ7G-9FHV9-QYCT2-3YH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2PW79-NVB3Q-J8RDF-39D8R-FC2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NM4TW-WWKTW-9PWJW-C7WMH-BDWXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P4JN9-FYXC3-4R24G-RGX7J-4VV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "F3NWX-VFMFC-MHYYF-BCJ3K-QV66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QGQRN-D2DPC-BY3JW-VCPF8-J8F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NGB8Q-9M2JR-X9FQW-7P4KY-XBT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6WJXF-N3PWQ-DQV6R-JBVHP-Q3WXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YTX9N-MR9BT-HTH3H-HCXJ6-HFR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VJRQN-6CGW4-YMMXX-BG8X6-V6DGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "69M28-HNM74-WJ9FR-6F3JD-9D73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "H36NQ-MKTJP-BHR8M-VKM64-R3KTY", + "activations": 250, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MJWYN-FDDVK-CGP7R-W7TWH-RGDGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VVGNB-K4XY7-DGVXB-CW4Q7-FJRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "C4DWY-NPBPM-TVBR8-KDQFV-6XXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NVG2P-XXRMQ-K37JK-DX2FH-46YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MQ4Q3-BNFY4-288F8-6BHXX-KQBQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FV34D-2NRQ7-BDTFB-WXB6T-D3WXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TN2BQ-D4B77-DMT9K-42K3P-J44DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N2GRP-HYBH2-CX7YM-7B4X3-C373B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NPBYM-X3KV6-Y248F-KM76C-6JF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XC4ND-WW4RQ-6MWJ9-6Q94X-CDKTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TFNC4-8JKR2-8B9B2-KWHXR-R3KTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VX88T-YNG7H-D44WW-FHFR9-2YT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CC38J-N8BF9-PMCQJ-C9GMD-3PFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XPMX3-NYRQJ-VKGQT-KYPWV-M4G6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JPFNQ-6B42W-438JR-6JBJH-CYT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WTQKK-9JN9J-YQ9VG-GR87P-6JF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "M8DMN-T3RFM-DH74H-4BCKQ-B98XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NQB44-PKHQ4-FQRQM-VDW62-TMT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "D7KTY-RNBM4-B9F8K-YTBQF-MWRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WGKVB-RNFWM-8GQ63-YQ3FB-KD73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J6B48-NB88Y-C7BQ2-4HGM8-TQ73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NYWCV-D7Y7H-YKVJ9-79JBG-RRG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YHNTG-43349-JWYJV-KM6CH-M4G6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YNWJF-DGQPQ-CW74H-6CW7Y-F9CKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WNVPQ-786GR-CHH4P-J389B-KD73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CDGRW-HN337-X3H73-KJ9DG-P7JXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WGN4K-323KF-C46KM-7JFTG-C9XTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DDV88-4NCGK-YC8FX-8JHHX-XKXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G7MQD-DN2QR-J94CG-KVF7R-VMH3B", + "activations": 250, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XN9PY-PHGQ4-2TGYW-2WFK6-QYH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WQBT6-R4N3C-KBRDJ-WMF8K-CDKTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "HKVPN-YPG8K-DWYVY-TPDHD-RJRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9N494-7HB3J-XH2KC-RTDJW-4VV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KFBN9-XP3JQ-VW4D8-KXBVR-VMH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QJ2XH-FXN93-DH74X-YG27K-HCFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JXN2B-WJCCG-WCVYB-FTFWP-VFR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6CQNC-6Q4G9-TKX3F-Y24FD-JTYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9N4T3-4MXQR-HD2D9-FJJFD-4GDGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VN9WB-RX7DV-JYRTP-6VTQG-8TYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PKM9V-6N922-CJPBR-MRR4B-QJ3GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XHHYG-X2NV7-R767F-Y2QCJ-QDBQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TFH7H-VNKVP-C2DF6-VQYC3-FM49M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N3C4C-6G3WV-9XR66-8848P-YKMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XCCK4-YQNCF-VH7CT-KHPH7-QPFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NQTT6-3PP8R-JJXQY-8H3DT-GMT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4VNJ8-894DK-J8VM8-PB83R-8B49M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "B4HP8-YNFMB-7V4DX-42R94-TVJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "X7DQM-NB82V-6MQCH-WHW86-2373B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N6XD9-7KCP8-4CMMM-CJ2H4-Q9MQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V4RV8-BNQDD-KCKHG-J7XJP-YKMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8VPNC-999QD-PBC93-8Q9VR-KBT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "26RJM-PN6QW-GXQQV-XWJM6-P7JXM", + "activations": 2467, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FPKNB-BD3WK-JTY9M-TYG6J-2GYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VPX9W-JN3D4-KHBJF-G7XR3-RJRDB", + "activations": 429, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V63BH-KNDH9-DDG7W-TFRJG-FVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6TN96-63B4H-BG9RV-FQXTP-HH66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JNVPC-CJ7BH-YPWT4-39GRC-MP2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KNC69-GKQJ6-MXR47-G9QTF-VMH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W4JFY-NHYD2-KRDT2-3PM6D-H22KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QNTDD-4PHV3-MYYWG-CPK6R-WFG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DPJN9-RMQBM-CFB72-V37QJ-D9MQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XNK4T-J6GYH-M3986-PYQ27-B7V3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PTNY4-DVQR2-VHVDP-JHRTM-KD73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WJC4R-NWTGF-6H6K2-C737Y-88F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WKCN3-47PDD-2R3CH-2JG2D-2WF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Q6FP6-GPNFH-W3RHV-4VHD2-9QBQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RNQ2Y-F9QXQ-MBVBJ-X79T3-Y4G6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KHG3D-NVC6W-QJ4F8-DXMK6-V6DGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DWW9N-DHF8K-W2336-2Q8B7-CYT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9T8GN-XHRPX-R9MDF-37G9X-6CQGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NJXTV-JGCCT-P9P8V-GJTQF-MWRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3N6WM-XYGY6-FQ6WH-M9897-7QWXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3BN89-7W2HJ-HDRGD-7PJ9D-PYT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8GTC3-N22FQ-YCGF2-P2PCJ-YP2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NYCDK-HD7JJ-T6D7Y-9X8RH-46YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "846NG-QXJYQ-2FMVC-CXBV4-WFG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NG8MV-3M8RY-J486F-99DXC-DDBQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "D68QB-N79BC-DMXTD-PM8TY-6VJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MNQV8-X496H-M3G9C-GW2VT-WXCKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "T3NQH-PBJD3-K36YB-43QGG-RRG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PYNK7-CY83J-KWVXP-GD7MB-39MQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GKNPQ-QQBPG-97QBD-JMX9C-W2QGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BJCHQ-MNJGW-Y4XD9-QM969-CDKTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P88NJ-QPWBG-P3BRY-DK22F-JHV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TNVT4-THRM3-M7MDW-X3PRV-CYT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "46D6W-N3FP2-XM34M-WHQ4J-HMH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "47286-NQH3M-GPKC6-8BT29-T83GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BVKDY-XDNB4-6QTR6-G93TR-GXXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P2MH9-FDN33-KCQHK-XW69G-H8RDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VKVPN-37X2H-KTJX4-8V34M-CWF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "B8C2N-WCHP9-CYGVK-2MY49-2YT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8BV46-NY2H3-X8QK6-XK6DD-49CKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PJV3K-GNKPV-2XD4P-4XP8P-4RG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QJ9HY-F9N98-4JQX7-RGPPK-WTYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WVBYN-86FXT-7B3DR-46898-YP2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K9N76-C98PQ-3K36Q-HVQ9H-46YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GNV69-GK3M3-RJFWP-Y9DD8-2GYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GHD8Y-VJNX4-T4V4R-MBC2V-8HV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "262NY-BCMG8-2QB78-C2YQ7-8HV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YNC3F-2X939-67DTB-Q68J9-7XMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "92GXN-C729C-7XBV8-TYV2R-VMH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JNFGQ-97QWD-C8QJ9-9RKFY-DPFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9M3G3-NYGPM-CGKXH-D73BB-BBH3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PXBTJ-XNM6V-CPC2J-W9T9Q-VXMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NGDJY-HC77H-64W7B-M8YT7-94R9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GND3P-RVY28-BCJ24-6FJ9Q-Y4G6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TVNHH-4X3RC-KMF74-2BG3M-XBT6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GJMFN-RH6DR-2CCYD-2PPCQ-XHJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NK2VD-3YDX9-CVFB9-9HKYB-PR4DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TTJ7N-F6C9H-2J3VG-CVB3C-PGYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PHBJY-QNH3H-QX7MY-KV8TR-K4R9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XB336-9NRXG-4QW2B-9JPD7-4C2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "22CNC-6WC43-2H6Y9-K773G-YG9TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CM29X-N3WHG-9QPVG-R38WW-82QGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MPNP3-9J3RG-BD3MG-P6B4H-46YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DR3MV-7NT38-2D8C2-XGM9F-6Q73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DKNH3-8H9K2-WCPDT-PWTH4-K4R9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MKGHT-NQCVJ-9PTX2-8222F-PPQGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W9N8X-PBQTM-7J27T-DB6D3-H22KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WWNWK-XVVD8-HGGRC-PC84Y-R6YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NRVQY-XMMJH-2R63M-D4PVR-844DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RV87N-3CTFP-GM9DT-9B674-WFG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K6H4N-QC372-DBVCY-244MB-TXXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6F77B-TN7GY-69H8F-B87KP-D69TY", + "activations": 5000, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PC6QJ-F3NVJ-3BGTG-PYJB8-D9MQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W7PGG-NFP2W-RJ63X-GMFPD-9766Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MQNYK-7QKYR-W8RMM-W4K6G-MKMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BYMFJ-NDGB4-H7XMV-D4VFH-VT9TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "X3CN3-MGFCF-YCXHK-DX8DF-7H66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4VFNJ-9V8VJ-P7BMQ-672R6-6F4DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NQFXK-9WKFD-4TP6X-3Q7BC-GQ73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GX8N7-8CWBK-D8D4Q-P6TVC-BTDGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6QWDJ-8NP48-PX79B-YKT7R-BY49M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W7DNV-KF9MR-7QQQR-2M8M6-P7JXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BNK2J-D7CVM-RCB69-RJ6GV-VT9TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "W9N2P-BFHHT-BX82Y-BTWF8-BWRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "KQDFN-JX7K3-Y4RVB-6P4PG-KTPKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YHNYH-QR9GQ-8F2GY-TTMFB-43KTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N6H6Q-H9G2X-HJPFJ-68T4Q-GF4DB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9DN24-4TDVP-2FBYQ-TJHC2-27JXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N29Q6-4YBJX-9DV2X-P7VDQ-RJRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YB6WK-2NW47-BWJFT-KQT6M-88F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9G6DP-MNQRW-DBMCT-BJY3F-W8F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TD2N3-747KB-GYQMP-9HTJ8-2GYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3NQTF-64XBB-TJ8HD-H6VJB-2PQGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JNY62-29PGB-QHCJJ-CGR68-TQ73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7HBNR-2RT9Y-H77GV-3HY3V-XD73B", + "activations": 250, + "time": "2025-02-12 14:06:36" + }, + { + "key": "86TGN-4RTH2-HYQXH-CFQ2C-P9XTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PMN42-8MPWV-4CDG9-BHMDF-DJ3GY", + "activations": 75, + "time": "2025-02-12 14:06:36" + }, + { + "key": "T36DV-WDNF9-P7DWH-CVC2F-369TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2XQB3-NT3PV-QPFW3-GQKC4-WFG6Y", + "activations": 69, + "time": "2025-02-12 14:06:36" + }, + { + "key": "P33N6-42MCK-D23DT-3XVWQ-G83GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K4376-RNJWM-R42RF-MDTJR-FC2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NH2K3-VHKKV-Y9MVD-8B6FV-G6PKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YBHTT-NK6MJ-H66QW-D9GKJ-MTDGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PHYNW-BXHJR-TTMBX-BWY9X-9HJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N99Q3-P9Y24-4M8R2-BBDCX-XKXTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K4NTQ-K264P-PQ3BH-GQR83-M7V3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PFDT7-TBNDJ-82MTF-6K2F4-TVJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J4GRC-CN8CK-6HQBD-22K3Q-G83GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J7PMP-NG9JG-DKJQT-777CQ-M7V3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NBCFW-RK48K-9284W-V6V98-VH66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N9832-PXF49-H7CGC-4MWCG-CGYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XN372-YMTKV-DGJ9G-P7MKK-P373B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NBW99-8QXFP-BQ4B4-H38H6-TJF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6MK7P-NJW4W-8WKGX-3KMKB-KD73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "28RJN-DT6VY-YK3X7-9976M-KD73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NPDH3-2442P-MTM7H-GW8Y3-49CKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DQMG3-NKWMH-4FWQ8-MTCV7-KHJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WG868-DMNKX-R338T-7X8JW-VH66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G4Y4J-NTR74-WTG8J-6JG33-DV66Y", + "activations": 250, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TBP2N-G6C7Q-GCC6M-TRYCP-GQ73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TVBHM-GMNT7-VYXG3-TJFWW-QDBQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NFF4Y-XW8FW-J7FXB-F8HMF-4X8XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VDGNT-HPDJQ-DDVPH-64PMY-92FDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RDCJ9-9RNT6-7499B-K8TMK-M98XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DNM3H-HHBM4-RFD3R-K6G89-M98XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "73TXV-XNJ9W-BTKPP-CHR7C-8XCKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DYNKB-BB6WV-C69W3-9FPJG-FVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NR4QD-RYX49-KYT7V-296WG-FVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "48N2M-9Q8GF-TXW4J-7HM79-JXCKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "4JFN6-MJWR2-RC28Q-H3YF4-X2FDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7GT34-N88JD-DVCP4-HB2VV-PWF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "8RQNM-87WKK-277GF-94R42-YKMQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FJTTT-N7Y2Y-9XXPM-6QRW8-2GYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TNMBQ-938Q8-H3FKG-CHYPJ-J8F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "Y94PN-MR2P2-T9GTH-P3CK7-3J3GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "6CY63-NTYX8-VJ3KJ-MX39X-V22KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MX2NK-988X9-26WFQ-RWW7K-66PKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N93QW-MWXT9-82W2P-CK3WR-PPQGY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WNKQ3-CJK6B-D67X3-227K2-4RG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YYCNG-GP6CB-JM4Q8-699BG-2373B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N9CJ6-XX7WV-BD4GK-F67B6-FVV3B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "J42NQ-8QCG4-6WQY9-43CCV-PWF9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XV8YN-MR2CT-PG8XQ-YCW72-MP2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "76PNF-B2VFF-VWB8R-YGDRC-7CFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MJJN4-JFJF8-J9DWC-Q8Y3B-RC2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VNT6P-WPHDP-FV7C8-K48MQ-8K8XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "VTQ6D-NJY7Q-WXTDQ-8M4K7-DRR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WW3NP-PGGJ3-MTPR3-HYDFK-8QKTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BFXFR-NGYHC-4P8V2-MTF6W-DGPKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "G3NJW-4B8Q4-HCRJ7-XJJ4W-33WXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "XBTQ8-NQB9K-J987B-W9V2K-HCFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CC4FN-C26BK-Y7V8Q-7BFH9-FRG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WPYNF-8MBRX-MG6VD-JJPCW-WB49M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "742CC-TN7KW-QK8WX-CFQ88-2GYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DFN3Q-4XR7P-H32F8-DQW8J-D9MQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WHHH3-KQN2F-R6BQM-PKRJP-FX8XM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "H9HC7-NF72T-CK6MH-F7PKH-KHJXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2BXYH-D9NCM-Q4K3W-MV69X-GJF9M", + "activations": 250, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RNVR8-3F3KR-FDMBR-GY6DY-8FG6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "7QN2J-94K4Q-4GYFX-6XDBC-V8RDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TJMHN-PRKY8-2TMDM-PP33P-P9XTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NJTB2-V323G-3JX8M-K6X86-683GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "QDPTV-N9FG6-2J927-QWVVB-DPFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "JXNB3-Y2H9G-8JKV2-86FT4-7H66Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "CVBKG-2XNVD-P2VWC-TW4GB-JK8XM", + "activations": 250, + "time": "2025-02-12 14:06:36" + }, + { + "key": "2BF6G-NJQPT-PMJPV-WTWK8-YP2KM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N8GX6-9G3DW-B37GP-VBDKD-BG9TY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N2JXH-QFRTX-69C3R-JRTJV-DRR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "C8KMG-2NW2H-8DMHK-W43PV-FJRDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "K8NYD-H3X93-GFFG3-VRDKV-94R9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "PQDTH-4KNTP-WBRX8-FHCKB-F9CKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "M7CWN-M62XP-G8Y3M-DJJFB-VQWXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "N8G3J-8HDBW-77CGK-JJMYG-HFR9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "FD8P6-9VNQG-Q7HFD-K94JM-DPFDB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "YMXMJ-MNC8W-83KBR-YJ6GP-27JXM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NGWR2-GXWJ9-HVX4W-R87YG-C9XTY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "RC3Y6-2N9FJ-7VRYR-TVR7W-2GYQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BWNKX-8DTW9-RGPTJ-GJW97-R9CKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "NCP6H-V93RY-TR9D4-FV7MG-683GY", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "34QNX-G2G7Y-Y2XXV-XJM8J-TQ73B", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "X68Q6-NRVTP-YCW83-W7XHH-M4G6Y", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "WHFND-HTQ3P-VCP9W-GHM3J-D9MQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "V6NY4-DD7G4-G3F7H-JTRHB-R6YQB", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "GV8BN-3VGH6-99RKV-KBHX8-J8F9M", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "TRQM7-DXNKP-V2MCC-HWY97-R9CKM", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 8.1 RTM Professional ProfessionalN Enterprise EnterpriseN Volume MAK", + "keys": [ + { + "key": "NPJGY-QYXQV-PHFRG-BY9D9-DYGVD", + "activations": 596, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3TH2F-9NPWK-GHQRQ-TJD9G-TJD3Q", + "activations": 538, + "time": "2025-02-12 14:06:36" + }, + { + "key": "C8D8Y-QF8XC-7YFWM-YQ9BB-4FXN3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9V32M-MNFHJ-BRJY7-MCJRH-KHHQQ", + "activations": 1520, + "time": "2025-02-12 14:06:36" + }, + { + "key": "3KRQN-4RCT7-43CHB-K3246-9KWK3", + "activations": 0, + "time": "2025-02-12 14:06:36" + }, + { + "key": "DNKM3-RFTWP-BGX7Q-WMVJY-8FFX3", + "activations": 71, + "time": "2025-02-12 14:06:36" + }, + { + "key": "BYGKW-NDQVV-DR6TD-VJ4MB-TXWK3", + "activations": 1409, + "time": "2025-02-12 14:06:36" + }, + { + "key": "MKVNX-8VHKV-FKJDV-DPMKD-T6MDQ", + "activations": 0, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 8 RTM APPXLOB Client Volume MAK", + "keys": [ + { + "key": "JKFBN-MM493-F2FVR-QFH8H-G6JYV", + "activations": 208, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win 8 RTM Professional ProfessionalN Enterprise EnterpriseN Volume MAK", + "keys": [ + { + "key": "NCRJY-BWMQG-289RT-WPKCK-2YQHC", + "activations": 780, + "time": "2025-02-12 14:06:36" + }, + { + "key": "M7FCQ-KNWYM-C2H7D-KVWPR-BY2K2", + "activations": 796, + "time": "2025-02-12 14:06:36" + }, + { + "key": "9Q2QB-NBWJQ-R2WFQ-7767V-T273P", + "activations": 591, + "time": "2025-02-12 14:06:36" + } + ] + }, + { + "product": "Win Embedded Industry 8.1 RTM EmbeddedIndustry Volume MAK", + "keys": [ + { + "key": "Q3BJN-G7CY3-TWTPC-VYCP6-PDJMX", + "activations": 145, + "time": "2025-02-12 14:06:36" + } + ] + } +] \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..552d95e --- /dev/null +++ b/index.html @@ -0,0 +1,109 @@ + + + + + 在线检测密钥-微软激活密钥检测 + + + + + + + + + + + + + +
+
+ +
+
+
+ 输入密钥 + 未输入 +
+
+
+ + +
+
+

检测结果代码为0xC004C008时,可使用网页获取确认ID激活

+
+
+
+ + +
+
+
+
+
+ + +
+
+
检测结果
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..cf90432 --- /dev/null +++ b/js/main.js @@ -0,0 +1,257 @@ +// 密钥检测相关功能 +function initKeyCheck() { + const iidInput = document.getElementById('iid'); + const indicator = document.getElementById('iid-indicator'); + const checkBtn = document.getElementById('btn-get-cid'); + + if (iidInput) { + iidInput.addEventListener('input', function() { + let value = this.value.replace(/[^\w]/g,''); + + if (value.length === 25) { + indicator.textContent = '5位数'; + indicator.className = 'badge badge-blue'; + checkBtn.disabled = false; + this.className = 'form-input'; + } else { + this.value = value; + checkBtn.disabled = true; + indicator.textContent = value.length > 0 ? '错误Key' : '未输入'; + indicator.className = value.length > 0 ? 'badge badge-orange' : 'badge badge-black'; + this.className = 'form-input ' + (value.length > 0 ? 'invalid' : 'noiid'); + } + }); + } +} + +// 确认ID检测相关功能 +function initCidCheck() { + const iidInput = document.getElementById('iid'); + const indicator = document.getElementById('iid-indicator'); + const checkBtn = document.getElementById('btn-get-cid'); + + if (iidInput) { + iidInput.addEventListener('input', function() { + let value = this.value.replace(/\D/g, ''); + + if (value.length === 54 || value.length === 63) { + this.value = value.match(new RegExp('.{1,' + value.length / 9 + '}', 'g')).join('-'); + indicator.textContent = value.length / 9 + '位数'; + indicator.className = 'badge badge-blue'; + checkBtn.disabled = false; + this.className = 'form-input'; + } else { + this.value = value; + checkBtn.disabled = true; + indicator.textContent = value.length > 0 ? '错误IID' : '没有IID'; + indicator.className = value.length > 0 ? 'badge badge-orange' : 'badge badge-black'; + this.className = 'form-input ' + (value.length > 0 ? 'invalid' : 'noiid'); + } + }); + } +} + +// 加密的API配置 +const _0x2f8a = ['aHR0cHM6Ly9waWRrZXkuY29tL2FqYXgvcGlkbXNfYXBp', 'aHR0cHM6Ly9waWRrZXkuY29tL2FqYXgvY2lkbXNfYXBp', 'blZIQnozUklzSHBYSG9mTHYzQjg5aUZLOA==']; +const _0xd3c9 = str => atob(str); + +// 检测密钥 +function checkKey() { + const iid = document.getElementById('iid').value; + const checkBtn = document.getElementById('btn-get-cid'); + const loadingIndicator = document.getElementById('loading-indicator'); + + checkBtn.disabled = true; + checkBtn.textContent = '检测中'; + loadingIndicator.style.display = 'flex'; + + // 清空结果 + document.getElementById('pid-name').value = ''; + document.getElementById('pid-prd').value = ''; + document.getElementById('pid-code').value = ''; + document.getElementById('pid-time').value = ''; + + fetch(`${_0xd3c9(_0x2f8a[0])}?keys=${iid}&justforcheck=0&apikey=${_0xd3c9(_0x2f8a[2])}`) + .then(response => response.json()) + .then(data => { + if (data[0].is_retail === 1 || data[0].is_retail === 2) { + document.getElementById('pid-name').value = data[0].keyname_with_dash; + document.getElementById('pid-prd').value = data[0].prd; + + if (data[0].is_retail === 2 && data[0].remaining >= 0) { + document.getElementById('pid-code').value = data[0].remaining; + document.getElementById('err').textContent = '次数'; + } else { + document.getElementById('pid-code').value = data[0].errorcode; + document.getElementById('err').textContent = '代码'; + } + + document.getElementById('pid-time').value = data[0].datetime_checked_done; + } else { + document.getElementById('pid-name').value = '请求超时,请稍后重试'; + } + }) + .catch(() => { + showError('请求超时,请稍后重试'); + }) + .finally(() => { + checkBtn.disabled = false; + checkBtn.textContent = '检测密钥'; + loadingIndicator.style.display = 'none'; + }); +} + +// 获取确认ID +function getCid() { + const iid = document.getElementById('iid').value; + const checkBtn = document.getElementById('btn-get-cid'); + const loadingIndicator = document.getElementById('loading-indicator'); + + checkBtn.disabled = true; + checkBtn.textContent = '获取中'; + loadingIndicator.style.display = 'flex'; + + // 清空结果 + document.getElementById('cid-cont').value = ''; + document.getElementById('cid-split').value = ''; + + fetch(`${_0xd3c9(_0x2f8a[1])}?iids=${iid}&justforcheck=0&apikey=${_0xd3c9(_0x2f8a[2])}`) + .then(response => response.json()) + .then(data => { + const cidCont = document.getElementById('cid-cont'); + const cidSplit = document.getElementById('cid-split'); + + if (data.typeiid === 1) { + cidCont.value = data.confirmation_id_no_dash; + cidSplit.value = data.confirmation_id_with_dash; + } else if (data.typeiid === 4) { + cidCont.value = data.short_result === "IID is not correct!!" + ? '安装ID错误,请检查后重新输入' + : '密钥失效,请更换密钥激活'; + } else if (data.typeiid === 3) { + cidCont.value = '无法获取确认ID,建议不要使用020密钥'; + } else { + cidCont.value = '检测失败,请稍后重试'; + } + }) + .catch(() => { + showError('请求超时,请稍后重试'); + }) + .finally(() => { + checkBtn.disabled = false; + checkBtn.textContent = '获取确认ID'; + loadingIndicator.style.display = 'none'; + }); +} + +// 复制确认ID +function copyCid() { + const cidSplit = document.getElementById('cid-split'); + cidSplit.select(); + document.execCommand('copy'); + alert('已复制好,可贴粘。'); +} + +// 清除输入框内容 +function clearInput() { + const iidInput = document.getElementById('iid'); + const indicator = document.getElementById('iid-indicator'); + const checkBtn = document.getElementById('btn-get-cid'); + const pageType = document.body.dataset.page; + + // 清空输入 + iidInput.value = ''; + iidInput.className = 'form-input noiid'; + + // 重置状态指示器 + indicator.textContent = pageType === 'key' ? '未输入' : '没有IID'; + indicator.className = 'badge badge-black'; + + // 禁用检测按钮 + checkBtn.disabled = true; + + // 聚焦输入框 + iidInput.focus(); +} + +// 显示错误信息 +function showError(message) { + const errorContainer = document.createElement('div'); + errorContainer.setAttribute('role', 'alert'); + errorContainer.className = 'error-message'; + errorContainer.textContent = message; + + const form = document.querySelector('.form-group'); + form.appendChild(errorContainer); + + setTimeout(() => { + errorContainer.remove(); + }, 5000); +} + +// 表格排序功能 +function sortTable(button) { + const table = button.closest('table'); + const tbody = table.querySelector('tbody'); + const rows = Array.from(tbody.querySelectorAll('tr')); + const isAsc = button.getAttribute('data-order') === 'desc'; + + // 添加排序动画效果 + rows.forEach(row => row.classList.add('sorting')); + + // 排序行 + rows.sort((a, b) => { + const aValue = parseInt(a.cells[1].textContent.trim()) || 0; + const bValue = parseInt(b.cells[1].textContent.trim()) || 0; + return isAsc ? aValue - bValue : bValue - aValue; + }); + + // 更新排序方向和按钮状态 + button.setAttribute('data-order', isAsc ? 'asc' : 'desc'); + button.classList.toggle('active'); + + // 更新箭头方向 + const sortIcon = button.querySelector('.sort-icon'); + sortIcon.textContent = isAsc ? '↑' : '↓'; + + // 清空并重新插入排序后的行 + while (tbody.firstChild) { + tbody.removeChild(tbody.firstChild); + } + rows.forEach(row => tbody.appendChild(row)); + + // 移除排序动画效果 + setTimeout(() => { + rows.forEach(row => row.classList.remove('sorting')); + }, 300); +} + +// 展开/折叠产品组 +function toggleProduct(header) { + const content = header.nextElementSibling; + header.classList.toggle('active'); + const isExpanded = header.classList.contains('active'); + header.setAttribute('aria-expanded', isExpanded); + content.classList.toggle('show'); +} + +// 初始化页面功能 +document.addEventListener('DOMContentLoaded', function() { + const pageType = document.body.dataset.page; + + if (pageType === 'key') { + initKeyCheck(); + } else if (pageType === 'cid') { + initCidCheck(); + } +}); + +// 添加键盘支持 +document.addEventListener('keydown', function(e) { + if (e.target.classList.contains('product-header')) { + if (e.key === 'Enter' || e.key === ' ') { + e.preventDefault(); + toggleProduct(e.target); + } + } +}); \ No newline at end of file diff --git a/show-keys.html b/show-keys.html new file mode 100644 index 0000000..5a27b6f --- /dev/null +++ b/show-keys.html @@ -0,0 +1,170 @@ + + + + + 可用密钥列表-微软激活密钥 + + + + + + + + + + + + + +
+
+
+ 可用密钥列表 +
+ 来源于互联网,没有时效性,请检测后使用 +
+
+
+ + + +
+ +
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/tool.html b/tool.html new file mode 100644 index 0000000..1cc0e7c --- /dev/null +++ b/tool.html @@ -0,0 +1,104 @@ + + + + + Microsoft 激活脚本 (MAS) - 激活工具 + + + + + + + + + + + + + +
+
+
+ Microsoft 激活脚本 (MAS) +
+ 开源、安全、可靠的 Windows 和 Office 激活解决方案 +
+
+
+
+

+ MAS 是一个开源的 Windows 和 Office 激活工具,提供 HWID、Ohook 等多种激活方式,并具备完善的故障排除功能。它安全可靠,无需担心病毒或恶意软件的风险。 +

+
+ +
+

+ 主要功能 +

+
+
+
Windows 激活
+
支持各版本 Windows 系统激活
+
+
+
Office 激活
+
支持多个版本 Office 套件激活
+
+
+
HWID 激活
+
数字许可证永久激活方案
+
+
+
故障排除
+
提供全面的激活问题诊断修复
+
+
+
+ +
+

+ 获取方式 +

+

+ 点击下方按钮,了解详细信息和下载方式 +

+ + 📥查看详细信息 + +
+
+
+
+ + + + + + + \ No newline at end of file