diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index a4788b050..6b9d689e6 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,8 +1,4 @@
-* @phenax @wdhdev
+* @wdhdev
-/.github/ @wdhdev
/domains/ @is-a-dev/maintainers
-
*.md @is-a-dev/maintainers
-/LICENSE @phenax
-/dnsconfig.js @wdhdev
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index e1877d426..080e54b65 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1 @@
-custom: ["https://www.paypal.me/phenax"]
-liberapay: phenax
-buy_me_a_coffee: phenax
+custom: ["https://donate.is-a.dev"]
diff --git a/.github/workflows/raw-api.yml b/.github/workflows/raw-api.yml
index 35680dc72..4ba2bd85d 100644
--- a/.github/workflows/raw-api.yml
+++ b/.github/workflows/raw-api.yml
@@ -40,7 +40,7 @@ jobs:
source-directory: "raw-api"
destination-github-username: is-a-dev
destination-repository-name: raw-api
- user-email: actions@github.com
+ user-email: "actions@github.com"
user-name: "GitHub Actions"
env:
API_TOKEN_GITHUB: ${{ secrets.BOT }}
diff --git a/.github/workflows/validate.yml b/.github/workflows/validation.yml
similarity index 73%
rename from .github/workflows/validate.yml
rename to .github/workflows/validation.yml
index 0ca0890ec..0da107478 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validation.yml
@@ -7,6 +7,8 @@ on:
branches: [main]
paths:
- "domains/*"
+ - "tests/*"
+ - "utils/*"
- ".github/workflows/validation.yml"
- "dnsconfig.js"
@@ -28,15 +30,12 @@ jobs:
with:
args: check
- json:
- name: JSON
+ tests:
+ name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- - name: JSON Syntax Check
- uses: limitusus/json-syntax-check@v2
- with:
- pattern: "\\.json$"
- env:
- BASE: "domains/"
+ - run: npm install
+
+ - run: npm test
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..c6bba5913
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,130 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+lerna-debug.log*
+.pnpm-debug.log*
+
+# Diagnostic reports (https://nodejs.org/api/report.html)
+report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
+
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+*.lcov
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (https://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# Snowpack dependency directory (https://snowpack.dev/)
+web_modules/
+
+# TypeScript cache
+*.tsbuildinfo
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Optional stylelint cache
+.stylelintcache
+
+# Microbundle cache
+.rpt2_cache/
+.rts2_cache_cjs/
+.rts2_cache_es/
+.rts2_cache_umd/
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# dotenv environment variable files
+.env
+.env.development.local
+.env.test.local
+.env.production.local
+.env.local
+
+# parcel-bundler cache (https://parceljs.org/)
+.cache
+.parcel-cache
+
+# Next.js build output
+.next
+out
+
+# Nuxt.js build / generate output
+.nuxt
+dist
+
+# Gatsby files
+.cache/
+# Comment in the public line in if your project uses Gatsby and not Next.js
+# https://nextjs.org/blog/next-9-1#public-directory-support
+# public
+
+# vuepress build output
+.vuepress/dist
+
+# vuepress v2.x temp and cache directory
+.temp
+.cache
+
+# Docusaurus cache and generated files
+.docusaurus
+
+# Serverless directories
+.serverless/
+
+# FuseBox cache
+.fusebox/
+
+# DynamoDB Local files
+.dynamodb/
+
+# TernJS port file
+.tern-port
+
+# Stores VSCode versions used for testing VSCode extensions
+.vscode-test
+
+# yarn v2
+.yarn/cache
+.yarn/unplugged
+.yarn/build-state.yml
+.yarn/install-state.gz
+.pnp.*
diff --git a/MAINTAINERS.md b/MAINTAINERS.md
deleted file mode 100644
index 3c503188b..000000000
--- a/MAINTAINERS.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# is-a.dev Team
-| Name | GitHub | Role |
-|:-:|-|-|
-| Akshay | [@phenax](https://github.com/phenax) | Owner |
-| William | [@wdhdev](https://github.com/wdhdev) | Administrator |
-| CuteDog5695 | [@CuteDog5695](https://github.com/CuteDog5695) | Maintainer |
-| Daniel | [@hackermondev](https://github.com/hackermondev) | Maintainer |
-| DIBSTER | [@DEV-DIBSTER](https://github.com/DEV-DIBSTER) | Maintainer |
-| Om | [@omsenjalia](https://github.com/omsenjalia) | Maintainer |
-| orangc | [@orangci](https://github.com/orangci) | Maintainer |
-| Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer |
diff --git a/README.md b/README.md
index 98f1a6fff..6629d8c78 100644
--- a/README.md
+++ b/README.md
@@ -14,30 +14,32 @@
is-a-dev is a service that allows developers to get a sweet-looking ".is-a.dev" domain for their personal websites.
-[](https://github.com/is-a-dev/register/actions/workflows/publish.yml)
-
## Announcements & Status Updates
Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtimes regarding the service.
Not all of these will be posted on GitHub, however they will always be posted in our Discord server.
-
+
# Register
-### NS records
-When applying for NS records, please consider if you *actually* need them. Please provide a detailed reason (with evidence) of why you require NS records.
-
-9 times out of 10, you do not actually need NS records, and merely want them. We already support a wide range of records, so it is extremely unlikely you will actually require them.
+### NS Records
+When applying for NS records, please consider if you *actually* need them.
+In your PR, please provide *extensive* reasoning, with evidence/examples, of why you need NS records.
+You can see a good example of this [here](https://github.com/is-a-dev/register/pull/17592).
***Pull requests adding NS records without valid reasoning will be closed.***
**Instant Denials**:
- I don't want to create a pull request everytime I want to update my DNS records.
- - Over 3,000 people have to, you can too.
-- I want to use Cloudflare's proxy for DDoS protection.
- - Simply add `"proxied": true` to your file, to enable Cloudflare's Enterprise-level DDoS protection for your subdomain.
- - Note: We *may* allow certain users to register NS records if it would expose their home IP.
+ - Over 3,000 people have to create PRs for updating their records, you can too.
+- It is easier to manage DNS records on *(insert DNS provider name)*.
+ - It isn't too difficult to open a pull request to update your DNS records. We aim for PRs to be merged with-in 24 hours.
+- I want to use DDoS protection.
+ - You can simply add `"proxied": true` to your file, to enable Cloudflare's Enterprise-level DDoS protection for your subdomain.
-For any questions regarding NS records, feel free to email support@is-a.dev.
+> [!NOTE]
+> You can skip these requirements by [supporting the service](https://wdh.gg/pvNCdvs) with a small amount of $2.
+>
+> If you decide to donate, please email william@is-a.dev with your payment confirmation and your pull request link to receive your NS records.
## Manual Registration
> If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge).
diff --git a/dnsconfig.js b/dnsconfig.js
index 1dab9ac2d..e0be5c1a9 100644
--- a/dnsconfig.js
+++ b/dnsconfig.js
@@ -23,7 +23,6 @@ var records = [];
for (var subdomain in domains) {
var subdomainName = domains[subdomain].name;
- var fullSubdomain = subdomainName + "." + domainName;
var domainData = domains[subdomain].data;
var proxyState = domainData.proxied ? CF_PROXY_ON : CF_PROXY_OFF;
@@ -76,15 +75,18 @@ for (var subdomain in domains) {
// Handle DS records
if (domainData.record.DS) {
- records.push(
- DS(
- subdomainName,
- domainData.record.DS.key_tag,
- domainData.record.DS.algorithm,
- domainData.record.DS.digest_type,
- domainData.record.DS.digest
- )
- );
+ for (var ds in domainData.record.DS) {
+ var dsRecord = domainData.record.DS[ds];
+ records.push(
+ DS(
+ subdomainName,
+ dsRecord.key_tag,
+ dsRecord.algorithm,
+ dsRecord.digest_type,
+ dsRecord.digest
+ )
+ );
+ }
}
// Handle MX records
@@ -127,22 +129,22 @@ for (var subdomain in domains) {
if (domainData.record.TXT) {
if (Array.isArray(domainData.record.TXT)) {
for (var txt in domainData.record.TXT) {
- records.push(TXT(subdomainName, domainData.record.TXT[txt]));
+ records.push(TXT(subdomainName, domainData.record.TXT[txt].length <= 255 ? "\"" + domainData.record.TXT[txt] + "\"" : domainData.record.TXT[txt]));
}
} else {
- records.push(TXT(subdomainName, domainData.record.TXT));
+ records.push(TXT(subdomainName, domainData.record.TXT.length <= 255 ? "\"" + domainData.record.TXT + "\"" : domainData.record.TXT));
}
}
// Handle URL records
if (domainData.record.URL) {
records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
- records.push(TXT("_redirect." + subdomainName, domainData.record.URL));
+ records.push(TXT("_redirect." + subdomainName, "\"" + domainData.record.URL + "\""));
}
// Handle reserved domains
if (domainData.reserved) {
- records.push(TXT(subdomainName, "RESERVED"));
+ records.push(TXT(subdomainName, "\"" + "RESERVED" + "\""));
}
}
@@ -152,7 +154,6 @@ var options = {
var ignored = [
IGNORE("@", "MX,TXT"),
- IGNORE("\\*"),
IGNORE("_acme-challenge", "TXT"),
IGNORE("_autodiscover._tcp", "SRV"),
IGNORE("_dmarc", "TXT"),
@@ -162,6 +163,6 @@ var ignored = [
];
// Push TXT record of when the zone was last updated
-records.push(TXT("_zone-updated", Date.now().toString()));
+records.push(TXT("_zone-updated", "\"" + Date.now().toString() + "\""));
D(domainName, registrar, dnsProvider, options, ignored, records);
diff --git a/domains/0.json b/domains/0.json
new file mode 100644
index 000000000..e4788bcf6
--- /dev/null
+++ b/domains/0.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "S4IL21",
+ "email": "s4il.is.a.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "s4il21.github.io"
+ }
+}
diff --git a/domains/00001.json b/domains/00001.json
index 9aef9da6d..4fb2c2b47 100644
--- a/domains/00001.json
+++ b/domains/00001.json
@@ -6,6 +6,6 @@
"email": "satyamverma46@outlook.com"
},
"record": {
- "CNAME": "SatyamV7.github.io"
+ "CNAME": "satyamv7.github.io"
}
}
diff --git a/domains/0v90.json b/domains/0v90.json
index c63e41638..3df4851e1 100644
--- a/domains/0v90.json
+++ b/domains/0v90.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/0v90/0v90.github.io",
"owner": {
"username": "0v90",
- "discord": "651519394673065989",
- "email": ""
+ "discord": "651519394673065989"
},
"record": {
"A": [
diff --git a/domains/1-train-ride-in-germany-is-300-euros.json b/domains/1-train-ride-in-germany-is-300-euros.json
index 7bb16aa51..e809964fb 100644
--- a/domains/1-train-ride-in-germany-is-300-euros.json
+++ b/domains/1-train-ride-in-germany-is-300-euros.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "Yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"A": [
diff --git a/domains/1rogman.json b/domains/1rogman.json
index 03ec19107..573650b56 100644
--- a/domains/1rogman.json
+++ b/domains/1rogman.json
@@ -6,6 +6,6 @@
"email": "watsonsohil@gmail.com"
},
"record": {
- "CNAME": "EndingPencil.github.io"
+ "CNAME": "endingpencil.github.io"
}
}
diff --git a/domains/2fa.phoenix.json b/domains/2fa.phoenix.json
deleted file mode 100644
index 4d74122a1..000000000
--- a/domains/2fa.phoenix.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PhoenixOrigin",
- "email": "phoenixorigin171@gmail.com"
- },
- "record": {
- "A": ["130.162.166.134"]
- }
-}
diff --git a/domains/3gee.json b/domains/3gee.json
new file mode 100644
index 000000000..9addba996
--- /dev/null
+++ b/domains/3gee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "3geETR",
+ "email": "egemacun@gmail.com"
+ },
+ "record": {
+ "CNAME": "3geetr.github.io"
+ }
+}
diff --git a/domains/4217803c._improvmx.dhilipan.json b/domains/4217803c._improvmx.dhilipan.json
deleted file mode 100644
index 6e9bec43e..000000000
--- a/domains/4217803c._improvmx.dhilipan.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "MysticalPvE",
- "discord": "1229782675678826496",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.K-aVOrk2T-4Wp0VAaLx8W9V1QsToSmJJmlK-jJlb-Zzx6kpwvGMlemfsdLH4XQSksUlk6PD51_Mx7d83HzqgqiYb6zwx2-iSgfEn6fUKWlF09k1fWne_wS0sSjYiz6GluI6qNs9hh9buq19iGPVz9L16KWCvL0xnjQxBjVCiR0Q69p9Vaw3_5b7VEUnKQvomYkdbovZ2p10hzGmnrwtKkA0gboxJnqshcV-eUzav7LZJZOwbzoVPEODqdLbqCOlTBP4IJXNjkwKSNKsnQ6BorPydgmXNv4hCsuga3JKg2M438dLG9NK-H8U8Q4GHLk7sx797WY1EJ8AChvgojqX1Ag.OMEl4nD9pPVbIku9jIFcpA.qV3yol4qlMITrJUHTUtYxGLd7ARn8msshNlY6uMWmf8ZeIe7_RQdG-JV1f-rDEZLZX_FcDsE7c8kpOjy9ulW1uiFZW9lw-f0LEqywyLeZ94.K1K5YV-DWV_hIlL8X9l8jQ"
- },
- "record": {
- "TXT": "4217803c2e3e461b9f07eb8be0320a79"
- }
-}
diff --git a/domains/44.json b/domains/44.json
index c150bfffe..348a95092 100644
--- a/domains/44.json
+++ b/domains/44.json
@@ -6,6 +6,6 @@
"email": "0@fbi.ac"
},
"record": {
- "CNAME": "9xN.github.io"
+ "CNAME": "9xn.github.io"
}
}
diff --git a/domains/6.json b/domains/6.json
index e603767b7..ecafdb143 100644
--- a/domains/6.json
+++ b/domains/6.json
@@ -5,6 +5,5 @@
},
"record": {
"URL": "https://shockbs.is-a.dev/"
- },
- "proxied": true
+ }
}
diff --git a/domains/69.json b/domains/69.json
index 59f92b91d..0f2d4e83b 100644
--- a/domains/69.json
+++ b/domains/69.json
@@ -3,5 +3,7 @@
"username": "maskduck",
"discord": "716134528409665586"
},
- "record": { "CNAME": "maskduck.pages.dev" }
+ "record": {
+ "CNAME": "maskduck.pages.dev"
+ }
}
diff --git a/domains/7z.json b/domains/7z.json
new file mode 100644
index 000000000..226fd4575
--- /dev/null
+++ b/domains/7z.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "XikiZxGS",
+ "discord": "1015654462334971925",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg"
+ },
+
+ "record": {
+ "CNAME": "xikizxgs.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/_acme-challenge.ai.esb.json b/domains/_acme-challenge.ai.esb.json
deleted file mode 100644
index 12a43982d..000000000
--- a/domains/_acme-challenge.ai.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "discord": "1167825360151380032",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
- },
- "record": {
- "CNAME": "af252befb545b3b27e96b5b9._acme.deno.dev"
- }
-}
diff --git a/domains/_acme-challenge.cdn.esb.json b/domains/_acme-challenge.cdn.esb.json
deleted file mode 100644
index 7cc7237c9..000000000
--- a/domains/_acme-challenge.cdn.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "discord": "1167825360151380032",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.guUEvTOIBPJv8oJfvZdvgudRQpsBlIxnKLhef83On6LPv7t8yR4GXWxwwRWUmwlpsPJBLJBSzV1AZS26i7dgezj5k4-gfQdhr1ZKUz_w5T7JgQ9MIbWeOo5ocEMcMjmkC6WLesVMwH5cfCoOJeW097Gr6of_60Jt1JcpyNRX3s5zySh9cVb1p3_II0jrPbQ1Nj8ZqwNJhiRNT8xCdHt1cfsYi76RgFRx2iTsYbEmL0v933CCeqD75aYnlVmCqyKD-dv41QBhuq9dfUwKnJusArtxtbNC9h4EwX2Y9MnoIg7nKKLrOSllSS8tRIiVw2oHv_jHm3XRJascmoni2EzdmA.5waf0tgo5uTY4rjfw8gJUA.O0wUU5TTcpQ_8wkwEeKUsSX6wKEtwVZ-G0k1R0zjhAU9hXsii5BiittxlrdR2JKP_917n2rUCN7NKnYAFIg5acwvJS8NmZlvNcTIRxb_yFmC7fRfQ6RqXGkYjc0EEDWS.bxYmFS-IlttaZTgqdZdnHQ"
- },
- "record": {
- "CNAME": "fe4cfa72d5862865fb2759c8._acme.deno.dev"
- }
-}
diff --git a/domains/_atproto.alvin.json b/domains/_atproto.alvin.json
new file mode 100644
index 000000000..f1c615d37
--- /dev/null
+++ b/domains/_atproto.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "TXT": "did=did:plc:jkk7sl4llede4zzj2ctgkwsc"
+ }
+}
diff --git a/domains/mail.clyron.json b/domains/_atproto.clyron.json
similarity index 51%
rename from domains/mail.clyron.json
rename to domains/_atproto.clyron.json
index d88436675..a3aa6897e 100644
--- a/domains/mail.clyron.json
+++ b/domains/_atproto.clyron.json
@@ -4,7 +4,6 @@
"email": "onenonlyclyron@gmail.com"
},
"record": {
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ "TXT": "did=did:plc:fqvzbqsjzjkl4o66rfp6cgk3"
}
}
diff --git a/domains/_atproto.thehcj.json b/domains/_atproto.thehcj.json
new file mode 100644
index 000000000..40a3999bd
--- /dev/null
+++ b/domains/_atproto.thehcj.json
@@ -0,0 +1,10 @@
+{
+ "description": "domain verification for bluesky",
+ "owner": {
+ "username": "TheHCJ",
+ "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
+ },
+ "record": {
+ "TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
+ }
+ }
\ No newline at end of file
diff --git a/domains/_discord.akatsuki2555.json b/domains/_discord.akatsuki2555.json
deleted file mode 100644
index ec0b6beba..000000000
--- a/domains/_discord.akatsuki2555.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Akatsuki2555",
- "email": "akatsuki2555@proton.me",
- "discord": "1226900455037075509"
- },
- "record": {
- "TXT": "dh=30962b6c5cdbbd4629fdf0da9d0bf4c717f065e9"
- }
-}
diff --git a/domains/_discord.akk1to.json b/domains/_discord.akk1to.json
new file mode 100644
index 000000000..6697420f7
--- /dev/null
+++ b/domains/_discord.akk1to.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "TXT": ["dh=1b549c9ba1012a210482879df31eaddc4dbf0c7e"]
+ }
+}
diff --git a/domains/_discord.alpha.json b/domains/_discord.alpha.json
index f1551d2e7..69405d1ee 100644
--- a/domains/_discord.alpha.json
+++ b/domains/_discord.alpha.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
diff --git a/domains/_discord.anirbaaaan.json b/domains/_discord.anirbaaaan.json
new file mode 100644
index 000000000..f7a613430
--- /dev/null
+++ b/domains/_discord.anirbaaaan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anirbaaaan183",
+ "email": "anirbanrc@proton.me"
+ },
+ "record": {
+ "TXT": "dh=ef12f3d26e5f641e4a2f956c2a208b8da58b5c47"
+ }
+}
diff --git a/domains/_discord.ante.json b/domains/_discord.ante.json
new file mode 100644
index 000000000..825a82e84
--- /dev/null
+++ b/domains/_discord.ante.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "antebrl",
+ "email": "ahcwnh@gmail.com"
+ },
+ "record": {
+ "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"]
+ }
+}
diff --git a/domains/_discord.antoangiaothong.akk1to.json b/domains/_discord.antoangiaothong.akk1to.json
new file mode 100644
index 000000000..fecfb8a9a
--- /dev/null
+++ b/domains/_discord.antoangiaothong.akk1to.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "TXT": ["dh=1a950b0754b823073a474660fa065a40a6a77009"]
+ }
+}
diff --git a/domains/_discord.ashishagarwal.json b/domains/_discord.ashishagarwal.json
index f6ecafb7b..9e3cc64b0 100644
--- a/domains/_discord.ashishagarwal.json
+++ b/domains/_discord.ashishagarwal.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "ashishagarwal2023",
+ "username": "devashish2024",
"email": "code.with.aasheesh@gmail.com"
},
"record": {
diff --git a/domains/_discord.betaprj.akk1to.json b/domains/_discord.betaprj.akk1to.json
new file mode 100644
index 000000000..3fbd209cf
--- /dev/null
+++ b/domains/_discord.betaprj.akk1to.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "TXT": ["dh=e1e17c98197b35ff9ed4eef8a473fa86fa3106b8"]
+ }
+}
diff --git a/domains/_discord.codesuthar.json b/domains/_discord.codesuthar.json
deleted file mode 100644
index 1d18066b6..000000000
--- a/domains/_discord.codesuthar.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "CodeSuthar",
- "email": "AdityaSuthar13@outlook.com"
- },
- "record": {
- "TXT": "dh=c9d95514358feae443357e8366bfa224cb7709e1"
- }
-}
diff --git a/domains/_discord.computerblade.json b/domains/_discord.computerblade.json
new file mode 100644
index 000000000..6e6100da9
--- /dev/null
+++ b/domains/_discord.computerblade.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "computerblade-official"
+ },
+ "record": {
+ "TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"]
+ }
+}
diff --git a/domains/_discord.cupglass.json b/domains/_discord.cupglass.json
deleted file mode 100644
index 53b155171..000000000
--- a/domains/_discord.cupglass.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "My base website. Very epik tbh 💥💥",
- "repo": "https://github.com/cupglassdev/cupglassdev.github.io",
- "owner": {
- "username": "cupglassdev",
- "twitter": "https://x.com/cupglassdev",
- "lahelu": "https://lahelu.com/user/cupglassdev",
- "discord": "cupglassdev"
- },
- "record": {
- "TXT": ["dh=1a7a67b133e464ce252912f15ae575f3a74b7c45"]
- }
-}
diff --git a/domains/_discord.dag.json b/domains/_discord.dag.json
deleted file mode 100644
index 19ddf9df7..000000000
--- a/domains/_discord.dag.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "daglaroglou",
- "email": "christos.daglaroglou@gmail.com"
- },
- "record": {
- "TXT": "dh=835bc23146b3e22366c53fc75b2e573d30f02730"
- }
-}
diff --git a/domains/_discord.dem0n.json b/domains/_discord.dem0n.json
new file mode 100644
index 000000000..a87d43dbe
--- /dev/null
+++ b/domains/_discord.dem0n.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "probablydem0n",
+ "discord": 935272776586129400
+ },
+ "record": {
+ "TXT": ["dh=5ce927a38096a3a9d48e24ba44d85b0655aa4fc6"]
+ }
+}
diff --git a/domains/_discord.ela.json b/domains/_discord.ela.json
new file mode 100644
index 000000000..0a5dcf453
--- /dev/null
+++ b/domains/_discord.ela.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DXRdev",
+ "discordID": "335635478684499970",
+ "discord": "elastrixx"
+ },
+ "record": {
+ "TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"]
+ }
+}
diff --git a/domains/_discord.esb.json b/domains/_discord.esb.json
deleted file mode 100644
index 634e43fac..000000000
--- a/domains/_discord.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "discord": "1167825360151380032",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.fiKDfHFdeXEvcx-9T9B_2QxG8p8P-fC3uT5So98T78XutxFp6Nc6qElNABob_nxlsiOK9N1RIqeRdDfPDN1jMATvN5NbJK3djCOaSDU7gb7qXVKpNHJKERtcSBVfFP4GzEgnyFP2x6y0USWUI3qjuuyhEP73lVvBkI8Xwi9ijhVGPiJI2OXMh4SRLvUlTXxSyi0EmK5GJEZNMan0Phxhe1vIN4HXialEHu5X9z85VVDaPnTKtZUM0cv_YSlnL5KbHxL8o82zNdiuTX1XV2gjACcmk1-YW_AhH3pUOvCNlbodewyVG9Q0whaLZvtccOnsbVst8dzc2STxanASBN2idA.hMiZtTdAF3ZgNO_mRHziWw.fImfROdecxp7xIqWTq_k-a339nOvZCxndcY8pHEQ6ZMYJ0gNwSBWbm3W8ob1k83z9DvgrYFwBansZ4JrlG7VU_o4HPAmB0sHPMpp8EsHpOQ1IORmNM5sMUEJbBeXeekG.n_nbnPDDQbi7MqrJXIc5xw"
- },
- "record": {
- "TXT": "dh=fb569bc3fb022455ac370440b925e73fbf40b75d"
- }
-}
diff --git a/domains/_discord.evie.json b/domains/_discord.evie.json
index dc5fd1346..435aef748 100644
--- a/domains/_discord.evie.json
+++ b/domains/_discord.evie.json
@@ -2,8 +2,7 @@
"owner": {
"username": "Socketlike",
"discordId": "285329659023851520",
- "discord": "encyclopedic",
- "email": ""
+ "discord": "encyclopedic"
},
"record": {
"TXT": "dh=2ffdb09f9be5f3f51fe2089c4cced6ec296d490e"
diff --git a/domains/_discord.gokulbarath.json b/domains/_discord.gokulbarath.json
new file mode 100644
index 000000000..b6448956d
--- /dev/null
+++ b/domains/_discord.gokulbarath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gokul6350",
+ "email": "gokul00060@gmail.com"
+ },
+ "record": {
+ "TXT": ["dh=55a65497a2c3938fee2de54e3600a5b55524016c"]
+ }
+}
diff --git a/domains/_discord.hchs-bot.json b/domains/_discord.hchs-bot.json
index b01a1f70f..146b14f90 100644
--- a/domains/_discord.hchs-bot.json
+++ b/domains/_discord.hchs-bot.json
@@ -2,7 +2,7 @@
"owner": {
"username": "jimmy20180130",
"email": "jimmy20180130@gmail.com",
- "twitter": "@jimmyyo45639462",
+ "twitter": "jimmyyo45639462",
"discord": "xiaoxi_tw#0"
},
"record": {
diff --git a/domains/_discord.jirafey.json b/domains/_discord.jirafey.json
deleted file mode 100644
index ca5092c75..000000000
--- a/domains/_discord.jirafey.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jirafey",
- "email": "e9282425-361f-427d-a3dd-249a564432b9@anonaddy.me"
- },
- "record": {
- "TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f"
- }
-}
diff --git a/domains/_discord.keybinds.json b/domains/_discord.keybinds.json
new file mode 100644
index 000000000..82012508a
--- /dev/null
+++ b/domains/_discord.keybinds.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "tr1xem"
+ },
+ "record": {
+ "TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"]
+ }
+}
diff --git a/domains/_discord.krazy.json b/domains/_discord.krazy.json
deleted file mode 100644
index 136b23b6d..000000000
--- a/domains/_discord.krazy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "KrazyKleb",
- "email": "krazykleb@outlook.com"
- },
- "record": {
- "TXT": "dh=9b437fc3639b73eb33fe9b536d5ad6acbec42dd1"
- }
-}
diff --git a/domains/_discord.kuba.json b/domains/_discord.kuba.json
deleted file mode 100644
index 9e353aa16..000000000
--- a/domains/_discord.kuba.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "_discord.kuba is a subdomain for verification of Discord's domain ownership system.",
- "owner": {
- "telegram": "idkuba",
- "username": "kbvivi",
- "email": "kbvivi.contact@gmail.com",
- "discord": "105170831130234880"
- },
- "repo": "https://github.com/kbvivi/kuba.lol",
- "record": {
- "TXT": ["dh=4f43d84403713773fa9506963218fe01cfd9b61d"]
- }
-}
diff --git a/domains/_discord.letum.json b/domains/_discord.letum.json
index 153b01c8a..16a352e1f 100644
--- a/domains/_discord.letum.json
+++ b/domains/_discord.letum.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "amoramicae",
- "discord": "1252631745514180790",
- "email": ""
+ "discord": "1252631745514180790"
},
"record": {
"TXT": "dh=d49386149c842861e763ac8bf5ce74c93414ce5a"
diff --git a/domains/_discord.linksrayan.json b/domains/_discord.linksrayan.json
deleted file mode 100644
index f9c181f2f..000000000
--- a/domains/_discord.linksrayan.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "syedrayangames",
- "email": "syedrayangames@gmail.com"
- },
- "record": {
- "TXT": "dh=9978fb189e392bec25b857297f914f34ef65ffb7"
- }
-}
diff --git a/domains/_discord.nikymetaa.json b/domains/_discord.nikymetaa.json
index 05d81f346..e295661f1 100644
--- a/domains/_discord.nikymetaa.json
+++ b/domains/_discord.nikymetaa.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "nikytap1n",
+ "username": "nikyy2",
"email": "anhky726@gmail.com",
"discord": "1007521768761729094"
},
diff --git a/domains/_discord.oc.json b/domains/_discord.oc.json
deleted file mode 100644
index ca3feed6f..000000000
--- a/domains/_discord.oc.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
- },
- "record": {
- "TXT": "dh=a46c846585142f2290edfa87de14a47c01715d15"
- }
-}
diff --git a/domains/_discord.orange.json b/domains/_discord.orange.json
deleted file mode 100644
index f211bc75e..000000000
--- a/domains/_discord.orange.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
- },
- "record": {
- "TXT": "dh=7e7e671a8b44d02fde9ab6f6df7baf94086c96fd"
- }
-}
diff --git a/domains/_discord.owo.json b/domains/_discord.owo.json
deleted file mode 100644
index 21dea334f..000000000
--- a/domains/_discord.owo.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
- },
- "record": {
- "TXT": "dh=f05ab12fac60a5257c0ebc18895228ee3ec397d3"
- }
-}
diff --git a/domains/_discord.ploszukiwacz.json b/domains/_discord.ploszukiwacz.json
deleted file mode 100644
index 737224e5f..000000000
--- a/domains/_discord.ploszukiwacz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PlOszukiwaczDEV",
- "email": "ploszukiwacz1@gmail.com"
- },
- "record": {
- "TXT": "dh=eaa22a150696d8482b787e7ec7b05b3512224995"
- }
-}
diff --git a/domains/_discord.potatochips0706.json b/domains/_discord.potatochips0706.json
deleted file mode 100644
index acca12506..000000000
--- a/domains/_discord.potatochips0706.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "potato0706",
- "email": "potatochips0706@gmail.com"
- },
- "record": {
- "TXT": "dh=0eeef9c4f4ec2b1309eec477bd8170e116d3b1d9"
- }
-}
diff --git a/domains/_discord.privatekey.json b/domains/_discord.privatekey.json
new file mode 100644
index 000000000..b5925c9cf
--- /dev/null
+++ b/domains/_discord.privatekey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "keydevelops",
+ "email": "rumaevvadim@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=be4a0fbe37df16fa2d25e29ec7bc4f669703a71d"
+ }
+}
diff --git a/domains/_discord.rouf0x.json b/domains/_discord.rouf0x.json
new file mode 100644
index 000000000..7928bfeb6
--- /dev/null
+++ b/domains/_discord.rouf0x.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Roufox",
+ "email": "gabrielruf.fr@gmail.com",
+ "discord": "Roufox"
+ },
+ "record": {
+ "TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271"
+ }
+}
diff --git a/domains/_discord.s4il.json b/domains/_discord.s4il.json
new file mode 100644
index 000000000..0bea70580
--- /dev/null
+++ b/domains/_discord.s4il.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "S4IL21",
+ "email": "s4il.is.a.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=accf8fbd0fd5a197eecbedae299873b421de6430"
+ }
+}
diff --git a/domains/_discord.sabbir.json b/domains/_discord.sabbir.json
new file mode 100644
index 000000000..1ae6b2940
--- /dev/null
+++ b/domains/_discord.sabbir.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "s8rr"
+ },
+ "record": {
+ "TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"]
+ }
+}
diff --git a/domains/_discord.satindar.json b/domains/_discord.satindar.json
deleted file mode 100644
index c3bc6a8fa..000000000
--- a/domains/_discord.satindar.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "satindar31",
- "email": "satindar@satindar-is.me"
- },
- "record": {
- "TXT": "dh=68721fc8451ae56bc306d470eb43f2127e0f9970"
- }
-}
diff --git a/domains/_discord.shing.json b/domains/_discord.shing.json
deleted file mode 100644
index 81fbb0f5a..000000000
--- a/domains/_discord.shing.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ShingSemicolon",
- "email": "Shing.XD.0602@gmail.com"
- },
- "record": {
- "TXT": "dh=df5daefdc7745f38295b3f89ac5de5373eec9c6c"
- }
-}
diff --git a/domains/_discord.tentomasne.json b/domains/_discord.tentomasne.json
index 82a4a11a5..129f3e26a 100644
--- a/domains/_discord.tentomasne.json
+++ b/domains/_discord.tentomasne.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "jasomtubratu"
- },
- "record": {
- "TXT": ["dh=47fddb5e68440c61b93da59a8e57d91da546ae1e"]
- }
-}
+ "owner": {
+ "username": "jasomtubratu"
+ },
+ "record": {
+ "TXT": ["dh=47fddb5e68440c61b93da59a8e57d91da546ae1e"]
+ }
+}
diff --git a/domains/_discord.thehcj.json b/domains/_discord.thehcj.json
new file mode 100644
index 000000000..48958ca46
--- /dev/null
+++ b/domains/_discord.thehcj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TheHCJ",
+ "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
+ },
+ "record": {
+ "TXT": "dh=d8213a7b69c2c71bfc2cdddc2744080847a4b0da"
+ }
+ }
\ No newline at end of file
diff --git a/domains/_discord.trix.json b/domains/_discord.trix.json
new file mode 100644
index 000000000..4f83b7007
--- /dev/null
+++ b/domains/_discord.trix.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "tr1xem"
+ },
+ "record": {
+ "TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"]
+ }
+}
diff --git a/domains/_discord.uwu.json b/domains/_discord.uwu.json
deleted file mode 100644
index 2c72d9128..000000000
--- a/domains/_discord.uwu.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
- },
- "record": {
- "TXT": "dh=23993c297b87e754fd5660af023aa55579ed324e"
- }
-}
diff --git a/domains/_discord.wizardsword.json b/domains/_discord.wizardsword.json
new file mode 100644
index 000000000..e2b1afbb4
--- /dev/null
+++ b/domains/_discord.wizardsword.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MukuJhansi",
+ "email": "mukundagrawal800@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=4df0e55d42947236385030525829593c2e5cbd62"
+ }
+}
diff --git a/domains/_discord.xiaoxi-tw.json b/domains/_discord.xiaoxi-tw.json
index 8b7cee5b7..7a0b2eff0 100644
--- a/domains/_discord.xiaoxi-tw.json
+++ b/domains/_discord.xiaoxi-tw.json
@@ -2,7 +2,7 @@
"owner": {
"username": "jimmy20180130",
"email": "jimmy20180130@gmail.com",
- "twitter": "@jimmyyo45639462",
+ "twitter": "jimmyyo45639462",
"discord": "xiaoxi_tw#0"
},
"record": {
diff --git a/domains/_discord.xzonix.json b/domains/_discord.xzonix.json
deleted file mode 100644
index 3ce849246..000000000
--- a/domains/_discord.xzonix.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "xzonix",
- "email": "imahalojigi@gmail.com"
- },
- "record": {
- "TXT": "dh=9ffde6acccff8c74faeb599818e2901110d15fa5"
- }
-}
diff --git a/domains/_discord.yfa.json b/domains/_discord.yfa.json
index 839e9b21b..cfb297860 100644
--- a/domains/_discord.yfa.json
+++ b/domains/_discord.yfa.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "dh=b8044fd4f0628a706be5fd878fae96886bae23b7"
diff --git a/domains/_discord.z.json b/domains/_discord.z.json
deleted file mode 100644
index 8e5cbf989..000000000
--- a/domains/_discord.z.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "SkyExploreWasTaken",
- "discord": "1049263707177353247",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg"
- },
- "record": {
- "TXT": "dh=f84f09e3884eca601066a6e1dba5175f6e82940f"
- }
-}
diff --git a/domains/_discord.ziyn.json b/domains/_discord.ziyn.json
deleted file mode 100644
index 419153720..000000000
--- a/domains/_discord.ziyn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "ZiynCS",
- "email": "NotZiyn@gmail.com"
- },
- "record": {
- "TXT": "dh=b7efba321635b7528ef7d9a605d747b343fa135d"
- }
-}
diff --git a/domains/_dmarc.dhilipan.json b/domains/_dmarc.dhilipan.json
new file mode 100644
index 000000000..545f32d1c
--- /dev/null
+++ b/domains/_dmarc.dhilipan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Dhilipan-Git",
+ "discord": "1306595993055268875",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A"
+ },
+ "record": {
+ "TXT": ["v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s"]
+ }
+}
diff --git a/domains/_dmarc.yxz.json b/domains/_dmarc.yxz.json
new file mode 100644
index 000000000..c7fdac868
--- /dev/null
+++ b/domains/_dmarc.yxz.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "yz9551",
+ "email": "",
+ "discord": "yz9551"
+ },
+ "record": {
+ "TXT": [
+ "v=DMARC1; p=reject; pct=100; rua=mailto:dmarc-reports@yxz.is-a.dev; ruf=mailto:forensic-reports@yxz.is-a.dev; adkim=r; aspf=r"
+ ]
+ }
+}
diff --git a/domains/_gh-50xsuisse-o.50x.json b/domains/_gh-50xsuisse-o.50x.json
new file mode 100644
index 000000000..9b9f2c8c3
--- /dev/null
+++ b/domains/_gh-50xsuisse-o.50x.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MullerIsabella",
+ "email": "AlpineDreamer92@protonmail.com"
+ },
+ "record": {
+ "TXT": "8e7d9774b8"
+ }
+}
diff --git a/domains/_gh-DeadCodeGames-o.deadcode.json b/domains/_gh-deadcodegames-o.deadcode.json
similarity index 76%
rename from domains/_gh-DeadCodeGames-o.deadcode.json
rename to domains/_gh-deadcodegames-o.deadcode.json
index 15d36be09..d1de88822 100644
--- a/domains/_gh-DeadCodeGames-o.deadcode.json
+++ b/domains/_gh-deadcodegames-o.deadcode.json
@@ -2,10 +2,10 @@
"owner": {
"username": "RichardKanshen",
"email": "richard@kanshen.click",
- "twitter": "@kanskje0",
+ "twitter": "kanskje0",
"discord": "kanshen.uwu",
"bluesky": "kanshen.click",
- "telegram": "@richardkanskje"
+ "telegram": "richardkanskje"
},
"record": {
"TXT": "392e701839"
diff --git a/domains/_gh-swissquotes-o.50x.json b/domains/_gh-swissquotes-o.50x.json
new file mode 100644
index 000000000..c07dbfe14
--- /dev/null
+++ b/domains/_gh-swissquotes-o.50x.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MullerIsabella",
+ "email": "AlpineDreamer92@protonmail.com"
+ },
+ "record": {
+ "TXT": "111c9dc10c"
+ }
+}
diff --git a/domains/_github-challenge-SpicyDevs-org.spicy.json b/domains/_github-challenge-spicydevs-org.spicy.json
similarity index 100%
rename from domains/_github-challenge-SpicyDevs-org.spicy.json
rename to domains/_github-challenge-spicydevs-org.spicy.json
diff --git a/domains/_github-challenge-yfadev-org.alpha.json b/domains/_github-challenge-yfadev-org.alpha.json
index 465d8082e..d975761bc 100644
--- a/domains/_github-challenge-yfadev-org.alpha.json
+++ b/domains/_github-challenge-yfadev-org.alpha.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "9568f60569"
diff --git a/domains/_github-challenge-yfadev-org.yfa.json b/domains/_github-challenge-yfadev-org.yfa.json
index 46c98fb3d..555a47348 100644
--- a/domains/_github-challenge-yfadev-org.yfa.json
+++ b/domains/_github-challenge-yfadev-org.yfa.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "a4b5c60953"
diff --git a/domains/_github-challenge-yfadev-org.yfadev.json b/domains/_github-challenge-yfadev-org.yfadev.json
index 7d3b4ac7c..78cb27e9b 100644
--- a/domains/_github-challenge-yfadev-org.yfadev.json
+++ b/domains/_github-challenge-yfadev-org.yfadev.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"TXT": "ed3c92c01a"
diff --git a/domains/_github-pages-challenge-0pearlcz0.pearlcz.json b/domains/_github-pages-challenge-0pearlcz0.pearlcz.json
index 5450a96d0..c53d7b221 100644
--- a/domains/_github-pages-challenge-0pearlcz0.pearlcz.json
+++ b/domains/_github-pages-challenge-0pearlcz0.pearlcz.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "0pearlcz0",
- "email": "",
- "discord": "809488731353776149",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EWTrZf_5I2GQGS2_M2eRydgef__rnGfaJplaMYAtS-0BxFSldAaScbilhvJXA-LGBa7Y79M3fYvUG_WCaoEV-GUGrNubGdfub4EnUBCAiatsMr5c6jBAZKze2qp2xRzpwGbTFs2nLGK-ON6s6LmBQfmqDdBRMAofSeWYSDDmjntJ9YBiC0eEor-0DtB7ljRTonUt-8th_n5s1AszQxM6koZRO8IFIe7hfL4PylTZaR1n-9hSU4j7X6zHkpJmC0Q8x9VP8KzuPzmApFO4Trc2oN8fs1YsUJSeMR5PZ4A4XiCEQ_ZhUlm1QuuUB25pEao8uoFx4ZSDDRN5mougkdqYFg.vxBW0pzGpQAcBqm0jHWZOw.Zu5v21jKdWfaHo3ErT3SkOVdcmrCw0b8c2NLSflMvKagusHcXg6qhaKmyATLUjQn_uVE6epD1OEim54ji-S_a7ypkn40Ii_Rl7HXgWIHDZg.CPb58_yXhixs83QtFx3ROQ"
- },
-
- "record": {
- "TXT": "bf6f41543a58bffd08fd85ffd9d254"
- }
- }
-
\ No newline at end of file
+ "owner": {
+ "username": "0pearlcz0",
+ "discord": "809488731353776149",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.EWTrZf_5I2GQGS2_M2eRydgef__rnGfaJplaMYAtS-0BxFSldAaScbilhvJXA-LGBa7Y79M3fYvUG_WCaoEV-GUGrNubGdfub4EnUBCAiatsMr5c6jBAZKze2qp2xRzpwGbTFs2nLGK-ON6s6LmBQfmqDdBRMAofSeWYSDDmjntJ9YBiC0eEor-0DtB7ljRTonUt-8th_n5s1AszQxM6koZRO8IFIe7hfL4PylTZaR1n-9hSU4j7X6zHkpJmC0Q8x9VP8KzuPzmApFO4Trc2oN8fs1YsUJSeMR5PZ4A4XiCEQ_ZhUlm1QuuUB25pEao8uoFx4ZSDDRN5mougkdqYFg.vxBW0pzGpQAcBqm0jHWZOw.Zu5v21jKdWfaHo3ErT3SkOVdcmrCw0b8c2NLSflMvKagusHcXg6qhaKmyATLUjQn_uVE6epD1OEim54ji-S_a7ypkn40Ii_Rl7HXgWIHDZg.CPb58_yXhixs83QtFx3ROQ"
+ },
+ "record": {
+ "TXT": "bf6f41543a58bffd08fd85ffd9d254"
+ }
+}
diff --git a/domains/_github-pages-challenge-0v90.json b/domains/_github-pages-challenge-0v90.json
index 94f457e48..ca64ecee6 100644
--- a/domains/_github-pages-challenge-0v90.json
+++ b/domains/_github-pages-challenge-0v90.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "0v90",
- "discord": "651519394673065989",
- "email": ""
+ "discord": "651519394673065989"
},
"record": {
"TXT": "9e58408bb4a7267e5a81669f75cfb3"
diff --git a/domains/_github-pages-challenge-Akatsuki2555.akatsuki2555.json b/domains/_github-pages-challenge-Akatsuki2555.akatsuki2555.json
deleted file mode 100644
index 862696f8f..000000000
--- a/domains/_github-pages-challenge-Akatsuki2555.akatsuki2555.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Akatsuki2555",
- "email": "Akatsuki2555@proton.me"
- },
- "record": {
- "TXT": "af66c6734ae2342654c413fbb3b9aa"
- }
-}
diff --git a/domains/_github-pages-challenge-Glqch404.glqch.json b/domains/_github-pages-challenge-Glqch404.glqch.json
deleted file mode 100644
index e9001d5ba..000000000
--- a/domains/_github-pages-challenge-Glqch404.glqch.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "Glqch404",
- "email": "bridgerbusiness2@gmail.com",
- "twitter": "Glqch",
- "discord": "915932527871541309"
- },
- "record": {
- "TXT": "a3b430c8adc12043863d6785cfa782"
- }
-}
diff --git a/domains/_github-pages-challenge-SkyExploreWasTaken.z.json b/domains/_github-pages-challenge-SkyExploreWasTaken.z.json
deleted file mode 100644
index 3a9ea96a5..000000000
--- a/domains/_github-pages-challenge-SkyExploreWasTaken.z.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "SkyExploreWasTaken",
- "discord": "1049263707177353247",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JjnXMeB-5yChFwqeTjRtzK3S_0JshRprm7Ix_Yl-zlvBzrR4ZlVNljlNwz5hHd6RwuBC_y5QFA1wpuLY7J9tuvaW_ttJpnbU58UGV2JNs6yR0C6ZBp5S0XR7J0zKoloVPgoN9i4q8SOzJeBQCanVOFzX3d9haVlZxrZFInLbMybS8FegbUdzDuV6s6TB0gA8fpBWx29ftzsLfwVj96tO9gmB0cJAU-URofHxmMBDUCIXDELQdrlRl_sj4kjW3uIKus_lgN7GU55xIvErfpV2_NVZTiuPzOh5HcP7rwWHhDaeKvQL4HeKWxIlrqQhPtQHQTFTgJuh7MmJimD95ixgVg.fhYccie9reT4Mi7XAmEtZA.lNh66dK74iYl7grB--wq1yi-AEKzvkuN7TLOS75XwYxJskb4dSr8TUcM0Y5ZVfR27oMahE1_kerqZOZOtZW58ZFwqoFD0oCFaEm68nwTd3or3uBWcYbZk5ilghu8TpPN.zKRzlPiGTBfNQTbJkCbrGg"
- },
- "record": {
- "TXT": "7eb5b6034d696256f342136b0289cc"
- }
-}
diff --git a/domains/_github-pages-challenge-TorchedSammy.sammy.json b/domains/_github-pages-challenge-TorchedSammy.sammy.json
deleted file mode 100644
index 6b2d4517e..000000000
--- a/domains/_github-pages-challenge-TorchedSammy.sammy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "TorchedSammy",
- "email": "torchedsammy@gmail.com"
- },
- "record": {
- "TXT": "9693d9e721696f4184aa3abfa35921"
- }
-}
diff --git a/domains/_github-pages-challenge-YesnielX.yesnielx.json b/domains/_github-pages-challenge-YesnielX.yesnielx.json
deleted file mode 100644
index d37f8eea0..000000000
--- a/domains/_github-pages-challenge-YesnielX.yesnielx.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Portfolio Website",
- "repo": "https://github.com/YesnielX/yesnielx.github.io",
- "owner": {
- "username": "YesnielX",
- "discord": "yesnielx"
- },
- "record": {
- "TXT": ["7b437ce587783bab1a17084b82cca0"]
- }
-}
diff --git a/domains/_github-pages-challenge-YouFoundAlpha.alpha.json b/domains/_github-pages-challenge-YouFoundAlpha.alpha.json
deleted file mode 100644
index a50cceb99..000000000
--- a/domains/_github-pages-challenge-YouFoundAlpha.alpha.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
- },
- "record": {
- "TXT": "123b9197abda60197a8afa64af5cf0"
- }
-}
diff --git a/domains/_github-pages-challenge-Abaan5467.abaan.json b/domains/_github-pages-challenge-abaan5467.abaan.json
similarity index 100%
rename from domains/_github-pages-challenge-Abaan5467.abaan.json
rename to domains/_github-pages-challenge-abaan5467.abaan.json
diff --git a/domains/_github-pages-challenge-Adolar0042.adolar0042.json b/domains/_github-pages-challenge-adolar0042.adolar0042.json
similarity index 100%
rename from domains/_github-pages-challenge-Adolar0042.adolar0042.json
rename to domains/_github-pages-challenge-adolar0042.adolar0042.json
diff --git a/domains/_github-pages-challenge-akk1to.json b/domains/_github-pages-challenge-akk1to.json
new file mode 100644
index 000000000..ccde44cd8
--- /dev/null
+++ b/domains/_github-pages-challenge-akk1to.json
@@ -0,0 +1,12 @@
+{
+ "description": "This website is my personal portfollo XD (let it on rq)",
+ "repo": "https://github.com/akk1to/akk1to.github.io",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "TXT": ["b7205350c0f56235a5eebee2fd1993"]
+ }
+}
diff --git a/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json b/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json
deleted file mode 100644
index fad4aa9f3..000000000
--- a/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "anamolsapkota",
- "email": "anamolsapkota@gmail.com"
- },
- "record": {
- "TXT": "d89d65454e6f71641cc8e45a2ad8b2"
- }
-}
diff --git a/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json b/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json
new file mode 100644
index 000000000..aef4a9302
--- /dev/null
+++ b/domains/_github-pages-challenge-anirbaaaan183.anirbaaaan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anirbaaaan183",
+ "email": "anirbanrc@proton.me"
+ },
+ "record": {
+ "TXT": "5f8c296170c0f2cd8aa1089b065900"
+ }
+}
diff --git a/domains/_github-pages-challenge-anshbhimani.anshbhimani.json b/domains/_github-pages-challenge-anshbhimani.anshbhimani.json
deleted file mode 100644
index 405a10c0e..000000000
--- a/domains/_github-pages-challenge-anshbhimani.anshbhimani.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "anshbhimani",
- "email": "ansh.bhimani@outlook.com"
- },
- "record": {
- "TXT": "36d0b9db7565094d11ea8fdb539e1dg"
- }
-}
diff --git a/domains/_github-pages-challenge-Arch881010.arch.json b/domains/_github-pages-challenge-arch881010.arch.json
similarity index 100%
rename from domains/_github-pages-challenge-Arch881010.arch.json
rename to domains/_github-pages-challenge-arch881010.arch.json
diff --git a/domains/_github-pages-challenge-aruntechpro.aruntechpro.json b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json
new file mode 100644
index 000000000..e5a97f5a3
--- /dev/null
+++ b/domains/_github-pages-challenge-aruntechpro.aruntechpro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aruntechpro",
+ "email": "arunkumarakr03@gmail.com"
+ },
+ "record": {
+ "TXT": "8583e778337112b720ebf6e1ec46a5"
+ }
+ }
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-avellea.avellea.json b/domains/_github-pages-challenge-avellea.avellea.json
index c2039ae7f..4a0684fd4 100644
--- a/domains/_github-pages-challenge-avellea.avellea.json
+++ b/domains/_github-pages-challenge-avellea.avellea.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "avellea",
- "email": ""
+ "username": "avellea"
},
"record": {
"TXT": "5c38dbee73e6936232992c0f98829e"
diff --git a/domains/_github-pages-challenge-Bikoil.biko.json b/domains/_github-pages-challenge-bikoil.biko.json
similarity index 100%
rename from domains/_github-pages-challenge-Bikoil.biko.json
rename to domains/_github-pages-challenge-bikoil.biko.json
diff --git a/domains/_github-pages-challenge-Bimarsha69.bimarsha.json b/domains/_github-pages-challenge-bimarsha69.bimarsha.json
similarity index 100%
rename from domains/_github-pages-challenge-Bimarsha69.bimarsha.json
rename to domains/_github-pages-challenge-bimarsha69.bimarsha.json
diff --git a/domains/_github-pages-challenge-winter7eaf.catrin.json b/domains/_github-pages-challenge-catrinlam.catrin.json
similarity index 80%
rename from domains/_github-pages-challenge-winter7eaf.catrin.json
rename to domains/_github-pages-challenge-catrinlam.catrin.json
index ea0751cc0..b11bf2275 100644
--- a/domains/_github-pages-challenge-winter7eaf.catrin.json
+++ b/domains/_github-pages-challenge-catrinlam.catrin.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "winter7eaf",
+ "username": "catrinlam",
"discord": "614054830360494100"
},
"record": {
diff --git a/domains/_github-pages-challenge-chadeeeee.chadee.json b/domains/_github-pages-challenge-chadeeeee.chadee.json
index ff922c3e2..5f66a6ca0 100644
--- a/domains/_github-pages-challenge-chadeeeee.chadee.json
+++ b/domains/_github-pages-challenge-chadeeeee.chadee.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/chadeeeee/chadee-site",
"owner": {
"username": "chadeeeee",
- "telegram": "@chadeeeeeeeeee",
+ "telegram": "chadeeeeeeeeee",
"email": "esurginet2011@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-charmingdisorder.alexey.json b/domains/_github-pages-challenge-charmingdisorder.alexey.json
index f60e638af..0733d85c2 100644
--- a/domains/_github-pages-challenge-charmingdisorder.alexey.json
+++ b/domains/_github-pages-challenge-charmingdisorder.alexey.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "charmingdisorder",
- "email": "null"
+ "username": "charmingdisorder"
},
"record": {
"TXT": "8045a0394db9ecae4e8f4a76f5c17c"
diff --git a/domains/_github-pages-challenge-Codemaine.maine.json b/domains/_github-pages-challenge-codemaine.maine.json
similarity index 100%
rename from domains/_github-pages-challenge-Codemaine.maine.json
rename to domains/_github-pages-challenge-codemaine.maine.json
diff --git a/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json b/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json
deleted file mode 100644
index 388b4dfbe..000000000
--- a/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Crazy-Max-Blog",
- "email": "Crazy-Max-2011@yandex.ru"
- },
- "record": {
- "TXT": "bf0161fd315024bd5069ccb7f38cdc"
- }
-}
diff --git a/domains/_github-pages-challenge-Crazy-Max-Blog.rpi.crazymax.json b/domains/_github-pages-challenge-crazy-max-blog.rpi.crazymax.json
similarity index 100%
rename from domains/_github-pages-challenge-Crazy-Max-Blog.rpi.crazymax.json
rename to domains/_github-pages-challenge-crazy-max-blog.rpi.crazymax.json
diff --git a/domains/_github-pages-challenge-cupglassDEV.cupglass.json b/domains/_github-pages-challenge-cupglassDEV.cupglass.json
deleted file mode 100644
index ae1b40d30..000000000
--- a/domains/_github-pages-challenge-cupglassDEV.cupglass.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "My base website. Very epik tbh 💥💥",
- "repo": "https://github.com/cupglassdev/cupglassdev.github.io",
- "owner": {
- "username": "cupglassdev",
- "twitter": "https://x.com/cupglassdev",
- "lahelu": "https://lahelu.com/user/cupglassdev",
- "discord": "cupglassdev"
- },
- "record": {
- "TXT": ["8512bd6443e9d125eb9223d57c1a40"]
- }
-}
diff --git a/domains/_github-pages-challenge-CuteDog5695.cutedog5695.json b/domains/_github-pages-challenge-cutedog5695.cutedog5695.json
similarity index 100%
rename from domains/_github-pages-challenge-CuteDog5695.cutedog5695.json
rename to domains/_github-pages-challenge-cutedog5695.cutedog5695.json
diff --git a/domains/_github-pages-challenge-D-Pow.devon.json b/domains/_github-pages-challenge-d-pow.devon.json
similarity index 100%
rename from domains/_github-pages-challenge-D-Pow.devon.json
rename to domains/_github-pages-challenge-d-pow.devon.json
diff --git a/domains/_github-pages-challenge-Daamin909.daamin.json b/domains/_github-pages-challenge-daamin909.daamin.json
similarity index 100%
rename from domains/_github-pages-challenge-Daamin909.daamin.json
rename to domains/_github-pages-challenge-daamin909.daamin.json
diff --git a/domains/_github-pages-challenge-danilofuchs.danilofuchs.json b/domains/_github-pages-challenge-danilofuchs.danilofuchs.json
deleted file mode 100644
index 7dcb7b90c..000000000
--- a/domains/_github-pages-challenge-danilofuchs.danilofuchs.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "danilofuchs",
- "email": "danilo_fuchs@hotmail.com"
- },
- "record": {
- "TXT": "09bee48261a7e91718432a7b51baaa"
- }
-}
diff --git a/domains/_github-pages-challenge-DebtlessFlea.debtlessflea.json b/domains/_github-pages-challenge-debtlessflea.debtlessflea.json
similarity index 100%
rename from domains/_github-pages-challenge-DebtlessFlea.debtlessflea.json
rename to domains/_github-pages-challenge-debtlessflea.debtlessflea.json
diff --git a/domains/_github-pages-challenge-Defective4.defective.json b/domains/_github-pages-challenge-defective4.defective.json
similarity index 100%
rename from domains/_github-pages-challenge-Defective4.defective.json
rename to domains/_github-pages-challenge-defective4.defective.json
diff --git a/domains/_github-pages-challenge-dev-420.dev-420.json b/domains/_github-pages-challenge-dev-420.dev-420.json
deleted file mode 100644
index a0512f44d..000000000
--- a/domains/_github-pages-challenge-dev-420.dev-420.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Dev-420",
- "email": "imakbss@gmail.com"
- },
- "record": {
- "TXT": "af648cf0502797580ddf061805dad3"
- }
-}
diff --git a/domains/_github-pages-challenge-Dev-Ajay-sahani.ajays.json b/domains/_github-pages-challenge-dev-ajay-sahani.ajays.json
similarity index 100%
rename from domains/_github-pages-challenge-Dev-Ajay-sahani.ajays.json
rename to domains/_github-pages-challenge-dev-ajay-sahani.ajays.json
diff --git a/domains/_github-pages-challenge-devendrakanojiya.devendrakanojiya.json b/domains/_github-pages-challenge-devendrakanojiya.devendrakanojiya.json
deleted file mode 100644
index bc273caf0..000000000
--- a/domains/_github-pages-challenge-devendrakanojiya.devendrakanojiya.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "devendrakanojiya",
- "email": "s_36100@bkbirlacollegekalyan.com"
- },
- "record": {
- "TXT": "37b9724a41bf8e23b2a352d65b7d19"
- }
-}
diff --git a/domains/_github-pages-challenge-DevHanza.hansana.json b/domains/_github-pages-challenge-devhanza.hansana.json
similarity index 100%
rename from domains/_github-pages-challenge-DevHanza.hansana.json
rename to domains/_github-pages-challenge-devhanza.hansana.json
diff --git a/domains/_github-pages-challenge-Diordnas.cassie.json b/domains/_github-pages-challenge-diordnas.cassie.json
similarity index 100%
rename from domains/_github-pages-challenge-Diordnas.cassie.json
rename to domains/_github-pages-challenge-diordnas.cassie.json
diff --git a/domains/_github-pages-challenge-Fluffythebunny.json b/domains/_github-pages-challenge-fluffythebunny.json
similarity index 100%
rename from domains/_github-pages-challenge-Fluffythebunny.json
rename to domains/_github-pages-challenge-fluffythebunny.json
diff --git a/domains/_github-pages-challenge-formunagit.formuna.json b/domains/_github-pages-challenge-formunagit.formuna.json
new file mode 100644
index 000000000..348d2f8de
--- /dev/null
+++ b/domains/_github-pages-challenge-formunagit.formuna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FormunaGit",
+ "discord": "formuna"
+ },
+ "record": {
+ "TXT": ["f1190641c5391341d1097c3a2a8160"]
+ }
+}
diff --git a/domains/_github-pages-challenge-FoxsDenYT.foxsden.json b/domains/_github-pages-challenge-foxsdenyt.foxsden.json
similarity index 100%
rename from domains/_github-pages-challenge-FoxsDenYT.foxsden.json
rename to domains/_github-pages-challenge-foxsdenyt.foxsden.json
diff --git a/domains/_github-pages-challenge-habeel06.habeel.json b/domains/_github-pages-challenge-habeel06.habeel.json
index df7d357b9..8e7a9ce2e 100644
--- a/domains/_github-pages-challenge-habeel06.habeel.json
+++ b/domains/_github-pages-challenge-habeel06.habeel.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "habeel06",
- "email": ""
+ "username": "habeel06"
},
"record": {
"TXT": "6bbac3351ea3d8ad90603e1318c7ff"
diff --git a/domains/_github-pages-challenge-HarshNarayanJha.harshnj.json b/domains/_github-pages-challenge-harshnarayanjha.harshnj.json
similarity index 100%
rename from domains/_github-pages-challenge-HarshNarayanJha.harshnj.json
rename to domains/_github-pages-challenge-harshnarayanjha.harshnj.json
diff --git a/domains/_github-pages-challenge-heyshaquib.heyshaquib.json b/domains/_github-pages-challenge-heyshaquib.heyshaquib.json
deleted file mode 100644
index a2dbe89ac..000000000
--- a/domains/_github-pages-challenge-heyshaquib.heyshaquib.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "heyshaquib",
- "email": "heyshaquib@proton.me"
- },
- "record": {
- "TXT": "cd081244e0ad3700962e9d4280285a"
- }
-}
diff --git a/domains/_github-pages-challenge-Hima-Pro.tdim.json b/domains/_github-pages-challenge-hima-pro.tdim.json
similarity index 100%
rename from domains/_github-pages-challenge-Hima-Pro.tdim.json
rename to domains/_github-pages-challenge-hima-pro.tdim.json
diff --git a/domains/_github-pages-challenge-himangshu147-git.himangshu147.json b/domains/_github-pages-challenge-himangshu147-git.himangshu147.json
deleted file mode 100644
index 587f472e7..000000000
--- a/domains/_github-pages-challenge-himangshu147-git.himangshu147.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "himangshu147-git",
- "email": "saikiahimangshu1256@gmail.com",
- "discord": "775660503342776341"
- },
- "record": {
- "TXT": "2679f35b2c0a88253be04cc1230ee2"
- }
-}
diff --git a/domains/_github-pages-challenge-i-Jer.jer.json b/domains/_github-pages-challenge-i-jer.jer.json
similarity index 100%
rename from domains/_github-pages-challenge-i-Jer.jer.json
rename to domains/_github-pages-challenge-i-jer.jer.json
diff --git a/domains/_github-pages-challenge-ImShyMike.shymike.json b/domains/_github-pages-challenge-imshymike.shymike.json
similarity index 100%
rename from domains/_github-pages-challenge-ImShyMike.shymike.json
rename to domains/_github-pages-challenge-imshymike.shymike.json
diff --git a/domains/_github-pages-challenge-jakethebest1238.jakehe.json b/domains/_github-pages-challenge-jakethebest1238.jakehe.json
index 0f4c0ea5c..bb10367b2 100644
--- a/domains/_github-pages-challenge-jakethebest1238.jakehe.json
+++ b/domains/_github-pages-challenge-jakethebest1238.jakehe.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "jakethebest1238",
+ "username": "jakehe1226",
"email": "jakehe1226@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-joythejoystick1.glqch.json b/domains/_github-pages-challenge-joythejoystick1.glqch.json
deleted file mode 100644
index 229a87d5f..000000000
--- a/domains/_github-pages-challenge-joythejoystick1.glqch.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "joythejoystick1",
- "email": "midoayoub778@gmail.com"
- },
- "record": {
- "TXT": "eb682c2a35bd6139b653df86f7d248"
- }
-}
diff --git a/domains/_github-pages-challenge-JustStudio7.j.json b/domains/_github-pages-challenge-juststudio7.j.json
similarity index 100%
rename from domains/_github-pages-challenge-JustStudio7.j.json
rename to domains/_github-pages-challenge-juststudio7.j.json
diff --git a/domains/_github-pages-challenge-JustStudio7.juststudio.json b/domains/_github-pages-challenge-juststudio7.juststudio.json
similarity index 100%
rename from domains/_github-pages-challenge-JustStudio7.juststudio.json
rename to domains/_github-pages-challenge-juststudio7.juststudio.json
diff --git a/domains/_github-pages-challenge-JVDesignBavaria.jvdesign.json b/domains/_github-pages-challenge-jvdesignbavaria.jvdesign.json
similarity index 100%
rename from domains/_github-pages-challenge-JVDesignBavaria.jvdesign.json
rename to domains/_github-pages-challenge-jvdesignbavaria.jvdesign.json
diff --git a/domains/_github-pages-challenge-jy1263.ayanamy.json b/domains/_github-pages-challenge-jy1263.ayanamy.json
deleted file mode 100644
index 592384e15..000000000
--- a/domains/_github-pages-challenge-jy1263.ayanamy.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "AyanAmy's About Page - Verification",
- "repo": "https://github.com/jy1263/jy1263.github.io",
- "owner": {
- "username": "jy1263",
- "twitter": "jy126orjy126"
- },
- "record": {
- "TXT": "250303a2dde21ac34ad10792da01fa"
- }
-}
diff --git a/domains/_github-pages-challenge-k22rma.k22rma.json b/domains/_github-pages-challenge-k22rma.k22rma.json
deleted file mode 100644
index b0b3db76c..000000000
--- a/domains/_github-pages-challenge-k22rma.k22rma.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "k22rma",
- "email": "krrishsharma.ks12345@gmail.com"
- },
- "record": {
- "TXT": "c4d4e7c7ad03a88fd89ea4f1beb994"
- }
-}
diff --git a/domains/_github-pages-challenge-kingsmen732.mithilesh.json b/domains/_github-pages-challenge-kingsmen732.mithilesh.json
deleted file mode 100644
index 3604cc9a5..000000000
--- a/domains/_github-pages-challenge-kingsmen732.mithilesh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal site to showcase my future works.",
- "repo": "https://github.com/kingsmen732/nextgen-Resume-OTA",
- "owner": {
- "username": "kingsmen732",
- "email": "kingsmen732@gmail.com"
- },
- "record": {
- "TXT": "796acaf6e18fb8e734811097f93a0a"
- }
-}
diff --git a/domains/_github-pages-challenge-LevaniVashadze.levani.json b/domains/_github-pages-challenge-levanivashadze.levani.json
similarity index 100%
rename from domains/_github-pages-challenge-LevaniVashadze.levani.json
rename to domains/_github-pages-challenge-levanivashadze.levani.json
diff --git a/domains/_github-pages-challenge-LIGMATV.ligmatv.json b/domains/_github-pages-challenge-ligmatv.ligmatv.json
similarity index 100%
rename from domains/_github-pages-challenge-LIGMATV.ligmatv.json
rename to domains/_github-pages-challenge-ligmatv.ligmatv.json
diff --git a/domains/_github-pages-challenge-likalium.likalium.json b/domains/_github-pages-challenge-likalium.likalium.json
deleted file mode 100644
index 0a9154f62..000000000
--- a/domains/_github-pages-challenge-likalium.likalium.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "likalium",
- "discord": "likalium"
- },
- "record": {
- "TXT": "57407626f3a1e351e728a974c6d5af"
- }
-}
diff --git a/domains/_github-pages-challenge-LowkeyGUY4444.akshya.json b/domains/_github-pages-challenge-lowkeyguy4444.akshya.json
similarity index 100%
rename from domains/_github-pages-challenge-LowkeyGUY4444.akshya.json
rename to domains/_github-pages-challenge-lowkeyguy4444.akshya.json
diff --git a/domains/_github-pages-challenge-mackrz.mackrz.json b/domains/_github-pages-challenge-mackrz.mackrz.json
deleted file mode 100644
index 558858b2d..000000000
--- a/domains/_github-pages-challenge-mackrz.mackrz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "GitHub Pages verification for mackrz.is-a.dev",
- "owner": {
- "username": "mackrz",
- "email": "macio181@gmail.com"
- },
- "record": {
- "TXT": "5a7205dd21c68bf953f930899845d9"
- }
-}
diff --git a/domains/_github-pages-challenge-MadisonWirtanen.zwyz.json b/domains/_github-pages-challenge-madisonwirtanen.zwyz.json
similarity index 100%
rename from domains/_github-pages-challenge-MadisonWirtanen.zwyz.json
rename to domains/_github-pages-challenge-madisonwirtanen.zwyz.json
diff --git a/domains/_github-pages-challenge-Mrdev88.mahdiruiz.json b/domains/_github-pages-challenge-mrdev88.mahdiruiz.json
similarity index 100%
rename from domains/_github-pages-challenge-Mrdev88.mahdiruiz.json
rename to domains/_github-pages-challenge-mrdev88.mahdiruiz.json
diff --git a/domains/_github-pages-challenge-mrinjamul.mrinjamul.json b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json
new file mode 100644
index 000000000..e233c0633
--- /dev/null
+++ b/domains/_github-pages-challenge-mrinjamul.mrinjamul.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Website",
+ "owner": {
+ "username": "mrinjamul",
+ "email": "injamulmohammadmollah@gmail.com"
+ },
+ "record": {
+ "TXT": "f89efe65af996d174d8f254c511bf3"
+ }
+}
diff --git a/domains/_github-pages-challenge-MukuJhansi.gunman.json b/domains/_github-pages-challenge-mukujhansi.gunman.json
similarity index 100%
rename from domains/_github-pages-challenge-MukuJhansi.gunman.json
rename to domains/_github-pages-challenge-mukujhansi.gunman.json
diff --git a/domains/_github-pages-challenge-Myrdincx.myrdin.json b/domains/_github-pages-challenge-myrdincx.myrdin.json
similarity index 100%
rename from domains/_github-pages-challenge-Myrdincx.myrdin.json
rename to domains/_github-pages-challenge-myrdincx.myrdin.json
diff --git a/domains/_github-pages-challenge-nameisminh.ming.json b/domains/_github-pages-challenge-nameisminh.ming.json
deleted file mode 100644
index d527e49ce..000000000
--- a/domains/_github-pages-challenge-nameisminh.ming.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "nameisminh",
- "email": "buicongminh081104@gmail.com"
- },
- "record": {
- "TXT": "124480cad3fd4ed9b6cf85747562f6"
- }
-}
diff --git a/domains/_github-pages-challenge-NamesMT.namesmt.json b/domains/_github-pages-challenge-namesmt.namesmt.json
similarity index 100%
rename from domains/_github-pages-challenge-NamesMT.namesmt.json
rename to domains/_github-pages-challenge-namesmt.namesmt.json
diff --git a/domains/_github-pages-challenge-nCenti.centi.json b/domains/_github-pages-challenge-ncenti.centi.json
similarity index 100%
rename from domains/_github-pages-challenge-nCenti.centi.json
rename to domains/_github-pages-challenge-ncenti.centi.json
diff --git a/domains/_github-pages-challenge-Nekitori17.nekitori17.json b/domains/_github-pages-challenge-nekitori17.nekitori17.json
similarity index 100%
rename from domains/_github-pages-challenge-Nekitori17.nekitori17.json
rename to domains/_github-pages-challenge-nekitori17.nekitori17.json
diff --git a/domains/_github-pages-challenge-night0721.night.json b/domains/_github-pages-challenge-night0721.night.json
deleted file mode 100644
index cb6960f96..000000000
--- a/domains/_github-pages-challenge-night0721.night.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal portfolio for showing my projects, contacts and about me",
- "repo": "https://github.com/night0721/night0721.github.io",
- "owner": {
- "username": "night0721",
- "email": "nightkalyyy@gmail.com"
- },
- "record": {
- "TXT": "e87fbe224df0c16bf8e0796e229952"
- }
-}
diff --git a/domains/_github-pages-challenge-node0505.node.json b/domains/_github-pages-challenge-node0505.node.json
deleted file mode 100644
index d50fdd21c..000000000
--- a/domains/_github-pages-challenge-node0505.node.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "node0505",
- "email": "node0505@outlook.com"
- },
- "record": {
- "TXT": "18bf4da227454aaee1c8e2ba62d466"
- }
-}
diff --git a/domains/_github-pages-challenge-Noma4321.noma.json b/domains/_github-pages-challenge-noma4321.noma.json
similarity index 100%
rename from domains/_github-pages-challenge-Noma4321.noma.json
rename to domains/_github-pages-challenge-noma4321.noma.json
diff --git a/domains/_github-pages-challenge-p3nguin-kun.p3nguin.json b/domains/_github-pages-challenge-p3nguin-kun.p3nguin.json
deleted file mode 100644
index 0a0536331..000000000
--- a/domains/_github-pages-challenge-p3nguin-kun.p3nguin.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "p3nguin-kun",
- "email": "p3nguinkun@proton.me"
- },
- "record": {
- "TXT": "5c46702c7db5dc72a476dec9da3d34"
- }
-}
diff --git a/domains/_github-pages-challenge-PokedWasTaken.poked.json b/domains/_github-pages-challenge-pokedwastaken.poked.json
similarity index 100%
rename from domains/_github-pages-challenge-PokedWasTaken.poked.json
rename to domains/_github-pages-challenge-pokedwastaken.poked.json
diff --git a/domains/_github-pages-challenge-potato0706.potatochips0706.json b/domains/_github-pages-challenge-potato0706.potatochips0706.json
deleted file mode 100644
index 4fcacc74d..000000000
--- a/domains/_github-pages-challenge-potato0706.potatochips0706.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "potato0706",
- "email": "potatochips0706@gmail.com"
- },
- "record": {
- "TXT": "5b91b8e422a44c261ea94f0cd21d21"
- }
-}
diff --git a/domains/_github-pages-challenge-privacysecured.ps.json b/domains/_github-pages-challenge-privacysecured.ps.json
new file mode 100644
index 000000000..1763ace11
--- /dev/null
+++ b/domains/_github-pages-challenge-privacysecured.ps.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PrivacySecured",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ",
+ "notes": "I rarely go on my emails. If I do its because I needed a verification code."
+ },
+ "record": {
+ "TXT": "620bc13d511697c02f9ca4f41179ea"
+ }
+}
diff --git a/domains/_github-pages-challenge-quackduck.ishan.json b/domains/_github-pages-challenge-quackduck.ishan.json
deleted file mode 100644
index c2c9c3831..000000000
--- a/domains/_github-pages-challenge-quackduck.ishan.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "quackduck",
- "email": "igoel.mail@gmail.com"
- },
- "record": {
- "TXT": "14ec35f5a4a8dc217d642452be6b35"
- }
-}
diff --git a/domains/_github-pages-challenge-Riihime.riihime.json b/domains/_github-pages-challenge-riihime.riihime.json
similarity index 100%
rename from domains/_github-pages-challenge-Riihime.riihime.json
rename to domains/_github-pages-challenge-riihime.riihime.json
diff --git a/domains/_github-pages-challenge-RomzyyTV.romzyytv.json b/domains/_github-pages-challenge-romzyytv.romzyytv.json
similarity index 100%
rename from domains/_github-pages-challenge-RomzyyTV.romzyytv.json
rename to domains/_github-pages-challenge-romzyytv.romzyytv.json
diff --git a/domains/_github-pages-challenge-Rouf0x.json b/domains/_github-pages-challenge-rouf0x.json
similarity index 100%
rename from domains/_github-pages-challenge-Rouf0x.json
rename to domains/_github-pages-challenge-rouf0x.json
diff --git a/domains/_github-pages-challenge-ryznxx.ryznxx.json b/domains/_github-pages-challenge-ryznxx.ryznxx.json
deleted file mode 100644
index 788e192ec..000000000
--- a/domains/_github-pages-challenge-ryznxx.ryznxx.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "To Get Great domain for developers get new dns",
- "owner": {
- "username": "ryznxx",
- "email": "7ryznxx@gmail.com"
- },
- "record": {
- "TXT": "929fe6044a0a6c6e6d32410d33ceb1"
- }
-}
diff --git a/domains/_github-pages-challenge-s3mant.semant.json b/domains/_github-pages-challenge-s3mant.semant.json
index d3b3b1a2f..63eee66bc 100644
--- a/domains/_github-pages-challenge-s3mant.semant.json
+++ b/domains/_github-pages-challenge-s3mant.semant.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "S3mant",
+ "username": "ihacksemant",
"email": "contact@semant.is-a.dev"
},
"record": {
diff --git a/domains/_github-pages-challenge-ScytheMediaTheDev.scythemedia.json b/domains/_github-pages-challenge-scythemediathedev.scythemedia.json
similarity index 100%
rename from domains/_github-pages-challenge-ScytheMediaTheDev.scythemedia.json
rename to domains/_github-pages-challenge-scythemediathedev.scythemedia.json
diff --git a/domains/_github-pages-challenge-Shaunfurtado.blog.shaunfurtado.json b/domains/_github-pages-challenge-shaunfurtado.blog.shaunfurtado.json
similarity index 100%
rename from domains/_github-pages-challenge-Shaunfurtado.blog.shaunfurtado.json
rename to domains/_github-pages-challenge-shaunfurtado.blog.shaunfurtado.json
diff --git a/domains/_github-pages-challenge-Sife-shuo.sife.json b/domains/_github-pages-challenge-sife-shuo.sife.json
similarity index 100%
rename from domains/_github-pages-challenge-Sife-shuo.sife.json
rename to domains/_github-pages-challenge-sife-shuo.sife.json
diff --git a/domains/_github-pages-challenge-SkyExploreWasTaken.sewt.json b/domains/_github-pages-challenge-skyexplorewastaken.sewt.json
similarity index 100%
rename from domains/_github-pages-challenge-SkyExploreWasTaken.sewt.json
rename to domains/_github-pages-challenge-skyexplorewastaken.sewt.json
diff --git a/domains/_github-pages-challenge-Socketlike.evie.json b/domains/_github-pages-challenge-socketlike.evie.json
similarity index 76%
rename from domains/_github-pages-challenge-Socketlike.evie.json
rename to domains/_github-pages-challenge-socketlike.evie.json
index 7ab6df371..08df47490 100644
--- a/domains/_github-pages-challenge-Socketlike.evie.json
+++ b/domains/_github-pages-challenge-socketlike.evie.json
@@ -2,8 +2,7 @@
"owner": {
"username": "Socketlike",
"discordId": "285329659023851520",
- "discord": "encyclopedic",
- "email": ""
+ "discord": "encyclopedic"
},
"record": {
"TXT": "351773beb3717122300722aeb5d1ac"
diff --git a/domains/_github-pages-challenge-Stacksyz.stacksyz.json b/domains/_github-pages-challenge-stacksyz.stacksyz.json
similarity index 100%
rename from domains/_github-pages-challenge-Stacksyz.stacksyz.json
rename to domains/_github-pages-challenge-stacksyz.stacksyz.json
diff --git a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json
index d3083706f..89efda2a5 100644
--- a/domains/_github-pages-challenge-sxurabh.saurabhkirve.json
+++ b/domains/_github-pages-challenge-sxurabh.saurabhkirve.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "berzcode",
+ "username": "sxurabh",
"email": "saurabhkirve@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-Th3-C0der.th3.json b/domains/_github-pages-challenge-th3-c0der.th3.json
similarity index 100%
rename from domains/_github-pages-challenge-Th3-C0der.th3.json
rename to domains/_github-pages-challenge-th3-c0der.th3.json
diff --git a/domains/_github-pages-challenge-TheOldZoom.zoom.json b/domains/_github-pages-challenge-theoldzoom.zoom.json
similarity index 100%
rename from domains/_github-pages-challenge-TheOldZoom.zoom.json
rename to domains/_github-pages-challenge-theoldzoom.zoom.json
diff --git a/domains/_github-pages-challenge-TheWongLife.thewonglife.json b/domains/_github-pages-challenge-thewonglife.thewonglife.json
similarity index 100%
rename from domains/_github-pages-challenge-TheWongLife.thewonglife.json
rename to domains/_github-pages-challenge-thewonglife.thewonglife.json
diff --git a/domains/_github-pages-challenge-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json
index 574e58e2d..c5e01ce24 100644
--- a/domains/_github-pages-challenge-turquoisetnt.tnt.json
+++ b/domains/_github-pages-challenge-turquoisetnt.tnt.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "TurquoiseTNT",
+ "username": "SebTNT",
"email": "turquoisetntmultimedia@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-UtilsForTheWeb.utils.json b/domains/_github-pages-challenge-utilsfortheweb.utils.json
similarity index 100%
rename from domains/_github-pages-challenge-UtilsForTheWeb.utils.json
rename to domains/_github-pages-challenge-utilsfortheweb.utils.json
diff --git a/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json b/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json
deleted file mode 100644
index e26154faa..000000000
--- a/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "VasilisMylonas",
- "email": "vasilismylonas@protonmail.com"
- },
- "record": {
- "TXT": "2d79d108f14d2a9587952c4682b285"
- }
-}
diff --git a/domains/_github-pages-challenge-vikramisdev.vikramisdev.json b/domains/_github-pages-challenge-vikramisdev.vikramisdev.json
deleted file mode 100644
index ef1fbb273..000000000
--- a/domains/_github-pages-challenge-vikramisdev.vikramisdev.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "vikramisdev",
- "email": "vs423502@gmail.com"
- },
- "record": {
- "TXT": "14810aa9ee3adf44431d8a64abc84a"
- }
-}
diff --git a/domains/_github-pages-challenge-vikramv20.vikramv20.json b/domains/_github-pages-challenge-vikramv20.vikramv20.json
deleted file mode 100644
index 37940f9a1..000000000
--- a/domains/_github-pages-challenge-vikramv20.vikramv20.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "vikramv20",
- "email": "vs423502@gmail.com"
- },
- "record": {
- "TXT": "14810aa9ee3adf44431d8a64abc84a"
- }
-}
diff --git a/domains/_github-pages-challenge-vurihuang.vuri.json b/domains/_github-pages-challenge-vurihuang.vuri.json
new file mode 100644
index 000000000..06ab3fb80
--- /dev/null
+++ b/domains/_github-pages-challenge-vurihuang.vuri.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "vurihuang",
+ "email": "vengeancehuang@gmail.com"
+ },
+ "record": {
+ "TXT": ["2447215d9fcea09574fc1831f99c8d"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-vurihuang.vurihuang.json b/domains/_github-pages-challenge-vurihuang.vurihuang.json
new file mode 100644
index 000000000..ec6d49879
--- /dev/null
+++ b/domains/_github-pages-challenge-vurihuang.vurihuang.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "vurihuang",
+ "email": "vengeancehuang@gmail.com"
+ },
+ "record": {
+ "TXT": ["8ba2660c4c9bb5915177df7123d158"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-wizcann.wizcann.json b/domains/_github-pages-challenge-wizcann.wizcann.json
new file mode 100644
index 000000000..f95b28284
--- /dev/null
+++ b/domains/_github-pages-challenge-wizcann.wizcann.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "wizcann"
+ },
+ "record": {
+ "TXT": ["76bdb40edcf54ac449921a71e3e388"]
+ }
+}
diff --git a/domains/_github-pages-challenge-xKhronoz.xkhronoz.json b/domains/_github-pages-challenge-xkhronoz.xkhronoz.json
similarity index 100%
rename from domains/_github-pages-challenge-xKhronoz.xkhronoz.json
rename to domains/_github-pages-challenge-xkhronoz.xkhronoz.json
diff --git a/domains/_github-pages-challenge-YantCaccia.antonio.json b/domains/_github-pages-challenge-yantcaccia.antonio.json
similarity index 100%
rename from domains/_github-pages-challenge-YantCaccia.antonio.json
rename to domains/_github-pages-challenge-yantcaccia.antonio.json
diff --git a/domains/_github-pages-challenge-youfoundalpha.alpha.json b/domains/_github-pages-challenge-youfoundalpha.alpha.json
new file mode 100644
index 000000000..b2d81c0f0
--- /dev/null
+++ b/domains/_github-pages-challenge-youfoundalpha.alpha.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
+ },
+ "record": {
+ "TXT": "123b9197abda60197a8afa64af5cf0"
+ }
+}
diff --git a/domains/_github-pages-challenge-yourtilak.tilak.json b/domains/_github-pages-challenge-yourtilak.tilak.json
index dc261fc78..516682e02 100644
--- a/domains/_github-pages-challenge-yourtilak.tilak.json
+++ b/domains/_github-pages-challenge-yourtilak.tilak.json
@@ -1,5 +1,4 @@
{
- "description": "YourTilak.is-a.dev",
"repo": "https://github.com/YourTilak/YourTilak.github.io",
"owner": {
"username": "YourTilak",
diff --git a/domains/_github-pages-challenge-YummyOreo.oreo.json b/domains/_github-pages-challenge-yummyoreo.oreo.json
similarity index 100%
rename from domains/_github-pages-challenge-YummyOreo.oreo.json
rename to domains/_github-pages-challenge-yummyoreo.oreo.json
diff --git a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json b/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json
index c83ca33fd..73f4376f4 100644
--- a/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json
+++ b/domains/_github-pages-challenge-yunexiz.1-train-ride-in-germany-is-300-euros.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "Yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"TXT": "a39a9e9549128753e8f6757a37d2c2"
diff --git a/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json b/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json
index 00925115e..5e584ec99 100644
--- a/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json
+++ b/domains/_github-pages-challenge-yunexiz.ai-y.yunexiz.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"TXT": "44acf50d05a09c5bdcb82f64551e6c"
diff --git a/domains/_github-pages-challenge-yunexiz.cat.json b/domains/_github-pages-challenge-yunexiz.cat.json
index 9307de465..7ea3239fb 100644
--- a/domains/_github-pages-challenge-yunexiz.cat.json
+++ b/domains/_github-pages-challenge-yunexiz.cat.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"TXT": "7b0048087227dc98eb47a46c9f1b43"
diff --git a/domains/_github-pages-challenge-yunexiz.dog.json b/domains/_github-pages-challenge-yunexiz.dog.json
index 253d7ddd7..7df7f6da2 100644
--- a/domains/_github-pages-challenge-yunexiz.dog.json
+++ b/domains/_github-pages-challenge-yunexiz.dog.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"TXT": "5fa47df0612540ae6e92989a4007e9"
diff --git a/domains/_github-pages-challenge-yunexiz.y.json b/domains/_github-pages-challenge-yunexiz.y.json
index 722be64ed..bb4ea0393 100644
--- a/domains/_github-pages-challenge-yunexiz.y.json
+++ b/domains/_github-pages-challenge-yunexiz.y.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"TXT": "e510e7d345184525230751fbbf1e5b"
diff --git a/domains/_github-pages-challenge-yunexiz.yunexiz.json b/domains/_github-pages-challenge-yunexiz.yunexiz.json
index 728da5bf9..8c32f4beb 100644
--- a/domains/_github-pages-challenge-yunexiz.yunexiz.json
+++ b/domains/_github-pages-challenge-yunexiz.yunexiz.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "Yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"TXT": ["273b8f26fd1aacf2cd47be00178179"]
diff --git a/domains/_github-pages-challenge-yz9551.yxz.json b/domains/_github-pages-challenge-yz9551.yxz.json
new file mode 100644
index 000000000..3e6b82cd8
--- /dev/null
+++ b/domains/_github-pages-challenge-yz9551.yxz.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "yz9551",
+ "email": "",
+ "discord": "yz9551"
+ },
+ "record": {
+ "TXT": [
+ "1b83953af6bc9eb40dc5ccfb434238"
+ ]
+ }
+}
diff --git a/domains/_minecraft._tcp.mc.3gee.json b/domains/_minecraft._tcp.mc.3gee.json
new file mode 100644
index 000000000..bafac6205
--- /dev/null
+++ b/domains/_minecraft._tcp.mc.3gee.json
@@ -0,0 +1,21 @@
+{
+
+ "owner": {
+
+ "username": "3geETR",
+
+ "email": "egemacun@gmail.com"
+
+ },
+
+ "record": {
+ "SRV": [
+ {
+ "priority": 0,
+ "weight": 5,
+ "port": 32279,
+ "target": "gold.magmanode.com"
+ }
+ ]
+ }
+}
diff --git a/domains/_vercel.aeyika.json b/domains/_vercel.aeyika.json
new file mode 100644
index 000000000..93f019f86
--- /dev/null
+++ b/domains/_vercel.aeyika.json
@@ -0,0 +1,12 @@
+{
+ "description": "Domain for my portfolio website",
+ "owner": {
+ "username": "aeyika",
+ "email": "aeyikastech@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=aeyika.is-a.dev,84418c102cd22e0a172c"
+ ]
+ }
+}
diff --git a/domains/_vercel.alvin.json b/domains/_vercel.alvin.json
index 5945bbeb5..3ac30aa3a 100644
--- a/domains/_vercel.alvin.json
+++ b/domains/_vercel.alvin.json
@@ -7,7 +7,9 @@
"TXT": [
"vc-domain-verify=www.alvin.is-a.dev,8cfb8dfac816eacccf2d",
"vc-domain-verify=hive.alvin.is-a.dev,c60034f22ad745c15021",
- "vc-domain-verify=www.hive.alvin.is-a.dev,682186731d1f9275c277"
+ "vc-domain-verify=www.hive.alvin.is-a.dev,682186731d1f9275c277",
+ "vc-domain-verify=chat.alvin.is-a.dev,520a1452a367459dd568",
+ "vc-domain-verify=www.chat.alvin.is-a.dev,df452600790ef98fd42e"
]
}
}
diff --git a/domains/_vercel.alvindennis.json b/domains/_vercel.alvindennis.json
new file mode 100644
index 000000000..fb39676e5
--- /dev/null
+++ b/domains/_vercel.alvindennis.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "alvin-dennis",
+ "discord": "alvindennis"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=alvindennis.is-a.dev,0cce0dce190e046ef841"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/_vercel.anto.json b/domains/_vercel.anto.json
new file mode 100644
index 000000000..c42655648
--- /dev/null
+++ b/domains/_vercel.anto.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hardianto01",
+ "email": "hardiantojek92@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=anto.is-a.dev,c6f0fc6ee41a39c2c435"]
+ }
+}
diff --git a/domains/_vercel.arnxv.json b/domains/_vercel.arnxv.json
new file mode 100644
index 000000000..a950636ca
--- /dev/null
+++ b/domains/_vercel.arnxv.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "ArnavBarway",
+ "email": "arnav@sagaraga.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=arnxv.is-a.dev,2b36da5314d05cea9737",
+ "vc-domain-verify=works.arnxv.is-a.dev,f8b0553cc89bfe7097fa",
+ "vc-domain-verify=kind-nodes.arnxv.is-a.dev,ba40e23d4384053b8059"
+ ]
+ }
+}
diff --git a/domains/_vercel.arshman.json b/domains/_vercel.arshman.json
new file mode 100644
index 000000000..3d42d54ea
--- /dev/null
+++ b/domains/_vercel.arshman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "syedtahseen",
+ "email": ""
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=arshman.is-a.dev,b92115f7845437a44890"]
+ }
+}
diff --git a/domains/_vercel.atharvd.json b/domains/_vercel.atharvd.json
new file mode 100644
index 000000000..ccd8cbb0d
--- /dev/null
+++ b/domains/_vercel.atharvd.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "D-Atharv"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=atharvd.is-a.dev,a9192e60bfd581760d17"]
+ }
+}
diff --git a/domains/_vercel.chrisbase12.json b/domains/_vercel.chrisbase12.json
new file mode 100644
index 000000000..0ca5c7765
--- /dev/null
+++ b/domains/_vercel.chrisbase12.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "OverCharred"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=chrisbase12.is-a.dev,2adfe83fcf59b08d47b0"
+ }
+}
diff --git a/domains/_vercel.chuyentinorz.json b/domains/_vercel.chuyentinorz.json
new file mode 100644
index 000000000..f8a6c0b83
--- /dev/null
+++ b/domains/_vercel.chuyentinorz.json
@@ -0,0 +1,13 @@
+{
+ "description": "Vercel verification of chuyentinorz.is-a.dev",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=chuyentinorz.is-a.dev,46d8c5be943cf4eb7cd2"
+ ]
+ }
+}
diff --git a/domains/_vercel.computerblade.json b/domains/_vercel.computerblade.json
new file mode 100644
index 000000000..f4053f971
--- /dev/null
+++ b/domains/_vercel.computerblade.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "computerblade-official"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=computerblade.is-a.dev,0b4d70954aeb7d2d0656"]
+ }
+}
diff --git a/domains/_vercel.cupglass.json b/domains/_vercel.cupglass.json
deleted file mode 100644
index f5973b648..000000000
--- a/domains/_vercel.cupglass.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "just a simple website for my rpi",
- "repo": "https://github.com/cupglassdev/rpi-nix-web",
- "owner": {
- "username": "cupglassdev",
- "twitter": "cupglassdev",
- "lahelu": "https://lahelu.com/user/cupglassdev",
- "discord": "cupglassdev"
- },
- "record": {
- "TXT": "vc-domain-verify=rpinix.cupglass.is-a.dev,0b8b2c5753fc7cbe4b83"
- }
-}
diff --git a/domains/_vercel.daim.json b/domains/_vercel.daim.json
new file mode 100644
index 000000000..511e8b8db
--- /dev/null
+++ b/domains/_vercel.daim.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sYnceDez41",
+ "email": "zdaim78@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=daim.is-a.dev,d88985a4876213470d49"
+ ]
+ }
+}
diff --git a/domains/_vercel.dimasandriano.json b/domains/_vercel.dimasandriano.json
new file mode 100644
index 000000000..52c2f0077
--- /dev/null
+++ b/domains/_vercel.dimasandriano.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dimasandriano",
+ "email": "dimas.andriano.h@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=dimasandriano.is-a.dev,e6171f1cd28f96238ae2"
+ }
+}
diff --git a/domains/_vercel.exigent-app.json b/domains/_vercel.exigent-app.json
index 6d3076696..3d5a4cb30 100644
--- a/domains/_vercel.exigent-app.json
+++ b/domains/_vercel.exigent-app.json
@@ -1,6 +1,6 @@
{
"owner": {
- "usernme": "Exigent07",
+ "username": "Exigent07",
"discord": "exigent07"
},
"record": {
diff --git a/domains/_vercel.gokulbarath.json b/domains/_vercel.gokulbarath.json
new file mode 100644
index 000000000..982bb600d
--- /dev/null
+++ b/domains/_vercel.gokulbarath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gokul6350",
+ "email": "gokul00060@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=gokulbarath.is-a.dev,b6d252e3dde12b69cc05"]
+ }
+}
diff --git a/domains/_vercel.goutam.json b/domains/_vercel.goutam.json
new file mode 100644
index 000000000..2e3ff7287
--- /dev/null
+++ b/domains/_vercel.goutam.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "MatrixCoder0101"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=goutam.is-a.dev,cde668462cf6a679633f"
+ ]
+ }
+}
diff --git a/domains/_vercel.hien.json b/domains/_vercel.hien.json
new file mode 100644
index 000000000..e8d7c314e
--- /dev/null
+++ b/domains/_vercel.hien.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hienlh",
+ "email": "hienlh1298@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=hien.is-a.dev,8c95220c38753532b45f"]
+ }
+}
diff --git a/domains/_vercel.hujjat.json b/domains/_vercel.hujjat.json
new file mode 100644
index 000000000..263fe3fa1
--- /dev/null
+++ b/domains/_vercel.hujjat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hujjatiii",
+ "email": "hujjatx@yahoo.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=hujjat.is-a.dev,73fd6f83a3b034bfc044"
+ }
+}
diff --git a/domains/_vercel.izerr.json b/domains/_vercel.izerr.json
new file mode 100644
index 000000000..f4cd711b3
--- /dev/null
+++ b/domains/_vercel.izerr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Explodey-Wolf",
+ "email": "peanutplays61@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=izerr.is-a.dev,16607c905489ac70ec6d"
+ ]
+ }
+}
diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json
new file mode 100644
index 000000000..08c660da0
--- /dev/null
+++ b/domains/_vercel.jake.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xzrci",
+ "email": ""
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=jake.is-a.dev,1075ab07de85fa87e8cd"]
+ }
+}
diff --git a/domains/_vercel.krebinkkj.json b/domains/_vercel.krebinkkj.json
new file mode 100644
index 000000000..31db69c73
--- /dev/null
+++ b/domains/_vercel.krebinkkj.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "krebinkkj",
+ "email": "krebinkkj@gmail.com",
+ "discord": "1041878326169587732"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=krebinkkj.is-a.dev,dadd7998d7a4c506db3b"
+ ]
+ }
+}
diff --git a/domains/_vercel.kushdhingra.json b/domains/_vercel.kushdhingra.json
new file mode 100644
index 000000000..350a577a1
--- /dev/null
+++ b/domains/_vercel.kushdhingra.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "kushdhingra"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=kushdhingra.is-a.dev,a0343a97ff791537efcd"]
+ }
+}
diff --git a/domains/_vercel.lumi.json b/domains/_vercel.lumi.json
deleted file mode 100644
index 2a22a48dc..000000000
--- a/domains/_vercel.lumi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "itsFatlum",
- "discord": "563697359423406082"
- },
- "record": {
- "TXT": "vc-domain-verify=lumi.is-a.dev,38de86570893517719b8"
- }
-}
diff --git a/domains/_vercel.magitian.json b/domains/_vercel.magitian.json
new file mode 100644
index 000000000..18fdbffd3
--- /dev/null
+++ b/domains/_vercel.magitian.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "magitian",
+ "email": "magitian@duck.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=magitian.is-a.dev,645e2d8f0ecf6f802922"
+ ]
+ }
+}
diff --git a/domains/_vercel.michi.json b/domains/_vercel.michi.json
index 7393a3bdc..9e313e8c0 100644
--- a/domains/_vercel.michi.json
+++ b/domains/_vercel.michi.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "jonasfroeller",
- "email": "j.froe@gmx.at"
+ "username": "Michi4",
+ "email": "michael.ruep@gmail.com"
},
"record": {
"TXT": ["vc-domain-verify=michi.is-a.dev,d0e5ddd1aa39de41c31a"]
diff --git a/domains/_vercel.mico.json b/domains/_vercel.mico.json
new file mode 100644
index 000000000..655089ea6
--- /dev/null
+++ b/domains/_vercel.mico.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "micoms"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=mico.is-a.dev,1c71f89a6944e037c8f7"]
+ }
+}
diff --git a/domains/_vercel.n.json b/domains/_vercel.n.json
new file mode 100644
index 000000000..9313a98af
--- /dev/null
+++ b/domains/_vercel.n.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "syedtahseen",
+ "email": "itxtahseen@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=n.is-a.dev,8435c76be2d4e8aaa229"
+ ]
+ }
+}
diff --git a/domains/_vercel.princeprajapati.json b/domains/_vercel.princeprajapati.json
new file mode 100644
index 000000000..827de3b7f
--- /dev/null
+++ b/domains/_vercel.princeprajapati.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notreallyprince",
+ "email": "prince30112001@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a"
+ }
+}
diff --git a/domains/_vercel.princexd.json b/domains/_vercel.princexd.json
new file mode 100644
index 000000000..46c385427
--- /dev/null
+++ b/domains/_vercel.princexd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notreallyprince",
+ "email": "prince30112001@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=princexd.is-a.dev,acf5910bb60fc8fecfd1"
+ }
+}
diff --git a/domains/_vercel.q.json b/domains/_vercel.q.json
new file mode 100644
index 000000000..bdf225642
--- /dev/null
+++ b/domains/_vercel.q.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "syedtahseen",
+ "email": "itxtahseen@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=q.is-a.dev,8798cf095e1f783b5302"
+ ]
+ }
+}
diff --git a/domains/_vercel.ritam.json b/domains/_vercel.ritam.json
new file mode 100644
index 000000000..b7dbe65bd
--- /dev/null
+++ b/domains/_vercel.ritam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nxrmqlly",
+ "email": "ritam@duck.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=ritam.is-a.dev,fc2fd1d325b0a4f9269b"]
+ }
+}
diff --git a/domains/_vercel.shubh.json b/domains/_vercel.shubh.json
new file mode 100644
index 000000000..79802a66f
--- /dev/null
+++ b/domains/_vercel.shubh.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "R3tr0LastKnight"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=shubh.is-a.dev,ec236054bf6268762e7e"]
+ }
+}
diff --git a/domains/_vercel.shuhaab.json b/domains/_vercel.shuhaab.json
new file mode 100644
index 000000000..fd9fac460
--- /dev/null
+++ b/domains/_vercel.shuhaab.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Shuhaab-coder"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=shuhaab.is-a.dev,4f90144524ddbcf1a09b"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/_vercel.skarwuuu.json b/domains/_vercel.skarwuuu.json
new file mode 100644
index 000000000..17b8e20f9
--- /dev/null
+++ b/domains/_vercel.skarwuuu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "skarwuuu",
+ "email": "sakshrwt@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=skarwuuu.is-a.dev,eb14a67d4b3b06f29c5c"
+ ]
+ }
+}
diff --git a/domains/_vercel.sono.json b/domains/_vercel.sono.json
deleted file mode 100644
index 290f8cf9d..000000000
--- a/domains/_vercel.sono.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "discord": "1222250424309121145",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.B0E8HDNESQtYbnqBzGRtbUo8aLtRfD3w-btRsFsnAelPi1iHjMb7C1RSEXvClmiEIlqtyIflfg_twb-RQK30p-oc8THXQ_fnA0m2I2YZhjP5jFIraPP7bOV71YTSPiJ-reWMhErizuqL17nDmsdwhrm2na4pVgqPNRVAPo1CV_h2m7ZXHCGjYNysuXvx48HX7MHC5kVyDsSyonKqxoC-545i4u-oCb-qBBGfEbuH3h7-rFIFjYzeG8qJ22cYpjNz6QY9PkI4LLtyzHTbdyTWVyzPY5zZUqFJz_C3aP5Up0de5xxxUcU-QMvP-xptfRmfs9OlHSaQFYGT22SnTUA3qg.II3jjDcfMUNmUNeiFj7lmg.roR-IKIqPZMcdKSjw5IV1QKYDbr6swbEiYbd1bbsCj3cVHc_04zhCKWy7hL_TH9wntdYjG9K8gGU0jtZ0bO3O9S3-dmooa3QDiLjoA4QQHc.fGW4EK-eAEERdQQBBeUCJg"
- },
- "record": {
- "TXT": "vc-domain-verify=sono.is-a.dev,35c69f97808f44838a85"
- }
-}
diff --git a/domains/_vercel.ukino.json b/domains/_vercel.ukino.json
new file mode 100644
index 000000000..8540ac80e
--- /dev/null
+++ b/domains/_vercel.ukino.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ukinon",
+ "email": "arfianoj@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=ukino.is-a.dev,abcf9c3157f2470d8c51"]
+ }
+}
diff --git a/domains/_vercel.uwu.json b/domains/_vercel.uwu.json
deleted file mode 100644
index bec23fd06..000000000
--- a/domains/_vercel.uwu.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
- },
- "record": {
- "TXT": "vc-domain-verify=vercel.uwu.is-a.dev,61038f548f8542bd1397"
- }
-}
diff --git a/domains/_vercel.v.json b/domains/_vercel.v.json
new file mode 100644
index 000000000..b9cd9e583
--- /dev/null
+++ b/domains/_vercel.v.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leofelix908",
+ "email": ""
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=v.is-a.dev,9bd0999222ffc1417790"]
+ }
+}
diff --git a/domains/_vercel.vantage.json b/domains/_vercel.vantage.json
new file mode 100644
index 000000000..084102fc1
--- /dev/null
+++ b/domains/_vercel.vantage.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "blaze-099",
+ "email": "",
+ "discord": "1186691290759434350",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QLo89mhM4fE7MyI0fwTOoE1gwfqgTROR4XPtssSWrCFKdjAMxwFLRxSVKfTTk47ZdvtFcNQ-9i6zANMmvnKWqb4lk-A_IYDgCTI-rzfl7lIAsff092nh30jydQF4TCaaPwer3yrDZs-cHqnPJe1M9tVGLROeCpH5ndmRFCFCTp0SF5fIlyed9zElmsvmVm1In-pKSTFghIOm7W5A0Y_TGgGRz1GnCd7rUL0y_2Pww__W_JmiPYaqnIaas5YfHZSeSv68f4u6TicVOUFMCmRCAeF17ajRHB8NJJmAZ_5o0pvPs-YTFttOGRRp0MV7AMObacFMFpYufgvFM6amMBuKFA.nFT85dthPK_PLwebqK3zVw.w_dE_O8xeNrfXjtiPx_VM3hBR_p0i8huGEZfvGafCIBBtWm42cuIYAZ_kNh_qai31o3i7oRRi7UXOBGeShlvXW7znEXB9nx6Xy81QrbL878.l30yta1ym3dOqtn8MC7dZA"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=vantage.is-a.dev,880ae7aaeb22f3419bd0"
+ ]
+ }
+}
diff --git a/domains/_vercel.vgwarden.json b/domains/_vercel.vgwarden.json
new file mode 100644
index 000000000..d86a3551a
--- /dev/null
+++ b/domains/_vercel.vgwarden.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "VGWARDEN"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=vgwarden.is-a.dev,fb2beec697ea06b98fb5"]
+ }
+}
diff --git a/domains/_vercel.victoria.json b/domains/_vercel.victoria.json
new file mode 100644
index 000000000..488bff22c
--- /dev/null
+++ b/domains/_vercel.victoria.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itahseen",
+ "email": ""
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=victoria.is-a.dev,c0c6d37bd2ddf96a77aa"]
+ }
+}
diff --git a/domains/_vercel.wizardsword.json b/domains/_vercel.wizardsword.json
new file mode 100644
index 000000000..9d6d33c4a
--- /dev/null
+++ b/domains/_vercel.wizardsword.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MukuJhansi",
+ "discord": "1115658967012626542"
+ },
+ "record": {
+ "TXT": [
+ "vc-domain-verify=wizardsword.is-a.dev,bf203775c8ab97f0aa24"
+ ]
+ }
+}
diff --git a/domains/_vercel.z.json b/domains/_vercel.z.json
new file mode 100644
index 000000000..45d4bfd88
--- /dev/null
+++ b/domains/_vercel.z.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jakeharrison90",
+ "email": "overtonmarke@gmail.com"
+ },
+ "record": {
+ "TXT": ["vc-domain-verify=z.is-a.dev,9be8de01c9c241334606"]
+ }
+}
diff --git a/domains/aakashs.json b/domains/aakashs.json
index 88fa2b76f..ee582b803 100644
--- a/domains/aakashs.json
+++ b/domains/aakashs.json
@@ -6,6 +6,6 @@
"discord": "AakashS#9630"
},
"record": {
- "CNAME": "Aakash-kun.github.io"
+ "CNAME": "aakash-kun.github.io"
}
}
diff --git a/domains/aayushakacloudy.json b/domains/aayushakacloudy.json
index 1f76e391d..6feb21808 100644
--- a/domains/aayushakacloudy.json
+++ b/domains/aayushakacloudy.json
@@ -6,6 +6,6 @@
"email": "aaayush.dev@gmail.com"
},
"record": {
- "CNAME": "gamedevCloudy.github.io"
+ "CNAME": "gamedevcloudy.github.io"
}
}
diff --git a/domains/abby.json b/domains/abby.json
new file mode 100644
index 000000000..70ff7f6dd
--- /dev/null
+++ b/domains/abby.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "MiloDev123",
+ "email": "milo@milosantos.com",
+ "discord": "699318362848886864"
+ },
+ "record": {
+ "NS": [
+ "kristin.ns.cloudflare.com",
+ "uriah.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/abdelghani.json b/domains/abdelghani.json
new file mode 100644
index 000000000..37b3275b7
--- /dev/null
+++ b/domains/abdelghani.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "abdessattar23",
+ "discord": "1226143665567567954",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.eU0sigYFTiUmRSsjTm8HIpmuwsrshbwh3EHiAN0We7TPTvlwMZxh3Yf7G9dkLOygXKomX08LOA1ELcJB9vK2OWbbK2k6fOJQQCKr6S7pV9ZU4HifKGXPxQKoPAmo72Zqenp9PBZ0USq0j05eprWD5deGY3YvW_L6o38wcDJdSD2k8ivwPFxvY3PUA1ntL8tHVAhq-oMPXUVXVpsHjZqDGbatQEHyUe0vQhc7dbmJF5HlvRVXOw3M-1EQmBURw_5tEAKDxZSzn2G0zu2hGnzT_vqgi-OAu9cSM1br4ytgLbUHG1VnuU9VQtEXLF1Rvp8aWPUwxq_1ojm07mzXBChM4g.JuGnrwrSF9PLG44nC_dtRA.Lb1j-9z9OQiV-bS8d0vSFUqV367FZpYp2wZmKlodkAagnu8suFiGz2DzxT086wdpucbFOCRJD4l1jjBVcNDq7R12hdcpu5_o-zh8r5JwpbDVyjC4Mjdxs4hLpwZH5OEp.OmkfnGL8CjO_8IJtjAfnwQ"
+ },
+
+ "record": {
+ "CNAME": "king255-del.github.io"
+ }
+ }
diff --git a/domains/abiapp789.json b/domains/abiapp789.json
index f971034aa..4472f5420 100644
--- a/domains/abiapp789.json
+++ b/domains/abiapp789.json
@@ -1,9 +1,10 @@
{
"domain": "abiapp1789.is-a.dev",
"owner": {
+ "username": "abiapp789",
"email": "abiapp2024@gmail.com"
},
"record": {
- "CNAME": "abiapp789.github.io"
+ "CNAME": "trytodownloadme.rf.gd"
}
}
diff --git a/domains/donate.gornostay25.json b/domains/abiels.json
similarity index 69%
rename from domains/donate.gornostay25.json
rename to domains/abiels.json
index 184f0e4b8..53d0546fc 100644
--- a/domains/donate.gornostay25.json
+++ b/domains/abiels.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "gornostay25",
- "email": "me@gornostay25.is-a.dev"
+ "email": "usagecomputer1@gmail.com",
+ "username": "Abiel0"
},
"record": {
"A": [
diff --git a/domains/ac.json b/domains/ac.json
new file mode 100644
index 000000000..688a1d5e7
--- /dev/null
+++ b/domains/ac.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/acdev1508/acdev1508.github.io",
+ "owner": {
+ "username": "acdev1508",
+ "email": "acgamer1508@gmail.com"
+ },
+ "record": {
+ "CNAME": "acdev1508.github.io"
+ }
+}
diff --git a/domains/admir.json b/domains/admir.json
new file mode 100644
index 000000000..fb6ab3bd0
--- /dev/null
+++ b/domains/admir.json
@@ -0,0 +1,11 @@
+{
+ "description": "Admir",
+ "repo": "https://github.com/justadmir/justadmir.github.io",
+ "owner": {
+ "username": "justadmir",
+ "email": "admirtahiraj242@gmail.com"
+ },
+ "record": {
+ "CNAME": "justadmir.github.io"
+ }
+}
diff --git a/domains/aeyika.json b/domains/aeyika.json
new file mode 100644
index 000000000..fcc67f8f7
--- /dev/null
+++ b/domains/aeyika.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aeyika",
+ "email": "aeyikastech@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-aeyikas-projects.vercel.app"
+ }
+}
diff --git a/domains/ags.server.drpleaserespect.json b/domains/ags.server.drpleaserespect.json
deleted file mode 100644
index ee0613c67..000000000
--- a/domains/ags.server.drpleaserespect.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DrPleaseRespect",
- "email": "juliannayr2007@gmail.com"
- },
- "record": {
- "A": ["146.19.100.135"],
- "AAAA": ["2a05:dfc1:4400:6c00::a"]
- }
-}
diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json
index 9c030d54f..c89d72ea7 100644
--- a/domains/ahuja-m.json
+++ b/domains/ahuja-m.json
@@ -2,8 +2,7 @@
"description": "This is a user",
"repo": "https://github.com/ahuja-m/ahuja-m.github.io",
"owner": {
- "username": "ahuja-m",
- "email": ""
+ "username": "ahuja-m"
},
"record": {
"CNAME": "ahuja-m.github.io"
diff --git a/domains/ai-y.json b/domains/ai-y.json
index 87c888795..1ba829032 100644
--- a/domains/ai-y.json
+++ b/domains/ai-y.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "ai-y.onrender.com"
diff --git a/domains/ai-y.yosuke.json b/domains/ai-y.yosuke.json
index e4b6d6271..632f9c315 100644
--- a/domains/ai-y.yosuke.json
+++ b/domains/ai-y.yosuke.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "ai-y-main.pages.dev"
diff --git a/domains/ai-y.yunexiz.json b/domains/ai-y.yunexiz.json
index 1a06bbbaf..0ab726729 100644
--- a/domains/ai-y.yunexiz.json
+++ b/domains/ai-y.yunexiz.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "yunexiz.github.io"
diff --git a/domains/ai.esb.json b/domains/ai.esb.json
deleted file mode 100644
index 64dce2b97..000000000
--- a/domains/ai.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "email": "educatedsuddenbucket@gmail.com"
- },
- "record": {
- "A": ["34.120.54.55"],
- "AAAA": ["2600:1901:0:6d85::"]
- }
-}
diff --git a/domains/ai.json b/domains/ai.json
new file mode 100644
index 000000000..1f6312968
--- /dev/null
+++ b/domains/ai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Bananalolok",
+ "discord": "banana_lol_7678"
+ },
+ "record": {
+ "NS": ["audrey.ns.cloudflare.com", "hank.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/aidan.json b/domains/aidan.json
new file mode 100644
index 000000000..4c83a2f42
--- /dev/null
+++ b/domains/aidan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sangnd2x",
+ "email": "sanguyen128@gmail.com"
+ },
+ "record": {
+ "A": ["103.211.201.28"]
+ }
+}
diff --git a/domains/aj.json b/domains/aj.json
index 810c13865..486c3c722 100644
--- a/domains/aj.json
+++ b/domains/aj.json
@@ -4,6 +4,9 @@
"discord": "825382504353234954"
},
"record": {
- "A": ["76.76.21.21"]
+ "A": ["76.76.21.21"],
+ "TXT": [
+ "google-site-verification=CT0XYnjNC4mKSCOf5Bg0MhiAI1iA5fE2j0cQRJ6PNNo"
+ ]
}
}
diff --git a/domains/ajay-charotariya.json b/domains/ajay-charotariya.json
index 1debf9c38..790b15b2e 100644
--- a/domains/ajay-charotariya.json
+++ b/domains/ajay-charotariya.json
@@ -2,8 +2,7 @@
"description": "Ajay charotariya.",
"repo": "https://github.com/ajay-charotariya/ajay-charotariya.github.io",
"owner": {
- "username": "ajay-charotariya",
- "email": ""
+ "username": "ajay-charotariya"
},
"record": {
"CNAME": "ajay-charotariya.github.io"
diff --git a/domains/ajays.json b/domains/ajays.json
index 8fa7f088c..fc9561518 100644
--- a/domains/ajays.json
+++ b/domains/ajays.json
@@ -6,6 +6,6 @@
"email": "ajays.dev.contact@gmail.com"
},
"record": {
- "CNAME": "Dev-Ajay-sahani.github.io"
+ "CNAME": "dev-ajay-sahani.github.io"
}
}
diff --git a/domains/ajit-thakor.json b/domains/ajit-thakor.json
index 7c6593d98..366303fd1 100644
--- a/domains/ajit-thakor.json
+++ b/domains/ajit-thakor.json
@@ -2,8 +2,7 @@
"description": "Ajit Portfolio.",
"repo": "https://github.com/ajit-thakor/ajit-thakor.github.io",
"owner": {
- "username": "ajit-thakor",
- "email": ""
+ "username": "ajit-thakor"
},
"record": {
"CNAME": "ajit-thakor.github.io"
diff --git a/domains/akhilesh.json b/domains/akhilesh.json
index fafe817b1..94d164882 100644
--- a/domains/akhilesh.json
+++ b/domains/akhilesh.json
@@ -6,6 +6,6 @@
"email": "AkhilRamachandran@gmail.com"
},
"record": {
- "CNAME": "ProCoderAkhil.github.io"
+ "CNAME": "procoderakhil.github.io"
}
}
diff --git a/domains/akk1to.json b/domains/akk1to.json
new file mode 100644
index 000000000..95c7591f2
--- /dev/null
+++ b/domains/akk1to.json
@@ -0,0 +1,21 @@
+{
+ "description": "This website is my personal portfollo XD (let it on rq)",
+ "repo": "https://github.com/akk1to/akk1to.github.io",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "A":[
+ "185.199.108.153",
+ "185.199.111.153",
+ "185.199.110.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/akorn.json b/domains/akorn.json
index 3840ff527..39114c383 100644
--- a/domains/akorn.json
+++ b/domains/akorn.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "Akronical",
- "email": ""
+ "username": "Akronical"
},
"record": {
"CNAME": "akronical.github.io"
diff --git a/domains/akshtt.json b/domains/akshtt.json
index 01ec8e9d9..ad11a082f 100644
--- a/domains/akshtt.json
+++ b/domains/akshtt.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "LegendOP1041",
+ "username": "akshtt-dev",
"email": "maillegendop@gmail.com",
"discord": "1056531806763102218"
},
diff --git a/domains/akshya.json b/domains/akshya.json
index 0a08b60dc..330661566 100644
--- a/domains/akshya.json
+++ b/domains/akshya.json
@@ -6,6 +6,6 @@
"email": "akshyathapa23@gmail.com"
},
"record": {
- "CNAME": "LowkeyGUY4444.github.io"
+ "CNAME": "lowkeyguy4444.github.io"
}
}
diff --git a/domains/akta-chavda.json b/domains/akta-chavda.json
index 20926962f..f60353aca 100644
--- a/domains/akta-chavda.json
+++ b/domains/akta-chavda.json
@@ -2,8 +2,7 @@
"description": "ankita chavda.",
"repo": "https://github.com/akta-chavda/akta-chavda.github.io",
"owner": {
- "username": "akta-chavda",
- "email": ""
+ "username": "akta-chavda"
},
"record": {
"CNAME": "akta-chavda.github.io"
diff --git a/domains/alan-huynh.json b/domains/alan-huynh.json
new file mode 100644
index 000000000..660323ea1
--- /dev/null
+++ b/domains/alan-huynh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hdmquan",
+ "email": "hdmquan@gmail.com"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/domains/alan-smith.json b/domains/alan-smith.json
new file mode 100644
index 000000000..c1cc6c8df
--- /dev/null
+++ b/domains/alan-smith.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AlanDoesCS",
+ "email": "",
+ "discord": "730009898942988299",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Immp3HgqOvoplEYYoUA3Svp2THkx-M7zYK40QEwo92htoYTIMb06Jr41viIoiS54WxHndFOTfKu8mVfkfBn6Ddvv3NVhj99R__0OtqqiBkyu7F7uBnZwyq-bGRx8y4SNVhek_NKLuEMbIxHnE21lZEMScbTuL6v_C5mjVZ4EYD8KIPOni_PqBDqrgmRd9ECIPuVAs55ekba6in7jiSbm0-ERfrQ7KqAASTpw17VtjXEL99uPVbx45amsbTMKUjcgZJ-xN_Z4heIcPlxnllVYUZ2fCDw4PhJlGGh8Bg2LCyXbLUMVw5vQESFxEpm682p_rruCRSBCNbHdP4TIF6bI2w.5LaEVt0VljKihoKo-ohj5Q.3bF4ihh9j5tyc916AhgbzB6-LdNGzp4l1VsRT390mcE2fvN9mj46niGBDBapwZqjRiNZgNOzAqKKVUwde-gfek6OgLe4ZsGJSATvF-B6YaM.XnzWEJO3I3UYsV1yl5SfYg"
+ },
+ "record": {
+ "CNAME": "alandoescs.github.io"
+ }
+}
diff --git a/domains/albakhet.json b/domains/albakhet.json
new file mode 100644
index 000000000..49e8b9333
--- /dev/null
+++ b/domains/albakhet.json
@@ -0,0 +1,14 @@
+{
+ "description": "my email forwarding domain",
+ "owner": {
+ "username": "Somaiya-XI",
+ "discord": "Sen!#0577"
+ },
+ "record": {
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/alecks.json b/domains/alecks.json
index e4b298c16..6d0e88aef 100644
--- a/domains/alecks.json
+++ b/domains/alecks.json
@@ -7,6 +7,5 @@
"record": {
"CNAME": "evergarden.alecks.cloud"
},
-
"proxied": true
}
diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json
index fb0013d3a..fcb845305 100644
--- a/domains/alephdiallo.json
+++ b/domains/alephdiallo.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
-
"TXT": "forward-email=alephdiallo@mail.com"
}
}
diff --git a/domains/alexey.json b/domains/alexey.json
index 4b011b2c4..dc46d3458 100644
--- a/domains/alexey.json
+++ b/domains/alexey.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "charmingdisorder",
- "email": ""
+ "username": "charmingdisorder"
},
"record": {
"CNAME": "charmingdisorder.github.io"
diff --git a/domains/alfred.json b/domains/alfred.json
index c3bae96d2..190259ff9 100644
--- a/domains/alfred.json
+++ b/domains/alfred.json
@@ -6,6 +6,6 @@
"email": "alvinallen333@gmail.com"
},
"record": {
- "CNAME": "AlfredDiscordBot.github.io"
+ "CNAME": "alfreddiscordbot.github.io"
}
}
diff --git a/domains/ali-abdurrazzak.json b/domains/ali-abdurrazzak.json
index 47101becd..b411fc225 100644
--- a/domains/ali-abdurrazzak.json
+++ b/domains/ali-abdurrazzak.json
@@ -4,7 +4,7 @@
"owner": {
"username": "aliabdurrazzak",
"email": "aliabdurrazzak@gmail.com",
- "twitter": "@aliabdurrazzak"
+ "twitter": "aliabdurrazzak"
},
"record": {
"CNAME": "aliabdurrazzak.github.io"
diff --git a/domains/alpha.json b/domains/alpha.json
index acc3d3353..9256c4955 100644
--- a/domains/alpha.json
+++ b/domains/alpha.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"URL": "https://yfadev.pw",
diff --git a/domains/alvindennis.json b/domains/alvindennis.json
new file mode 100644
index 000000000..2605e68a7
--- /dev/null
+++ b/domains/alvindennis.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "alvin-dennis",
+ "discord": "732503927940972605"
+ },
+
+ "record": {
+ "CNAME": "alvindennis.vercel.app"
+ }
+ }
diff --git a/domains/amin.json b/domains/amin.json
new file mode 100644
index 000000000..f7f2a9d04
--- /dev/null
+++ b/domains/amin.json
@@ -0,0 +1,16 @@
+{
+ "description": "website for my links",
+ "repo": "https://github.com/amenm0/littlelink.github.io",
+ "owner": {
+ "username": "amenm0",
+ "email": "mjmwtmjls@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/amjad.json b/domains/amjad.json
index e6014a143..81953551c 100644
--- a/domains/amjad.json
+++ b/domains/amjad.json
@@ -6,6 +6,6 @@
"tiwtter": "amjad_ah_"
},
"record": {
- "CNAME": "amjadAH.github.io"
+ "CNAME": "amjadah.github.io"
}
}
diff --git a/domains/andreijiroh.json b/domains/andreijiroh.json
index 85224d2d1..a02dd8b11 100644
--- a/domains/andreijiroh.json
+++ b/domains/andreijiroh.json
@@ -2,9 +2,11 @@
"owner": {
"username": "ajhalili2006",
"discord": "437044173825114113",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA"
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.KYflKk2IBSfS6chUMYUGHREeeZVR18nZA-TlYCa5lgQGaR1P6lixNKJAJcJv72mUkHus2VyrrxSkl5ttCTtBXFdFs8eA4jNFPjtvC_7Qt-i_v0UWs5rxtdZ2y3MsN6jzPeVzHcVq2gQG9RFdIniBHMKuEOfiPCPqXp_CbdjBddCRQRsIzunnAwof917053o4EV3JCMVN9ObW3Jdq9GD9QaB_vPG9HjFqzwlvSA6QFbQYYilvij7UF5I3pcLfNyOw3tascM6GMDlXJxtqL2r6HLo58MSagDKycFCuuxdfsRljnLypuwF0m_3bEV76QRpvMWY_NmW6FaveHLjzd82l0g.ABEBdXC3pvmyqoKfDAw86A.NNKf3gP3_-fzpnvGWIBJaSzsU-d1ZJsDFJSyc52B6pjz1LrYOeK_0-QjF8w1Y1xiaRz475Drvb-27xOCjANJjZlgtCVrG1mgVxWDanb30kmyV8KtNLnlGO3VKMWXqy7r.K9X3W6jos3JsIFCn6LGifA",
+ "fediverse": "@ajhalili2006@tilde.zone",
+ "bsky": "did:plc:wcx4c3osbuzrwmxkqdfqygwv"
},
"record": {
- "CNAME": "ajhalili2006.pages.dev"
+ "NS": ["kallie.ns.cloudflare.com","tadeo.ns.cloudflare.com"]
}
}
diff --git a/domains/angelwuff.json b/domains/angelwuff.json
index a8e79e4c1..b6f298fbb 100644
--- a/domains/angelwuff.json
+++ b/domains/angelwuff.json
@@ -6,6 +6,6 @@
"twitter": "AngelTheWolfy"
},
"record": {
- "CNAME": "Angelix1.github.io"
+ "CNAME": "angelix1.github.io"
}
}
diff --git a/domains/anhnguyen94.json b/domains/anhnguyen94.json
new file mode 100644
index 000000000..498cfa301
--- /dev/null
+++ b/domains/anhnguyen94.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio redirect for anhnguyen1907",
+ "owner": {
+ "username": "anhnguyen1907",
+ "email": "cau2tomy@gmail.com"
+ },
+ "record": {
+ "CNAME": "anhnguyen1907.github.io"
+ }
+}
diff --git a/domains/anirbaaaan.json b/domains/anirbaaaan.json
new file mode 100644
index 000000000..b2ba80add
--- /dev/null
+++ b/domains/anirbaaaan.json
@@ -0,0 +1,27 @@
+{
+ "owner": {
+ "username": "anirbaaaan183",
+ "email": "anirbanrc@proton.me"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": [
+ "v=spf1 include:spf.improvmx.com ~all"
+ ]
+ }
+}
diff --git a/domains/ankiprajapati.json b/domains/ankiprajapati.json
index caaa4e241..3537ed120 100644
--- a/domains/ankiprajapati.json
+++ b/domains/ankiprajapati.json
@@ -2,8 +2,7 @@
"description": "ankit Prajapati.",
"repo": "https://github.com/ankiprajapati/ankiprajapati.github.io",
"owner": {
- "username": "ankiprajapati",
- "email": ""
+ "username": "ankiprajapati"
},
"record": {
"CNAME": "ankiprajapati.github.io"
diff --git a/domains/ankit-acquaintsoft.json b/domains/ankit-acquaintsoft.json
index 3d05c4111..8fbc75f61 100644
--- a/domains/ankit-acquaintsoft.json
+++ b/domains/ankit-acquaintsoft.json
@@ -2,8 +2,7 @@
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/ankit-acquaintsoft/ankit-acquaintsoft.github.io",
"owner": {
- "username": "ankit-dere",
- "email": ""
+ "username": "ankit-dere"
},
"record": {
"CNAME": "ankit-acquaintsoft.github.io"
diff --git a/domains/ankit-chaubey.json b/domains/ankit-chaubey.json
new file mode 100644
index 000000000..d5e3be97d
--- /dev/null
+++ b/domains/ankit-chaubey.json
@@ -0,0 +1,13 @@
+{
+ "description": "Ankit Chaubey's GitHub page",
+ "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
+ "owner": {
+ "username": "ankit-chaubey",
+ "email": "m.ankitchaubey@gmail.com",
+ "telegram": "ankit_chaubey",
+ "github": "ankit-chaubey"
+ },
+ "record": {
+ "CNAME": "ankit-chaubey.github.io"
+ }
+}
diff --git a/domains/ankitchaubey.json b/domains/ankitchaubey.json
new file mode 100644
index 000000000..d5e3be97d
--- /dev/null
+++ b/domains/ankitchaubey.json
@@ -0,0 +1,13 @@
+{
+ "description": "Ankit Chaubey's GitHub page",
+ "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
+ "owner": {
+ "username": "ankit-chaubey",
+ "email": "m.ankitchaubey@gmail.com",
+ "telegram": "ankit_chaubey",
+ "github": "ankit-chaubey"
+ },
+ "record": {
+ "CNAME": "ankit-chaubey.github.io"
+ }
+}
diff --git a/domains/ansari-atharnadim.json b/domains/ansari-atharnadim.json
index a133e0ccf..6837342f1 100644
--- a/domains/ansari-atharnadim.json
+++ b/domains/ansari-atharnadim.json
@@ -2,8 +2,7 @@
"description": "This is my website",
"repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io",
"owner": {
- "username": "ansari-atharnadim",
- "email": ""
+ "username": "ansari-atharnadim"
},
"record": {
"CNAME": "ansari-atharnadim.github.io"
diff --git a/domains/ansari-saify.json b/domains/ansari-saify.json
index 7fb82d4ff..59002b04f 100644
--- a/domains/ansari-saify.json
+++ b/domains/ansari-saify.json
@@ -2,8 +2,7 @@
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/ansari-saify/ansari-saify.github.io",
"owner": {
- "username": "ansari-saify",
- "email": ""
+ "username": "ansari-saify"
},
"record": {
"CNAME": "ansari-saify.github.io"
diff --git a/domains/anshu.json b/domains/anshu.json
new file mode 100644
index 000000000..6b337d13d
--- /dev/null
+++ b/domains/anshu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anshu-prakash",
+ "email": "anshuprakash8445@gmail.com"
+ },
+ "record": {
+ "CNAME": "anshu-prakash.github.io"
+ }
+}
diff --git a/domains/ante.json b/domains/ante.json
new file mode 100644
index 000000000..3e3cb8301
--- /dev/null
+++ b/domains/ante.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "antebrl",
+ "email": "ahcwnh@gmail.com"
+ },
+ "record": {
+ "A": ["130.61.108.36"],
+ "TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"]
+ }
+}
diff --git a/domains/anto.json b/domains/anto.json
new file mode 100644
index 000000000..8e0e1174e
--- /dev/null
+++ b/domains/anto.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hardianto01",
+ "email": "hardiantojek92@gmail.com"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/antoangiaothong.akk1to.json b/domains/antoangiaothong.akk1to.json
new file mode 100644
index 000000000..1e9ffd5d2
--- /dev/null
+++ b/domains/antoangiaothong.akk1to.json
@@ -0,0 +1,12 @@
+{
+ "description": "This website is my personal portfollo XD (let it on rq)",
+ "repo": "https://github.com/akk1to/atgtsystem",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/anukarop.json b/domains/anukarop.json
index 6bdf8a297..b25c1a9aa 100644
--- a/domains/anukarop.json
+++ b/domains/anukarop.json
@@ -5,6 +5,6 @@
"discord": "AnukarOP"
},
"record": {
- "CNAME": "AnukarOP.github.io"
+ "CNAME": "anukarop.github.io"
}
}
diff --git a/domains/api-peantastic.json b/domains/api-peantastic.json
new file mode 100644
index 000000000..97223312a
--- /dev/null
+++ b/domains/api-peantastic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "peantastic",
+ "email": "leostark.vndev@gmail.com"
+ },
+ "description": "Hello, my name is Peantastic, and I am a dedicated developer with a passion for creating innovative solutions and enhancing user experiences. It's a pleasure to connect with you!",
+ "repo": "https://github.com/peantastic/",
+ "record": {
+ "CNAME": "tantinh.onrender.com"
+ }
+}
\ No newline at end of file
diff --git a/domains/api.acronical.json b/domains/api.acronical.json
new file mode 100644
index 000000000..335fb70a7
--- /dev/null
+++ b/domains/api.acronical.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AcronicalYT",
+ "email": "acronicalbusiness@gmail.com"
+ },
+ "record": {
+ "A": [
+ "138.68.133.84"
+ ]
+ }
+}
diff --git a/domains/api.esb.json b/domains/api.esb.json
deleted file mode 100644
index c7d2cc935..000000000
--- a/domains/api.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "discord": "1167825360151380032",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G63MWywbVBPCiP1H_VpGdNl0rXbhsluPIGWYrfPCikVJzHYweS34rK8v65QxLVjPOzAIWcOiRcEofvUZQsKYr3PFOzkZ_n-8D7hOU8It8Y8WQim0uW2GfD8JTu_jbqPl74tWysAlVYYg4L0kqiw-YDY0ZWadCqR7WR9BWK_M_qwB2tABlemLi2TKRFKHl8xuuFtPbVzCtBaWYDcb10AhB0zkIp185q5pwlbsafPxyY747GPvdx9JpqZFE36IfZ36N_Nvre0Pmms38pti1WLHyB3p4RdMVODRbY2FdNMezsYS6oNBrCSw0zeKxTNa__mTJfm17HmeHoiQr5whDP-b0A.r0IqaV4PgVHJJxxIBWCQwA.NonWBIudonu8aCNKSI6kvFYD0QZzkDrNHYJ-dZ7Lp0ISat6uC_gPFsBo1qXP0ghLcrPs9NRKZdKJnGry4sqf5YkCYNIdf22fL1cYqzBQ1ts71f-oIGQnz8tZP-PYgidS.bdLlUgRvdZjL3q4Rf827Rg"
- },
- "record": {
- "A": ["69.197.135.202"]
- }
-}
diff --git a/domains/api.semant.json b/domains/api.semant.json
index 7dde925c0..eef2b7841 100644
--- a/domains/api.semant.json
+++ b/domains/api.semant.json
@@ -1,7 +1,7 @@
{
"description": "Semant Api",
"owner": {
- "username": "s3mant",
+ "username": "ihacksemant",
"email": "contact@semant.is-a.dev",
"discord": "445073800850046977"
},
diff --git a/domains/api.sono.json b/domains/api.sono.json
deleted file mode 100644
index 12bfb8a8b..000000000
--- a/domains/api.sono.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "email": "sono.arbeit@gmail.com"
- },
- "record": {
- "CNAME": "imaginary-wakeful-busby.glitch.me"
- }
-}
diff --git a/domains/aquiffoo.json b/domains/aquiffoo.json
new file mode 100644
index 000000000..a310d9885
--- /dev/null
+++ b/domains/aquiffoo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aquiffoo",
+ "email": "aquilesffoliveira@gmail.com"
+ },
+ "record": {
+ "URL": "https://aquiffoo.vercel.app"
+ }
+}
diff --git a/domains/ari.json b/domains/ari.json
new file mode 100644
index 000000000..abd3eacfa
--- /dev/null
+++ b/domains/ari.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://ari.lt/git",
+ "description": "Ari-web: A personal website of a Lithuanian open source developer Ari Archer (Arija A.) who provides different free, private, and open source services for others.",
+ "owner": {
+ "username": "TruncatedDinoSour",
+ "email": "ari@ari.lt"
+ },
+ "record": {
+ "URL": "https://ari.lt/"
+ }
+}
diff --git a/domains/ariffhazmi.json b/domains/ariffhazmi.json
index 638b5bc14..ab147f361 100644
--- a/domains/ariffhazmi.json
+++ b/domains/ariffhazmi.json
@@ -6,6 +6,6 @@
"email": "muhdariffhazmi@gmail.com"
},
"record": {
- "CNAME": "Areplesapelagi.github.io"
+ "CNAME": "areplesapelagi.github.io"
}
}
diff --git a/domains/arijit.json b/domains/arijit.json
index 294cd31ab..70e8009bc 100644
--- a/domains/arijit.json
+++ b/domains/arijit.json
@@ -1,13 +1,9 @@
{
"description": "Site of Arijit",
-
"repo": "https://github.com/ArijitTheDev/arijitthedev.github.io",
-
"owner": {
"username": "ArijitTheDev",
-
"email": "itsarijitdebnath@gmail.com",
-
"twitter": "NotArijit"
},
"record": {
diff --git a/domains/arnxv.json b/domains/arnxv.json
new file mode 100644
index 000000000..2e23bf9fd
--- /dev/null
+++ b/domains/arnxv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArnavBarway",
+ "email": "arnav@sagaraga.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/arshman.json b/domains/arshman.json
new file mode 100644
index 000000000..9edba8599
--- /dev/null
+++ b/domains/arshman.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "syedtahseen",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "arshman.vercel.app"
+ }
+}
diff --git a/domains/aruntechpro.json b/domains/aruntechpro.json
new file mode 100644
index 000000000..b0fab6ae8
--- /dev/null
+++ b/domains/aruntechpro.json
@@ -0,0 +1,10 @@
+{
+ "description": "Personal Website",
+ "owner": {
+ "username": "aruntechpro",
+ "email": "arunkumarakr03@gmail.com"
+ },
+ "record": {
+ "CNAME": "aruntechpro.github.io"
+ }
+}
diff --git a/domains/ashan.json b/domains/ashan.json
index dbbde5e8e..a009930c0 100644
--- a/domains/ashan.json
+++ b/domains/ashan.json
@@ -7,6 +7,6 @@
"twitter": "AshanInduranga_"
},
"record": {
- "CNAME": "SealedSlinger.github.io"
+ "CNAME": "sealedslinger.github.io"
}
}
diff --git a/domains/ashikmuhammed.json b/domains/ashikmuhammed.json
new file mode 100644
index 000000000..9a7c933cf
--- /dev/null
+++ b/domains/ashikmuhammed.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/professorSergioMarquina/professorSergioMarquina.github.io",
+ "owner": {
+ "username": "professorSergioMarquina",
+ "email": "mrjinnoftg@gmail.com"
+ },
+ "record": {
+ "CNAME": "professorsergiomarquina.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/ashish-g-gupta.json b/domains/ashish-g-gupta.json
index fbe1ede19..aed625453 100644
--- a/domains/ashish-g-gupta.json
+++ b/domains/ashish-g-gupta.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/ashish-g-gupta/ashish-g-gupta.github.io",
"owner": {
- "username": "ashish-g-gupta",
- "email": ""
+ "username": "ashish-g-gupta"
},
"record": {
"CNAME": "ashish-g-gupta.github.io"
diff --git a/domains/astra.json b/domains/astra.json
new file mode 100644
index 000000000..a18e5fcc9
--- /dev/null
+++ b/domains/astra.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "MeHiGalatHu",
+ "email": "jabpadhekaindiatabhitoiitjayga@gmail.com"
+
+ },
+ "record": {
+ "CNAME": "astra-api.glitch.me"
+ }
+}
diff --git a/domains/astris.api.json b/domains/astris.api.json
deleted file mode 100644
index 4e87071b2..000000000
--- a/domains/astris.api.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "rherlydev",
- "email": "142740981+rherlydev@users.noreply.github.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 948965718794330153"
- },
- "record": {
- "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=rherlydev@proton.me"
- }
-}
diff --git a/domains/asuid.dankamigos.json b/domains/asuid.dankamigos.json
new file mode 100644
index 000000000..5a1b10f6b
--- /dev/null
+++ b/domains/asuid.dankamigos.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mokshdk",
+ "email": "anirudhsus001@gmail.com"
+ },
+ "record": {
+ "TXT": ["562965D131E7C913D1796476301A86A148A2B64B52D99FC316724B0B785FAAB1"]
+ }
+}
diff --git a/domains/asuna.json b/domains/asuna.json
index 4fc2b8989..835cb6e3b 100644
--- a/domains/asuna.json
+++ b/domains/asuna.json
@@ -6,6 +6,6 @@
"email": "codeasaurousteam@gmail.com"
},
"record": {
- "CNAME": "ehAsuna.github.io"
+ "CNAME": "ehasuna.github.io"
}
}
diff --git a/domains/aswinmahesh.json b/domains/aswinmahesh.json
index 5f2fd6c7f..4788b16c5 100644
--- a/domains/aswinmahesh.json
+++ b/domains/aswinmahesh.json
@@ -7,9 +7,7 @@
},
"record": {
"A": ["75.2.60.5"],
-
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/aswinmaheshc.json b/domains/aswinmaheshc.json
index 44e38e86b..5092baf92 100644
--- a/domains/aswinmaheshc.json
+++ b/domains/aswinmaheshc.json
@@ -7,9 +7,7 @@
},
"record": {
"A": ["75.2.60.5"],
-
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/ath.json b/domains/ath.json
new file mode 100644
index 000000000..aac6e1283
--- /dev/null
+++ b/domains/ath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Anchu251",
+ "email": "thuanhvu.ai@gmail.com"
+ },
+ "record": {
+ "CNAME": "anchu251.github.io"
+ }
+}
diff --git a/domains/atharvd.json b/domains/atharvd.json
new file mode 100644
index 000000000..eb71cd72c
--- /dev/null
+++ b/domains/atharvd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "D-Atharv",
+ "email": "atharv.dewangan04@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-portfolio-dusky-six-78.vercel.app"
+ }
+}
diff --git a/domains/athira-li.json b/domains/athira-li.json
index 62a1ec2c1..0681d7ffa 100644
--- a/domains/athira-li.json
+++ b/domains/athira-li.json
@@ -6,6 +6,6 @@
"email": "athirali4582@gmail.com"
},
"record": {
- "CNAME": "Athira-L-I.github.io"
+ "CNAME": "athira-l-i.github.io"
}
}
diff --git a/domains/axewbotx.json b/domains/axewbotx.json
index 8bd73229a..9001701b6 100644
--- a/domains/axewbotx.json
+++ b/domains/axewbotx.json
@@ -4,7 +4,7 @@
"owner": {
"username": "AxewBoTX",
"email": "lovedeepbrar54155@gmail.com",
- "twitter": "@AxewBoTX"
+ "twitter": "AxewBoTX"
},
"record": {
"CNAME": "axewbotx.github.io"
diff --git a/domains/axinux.json b/domains/axinux.json
new file mode 100644
index 000000000..0511d4406
--- /dev/null
+++ b/domains/axinux.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "axinux",
+ "email": "theaxinux@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-website-cvi.pages.dev"
+ }
+}
diff --git a/domains/axo.json b/domains/axo.json
new file mode 100644
index 000000000..97a4b991f
--- /dev/null
+++ b/domains/axo.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "ImAxolotlicekDev",
+ "discord": "1125148972449796136",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.qTh1SRQ2rIL26gQVBhmWSiLfW8cEEKLYBIYAj90jEctx9sSIXBWVGNBbtHzRKEajLmLPJClSn3H1ZEh1y0a-xaZZtyyQMJPSnLz0uq9GwjGqnC7GERliGZZMgdcdbHkskkDx5HU0yIjQYKcCKcTxDpEoIGfjJsc0sxQSGvz7gzH2XLuPmaGQY_9N-iJRT5Qxoe7dZ8f8cXT1XQr0SMuVw_MK-oHv05N8Mq33n7bYBdevRJjwGm9-fgceAS4Az30GCu4LPftFw2aUnz-mfzQNP7FaTq6hAkmIXGF1TI4zZwI8s0E5SYYF0Wdeza5I5bL2eV9U0ZKb8TBDYlOCu4zt-A.l7hez3hwbNNkuYc5mGcHnw.ZaJJd4kNJZPDYem-sNHBJ1qzSaGPQiERP1LBUZ-HDvbGC6FHBrdBJ-LFm_9k_jmPTSYgyU7Pz9YqKcaZhLWPHmYYhurP2t3gG9jDEAGoi4HB6I5Ddlc0g_WthxOak8Yx.bwqnONbqUYeiqlYhZ6fWXw"
+ },
+
+ "record": {
+ "A": ["158.178.206.169"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/ayaangrover.json b/domains/ayaangrover.json
index 76979c0c2..545053a65 100644
--- a/domains/ayaangrover.json
+++ b/domains/ayaangrover.json
@@ -4,7 +4,7 @@
"owner": {
"username": "ayaangrover",
"email": "ayaangrover@gmail.com",
- "twitter": "@grover_ayaan"
+ "twitter": "grover_ayaan"
},
"record": {
"CNAME": "ayaangrover.github.io"
diff --git a/domains/aynonyme.json b/domains/aynonyme.json
new file mode 100644
index 000000000..a7e2709de
--- /dev/null
+++ b/domains/aynonyme.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/AYn0nyme/ayn0nyme.github.io",
+ "owner": {
+ "username": "AYn0nyme",
+ "email": "aynonyme@proton.me"
+ },
+ "record": {
+ "A": ["93.95.117.183"]
+ }
+}
diff --git a/domains/badnguy.json b/domains/badnguy.json
new file mode 100644
index 000000000..a2b292f48
--- /dev/null
+++ b/domains/badnguy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nguyenbaduy011",
+ "email": "nguyenbaduy011@gmail.com"
+ },
+ "record": {
+ "CNAME": "nguyenbaduy011.github.io"
+ }
+}
diff --git a/domains/base-swag.json b/domains/base-swag.json
new file mode 100644
index 000000000..8a4b322eb
--- /dev/null
+++ b/domains/base-swag.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Base-Swag",
+ "email": "officialnamefier@gmail.com"
+ },
+ "record": {
+ "CNAME": "base-swag.github.io"
+ }
+}
diff --git a/domains/basil.json b/domains/basil.json
index bc0a52de9..a70021fcb 100644
--- a/domains/basil.json
+++ b/domains/basil.json
@@ -7,6 +7,6 @@
"twitter": "basilicous"
},
"record": {
- "CNAME": "LowSpeCorgi.github.io"
+ "CNAME": "lowspecorgi.github.io"
}
}
diff --git a/domains/bennett1412.json b/domains/bennett1412.json
index 05d1c37d4..2650c1326 100644
--- a/domains/bennett1412.json
+++ b/domains/bennett1412.json
@@ -4,7 +4,7 @@
"owner": {
"username": "bennett1412",
"email": "bennettmadavana@gmail.com",
- "twitter": "@MadavanaB"
+ "twitter": "MadavanaB"
},
"record": {
"CNAME": "bennett1412.github.io"
diff --git a/domains/berzcodetechnologies.json b/domains/berzcodetechnologies.json
index cd0f090d3..533a90e06 100644
--- a/domains/berzcodetechnologies.json
+++ b/domains/berzcodetechnologies.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "BerzCode",
+ "username": "sxurabh",
"email": "saurabhkirve@gmail.com"
},
"record": {
diff --git a/domains/berzerk.json b/domains/berzerk.json
index cd0f090d3..533a90e06 100644
--- a/domains/berzerk.json
+++ b/domains/berzerk.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "BerzCode",
+ "username": "sxurabh",
"email": "saurabhkirve@gmail.com"
},
"record": {
diff --git a/domains/betaprj.akk1to.json b/domains/betaprj.akk1to.json
new file mode 100644
index 000000000..dca0cbf18
--- /dev/null
+++ b/domains/betaprj.akk1to.json
@@ -0,0 +1,12 @@
+{
+ "description": "This website is for my personal project hosting XD (let it on rq)",
+ "repo": "https://github.com/akk1to/betaprj.github.io",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/bhadra.json b/domains/bhadra.json
index b579dc80b..fcbb70368 100644
--- a/domains/bhadra.json
+++ b/domains/bhadra.json
@@ -6,6 +6,6 @@
"email": "tomjerryparu@gmail.com"
},
"record": {
- "CNAME": "BhadraJayakumarSandhya.github.io"
+ "CNAME": "bhadrajayakumarsandhya.github.io"
}
}
diff --git a/domains/bhavesh-acquaintsoft.json b/domains/bhavesh-acquaintsoft.json
index ae0eebc6a..4c0f06cb9 100644
--- a/domains/bhavesh-acquaintsoft.json
+++ b/domains/bhavesh-acquaintsoft.json
@@ -2,8 +2,7 @@
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/bhavesh-acquaintsoft/bhavesh-acquaintsoft.github.io",
"owner": {
- "username": "bhavesh-acquaintsoft",
- "email": ""
+ "username": "bhavesh-acquaintsoft"
},
"record": {
"CNAME": "bhavesh-acquaintsoft.github.io"
diff --git a/domains/bhavesh-p-patel.json b/domains/bhavesh-p-patel.json
index 9c440d847..493bdba07 100644
--- a/domains/bhavesh-p-patel.json
+++ b/domains/bhavesh-p-patel.json
@@ -2,10 +2,9 @@
"description": "My new website",
"repo": "https://github.com/Bhavesh-p-Patel/Bhavesh-p-Patel.github.io",
"owner": {
- "username": "Bhavesh-p-Patel",
- "email": ""
+ "username": "Bhavesh-p-Patel"
},
"record": {
- "CNAME": "Bhavesh-p-Patel.github.io"
+ "CNAME": "bhavesh-p-patel.github.io"
}
}
diff --git a/domains/bhumkah-patel.json b/domains/bhumkah-patel.json
index c05371862..8d0c1d7e9 100644
--- a/domains/bhumkah-patel.json
+++ b/domains/bhumkah-patel.json
@@ -2,8 +2,7 @@
"description": "bhumika patel.",
"repo": "https://github.com/bhumkah-patel/bhumkah-patel.github.io",
"owner": {
- "username": "bhumkah-patel",
- "email": ""
+ "username": "bhumkah-patel"
},
"record": {
"CNAME": "bhumkah-patel.github.io"
diff --git a/domains/bill.json b/domains/bill.json
index e07f5ef3a..28f9a08c9 100644
--- a/domains/bill.json
+++ b/domains/bill.json
@@ -7,6 +7,6 @@
"twitter": "BillWen14"
},
"record": {
- "CNAME": "CMBill.github.io"
+ "CNAME": "cmbill.github.io"
}
}
diff --git a/domains/bin.sono.json b/domains/bin.sono.json
deleted file mode 100644
index d3b4307bf..000000000
--- a/domains/bin.sono.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "email": "julianwolf2013@outlook.de",
- "discord": "1222250424309121145"
- },
- "record": {
- "A": ["69.197.135.202"]
- }
-}
diff --git a/domains/binh.json b/domains/binh.json
new file mode 100644
index 000000000..769861fa6
--- /dev/null
+++ b/domains/binh.json
@@ -0,0 +1,11 @@
+{
+ "description": "Binh Pham's Personal Website",
+ "repo": "https://github.com/pham-tuan-binh",
+ "owner": {
+ "username": "pham-tuan-binh",
+ "email": "binhpham@binhph.am"
+ },
+ "record": {
+ "URL": "https://www.binhph.am"
+ }
+}
diff --git a/domains/bio.ahmedtohamy.json b/domains/bio.ahmedtohamy.json
new file mode 100644
index 000000000..44fc48511
--- /dev/null
+++ b/domains/bio.ahmedtohamy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ahmedtohamy1",
+ "email": "1ahmed.tohamy@gmail.com"
+ },
+ "record": {
+ "CNAME": "ahmedtohamy1.github.io"
+ }
+}
diff --git a/domains/bipin-bheda.json b/domains/bipin-bheda.json
index 6df4dd35d..fb79c29cf 100644
--- a/domains/bipin-bheda.json
+++ b/domains/bipin-bheda.json
@@ -2,8 +2,7 @@
"description": "Bipin Bheda Profile.",
"repo": "https://github.com/bipin-bheda/bipin-bheda.github.io",
"owner": {
- "username": "bipin-bheda",
- "email": ""
+ "username": "bipin-bheda"
},
"record": {
"CNAME": "bipin-bheda.github.io"
diff --git a/domains/blacsheep.json b/domains/blacsheep.json
new file mode 100644
index 000000000..7d2f86b7b
--- /dev/null
+++ b/domains/blacsheep.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "blacsheep",
+ "email": "lanzou1.0@gmail.com"
+ },
+ "record": {
+ "CNAME": "blacsheep.github.io"
+ }
+}
diff --git a/domains/bleemis42.json b/domains/bleemis42.json
new file mode 100644
index 000000000..b76c1ad1b
--- /dev/null
+++ b/domains/bleemis42.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "BleemIs42",
+ "description": "BleemIs42.is-a.dev",
+ "email": "BleemIs42@gmail.com"
+ },
+ "record": {
+ "CNAME": "BleemIs42.github.io"
+ }
+}
diff --git a/domains/blog.aayushsiwa.json b/domains/blog.aayushsiwa.json
new file mode 100644
index 000000000..1ed0096bf
--- /dev/null
+++ b/domains/blog.aayushsiwa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aayushsiwa",
+ "email": "22052177@kiit.ac.in"
+ },
+ "record": {
+ "CNAME": "blog-aayushsiwa.pages.dev"
+ }
+}
diff --git a/domains/blog.anirbaaaan.json b/domains/blog.anirbaaaan.json
new file mode 100644
index 000000000..336288c99
--- /dev/null
+++ b/domains/blog.anirbaaaan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anirbaaaan183",
+ "email": "anirbanrc@proton.me"
+ },
+ "record": {
+ "CNAME": "anirbaaaan183.github.io"
+ }
+}
diff --git a/domains/blog.shoyeb.json b/domains/blog.shoyeb.json
new file mode 100644
index 000000000..640f68ad0
--- /dev/null
+++ b/domains/blog.shoyeb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mrtemp70",
+ "email": "mrtemp70@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrtemp70.github.io"
+ }
+}
diff --git a/domains/blog.syntaxloopers.json b/domains/blog.syntaxloopers.json
deleted file mode 100644
index 726befd50..000000000
--- a/domains/blog.syntaxloopers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": ["129.213.151.29"]
- }
-}
diff --git a/domains/blog.uvw.json b/domains/blog.uvw.json
deleted file mode 100644
index c7e27f95e..000000000
--- a/domains/blog.uvw.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "The-Intruder",
- "email": "ruj1nuvp8@mozmail.com"
- },
- "record": {
- "A": ["192.227.173.73"]
- }
-}
diff --git a/domains/blog.vornexx.json b/domains/blog.vornexx.json
index d73de74da..33ffb912c 100644
--- a/domains/blog.vornexx.json
+++ b/domains/blog.vornexx.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "vornex-gh",
+ "username": "vornexx",
"email": "ajay.ramnath8812@gmail.com"
},
"record": {
diff --git a/domains/blueberry.json b/domains/blueberry.json
index 057acd8d4..0fc837d1d 100644
--- a/domains/blueberry.json
+++ b/domains/blueberry.json
@@ -6,6 +6,6 @@
"email": "dangnguyen101191@gmail.com"
},
"record": {
- "CNAME": "NgVGB.github.io"
+ "CNAME": "ngvgb.github.io"
}
}
diff --git a/domains/bnfone.json b/domains/bnfone.json
new file mode 100644
index 000000000..61d6e350d
--- /dev/null
+++ b/domains/bnfone.json
@@ -0,0 +1,14 @@
+{
+ "description": "Personal Website for bnfone's Homelab (sadly with dynamic IPv4, which is why I need Cloudflare Nameservers).",
+ "repo": "https://github.com/6nf0n3/is-a-dev_register",
+ "owner": {
+ "username": "bnfone",
+ "email": "is-a-dev-registration.zbden@simplelogin.com"
+ },
+ "record": {
+ "NS": [
+ "desiree.ns.cloudflare.com",
+ "mcgrory.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/bot.creeperita104.json b/domains/bot.creeperita104.json
deleted file mode 100644
index ef85138da..000000000
--- a/domains/bot.creeperita104.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "creeperita09",
-
- "email": "creeperita.09@gmail.com"
- },
- "record": {
- "CNAME": "icahomesvr2022.freeddns.org"
- }
-}
diff --git a/domains/bot.esb.json b/domains/bot.esb.json
deleted file mode 100644
index 8719e4cac..000000000
--- a/domains/bot.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "email": "149485703+EducatedSuddenBucket@users.noreply.github.com",
- "discord": "1167825360151380032"
- },
- "record": {
- "A": ["69.197.135.203"]
- }
-}
diff --git a/domains/bot.json b/domains/bot.json
new file mode 100644
index 000000000..f4251255c
--- /dev/null
+++ b/domains/bot.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "tanmoythebot"
+ },
+ "record": {
+ "CNAME": "tanmoythebot.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/box.json b/domains/box.json
index a0b8b6f4f..ab5d3fefd 100644
--- a/domains/box.json
+++ b/domains/box.json
@@ -7,6 +7,6 @@
"discord": "Default Box#8900"
},
"record": {
- "CNAME": "Default-Box.github.io"
+ "CNAME": "default-box.github.io"
}
}
diff --git a/domains/bracketproto.json b/domains/bracketproto.json
index ca4192f3a..6862e76c7 100644
--- a/domains/bracketproto.json
+++ b/domains/bracketproto.json
@@ -1,6 +1,5 @@
{
"owner": {
- "email": "not specified, refer to discord.",
"username": "not specified, refer to discord.",
"discord": "oxmc7769"
},
diff --git a/domains/bteamapp.json b/domains/bteamapp.json
new file mode 100644
index 000000000..a71f767a9
--- /dev/null
+++ b/domains/bteamapp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/bulletboy.json b/domains/bulletboy.json
index 1a66ae38e..55351abb5 100644
--- a/domains/bulletboy.json
+++ b/domains/bulletboy.json
@@ -5,6 +5,6 @@
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G9oEk7CdABSXPTrtniX-JVzXC_M8Ck8N6lcPx6MEEciAoH7DKPHLPkzEFpkNwKO6PacaHGokIEjxJwCyB7M9MiqOU7qtrFh5vQzqPuaTgKMhKE_HGit1ygWe344_R9Ps1JMM7lH-zYq23oiVC57wcxCZ3K32OaTthIC-2qlTpADGruCWdPX9oTL2bJ2ExXhzBkf3i92w0H4N2Qpf2F6u2phMFrSrf7fFemilgwI0YpA46Tn5zPEs3HnpSWBCeysxG6StzteKpvWh8KONqgFg3ApzDux6IzuzPUQ9Yt672miodCFGmvvygL65IH6O7bA3nmoIEf5ogCohTcaia78RaQ.iznvzpLQ_UYA25UWaS1Xtw.odg3WjLAdhjpYNzZ9Yc1qxH4ZzFMbLR7XVkDMvBDPkcTryoADz0n6W60uxecwALZaBqRmncIxGB-a-HQ_cIW7S2VjYyyZixVIec0BSbmZDE.2mkl-CEdAGkZq62jfjw7Ag"
},
"record": {
- "CNAME": "bulletboy-coder.github.io"
+ "NS": ["ashton.ns.cloudflare.com", "uma.ns.cloudflare.com"]
}
}
diff --git a/domains/bxqrn.json b/domains/bxqrn.json
new file mode 100644
index 000000000..ea5dd30e3
--- /dev/null
+++ b/domains/bxqrn.json
@@ -0,0 +1,12 @@
+{
+ "domain": "bxqrn.is-a.dev",
+ "subdomain": "bxqrn",
+ "owner": {
+ "repo": "https://github.com/bxqrn/bxqrn.github.io",
+ "email": "flqmze@gmail.com",
+ "username": "bxqrn"
+ },
+ "record": {
+ "CNAME": "bxqrn.github.io"
+ }
+}
diff --git a/domains/c.json b/domains/c.json
index 8fdc0ccc6..bad8300d4 100644
--- a/domains/c.json
+++ b/domains/c.json
@@ -1,8 +1,7 @@
{
"owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
+ "username": "orangci",
+ "discord": "orangc"
},
"record": {
"NS": ["nucum.ns.cloudflare.com", "tate.ns.cloudflare.com"]
diff --git a/domains/calculator.notaperson535.json b/domains/calculator.notaperson535.json
index 6ac8d89c9..c52edad8c 100644
--- a/domains/calculator.notaperson535.json
+++ b/domains/calculator.notaperson535.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/cam.json b/domains/cam.json
index 4974e5ec1..63912f8a7 100644
--- a/domains/cam.json
+++ b/domains/cam.json
@@ -7,9 +7,7 @@
},
"record": {
"A": ["75.2.60.5"],
-
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/carmelo.json b/domains/carmelo.json
index f43014bbf..d2c332114 100644
--- a/domains/carmelo.json
+++ b/domains/carmelo.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/2dvisio/2dvisio.github.io",
"owner": {
"username": "2dvisio",
- "email": "[name.lastname]@gmail.com",
"twitter": "2dvisio"
},
"record": {
diff --git a/domains/cat.json b/domains/cat.json
index 1a06bbbaf..0ab726729 100644
--- a/domains/cat.json
+++ b/domains/cat.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "yunexiz.github.io"
diff --git a/domains/catrin.json b/domains/catrin.json
index 778e58e45..32d3ba1bd 100644
--- a/domains/catrin.json
+++ b/domains/catrin.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "winter7eaf",
+ "username": "catrinlam",
"email": "winter.leafie@gmail.com"
},
"record": {
- "CNAME": "winter7eaf.github.io"
+ "CNAME": "catrinlam.github.io"
}
}
diff --git a/domains/cats.json b/domains/cats.json
index c0cb32f1d..7658dd895 100644
--- a/domains/cats.json
+++ b/domains/cats.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "cat-images.pages.dev"
diff --git a/domains/cdn.esb.json b/domains/cdn.esb.json
deleted file mode 100644
index 64dce2b97..000000000
--- a/domains/cdn.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "email": "educatedsuddenbucket@gmail.com"
- },
- "record": {
- "A": ["34.120.54.55"],
- "AAAA": ["2600:1901:0:6d85::"]
- }
-}
diff --git a/domains/cdn.pele.json b/domains/cdn.pele.json
new file mode 100644
index 000000000..eceae0d10
--- /dev/null
+++ b/domains/cdn.pele.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Pele12324",
+ "email": "pele.puric@gmail.com",
+ "discord": "483261654818226186"
+ },
+ "record": {
+ "A": ["38.242.242.224"]
+ }
+}
diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json
index 7c7b63c69..3a29218f0 100644
--- a/domains/cdn.semant.json
+++ b/domains/cdn.semant.json
@@ -1,7 +1,7 @@
{
"description": "My static database",
"owner": {
- "username": "s3mant",
+ "username": "ihacksemant",
"email": "contact@semant.is-a.dev"
},
"record": {
diff --git a/domains/cdn.winbo.json b/domains/cdn.winbo.json
new file mode 100644
index 000000000..d2086cfc7
--- /dev/null
+++ b/domains/cdn.winbo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "winbo-yml-exe",
+ "email": "winbo-yml-exe@outlook.com"
+ },
+ "record": {
+ "CNAME": "winbo-cdn.github.io"
+ }
+}
diff --git a/domains/centi.json b/domains/centi.json
index 9ead9d3e7..4f33e4866 100644
--- a/domains/centi.json
+++ b/domains/centi.json
@@ -7,6 +7,6 @@
"twitter": "Centifn"
},
"record": {
- "CNAME": "nCenti.github.io"
+ "CNAME": "ncenti.github.io"
}
}
diff --git a/domains/chadee.json b/domains/chadee.json
index b6f7cd675..2da5aeda2 100644
--- a/domains/chadee.json
+++ b/domains/chadee.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/chadeeeee/chadee-site",
"owner": {
"username": "chadeeeee",
- "telegram": "@chadeeeeeeeeee",
+ "telegram": "chadeeeeeeeeee",
"email": "esurginet2011@gmail.com"
},
"record": {
diff --git a/domains/chamo.json b/domains/chamo.json
new file mode 100644
index 000000000..e943113de
--- /dev/null
+++ b/domains/chamo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chamzz99",
+ "email": "chamzz.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "chamzz99.github.io"
+ }
+}
diff --git a/domains/chat.alvin.json b/domains/chat.alvin.json
new file mode 100644
index 000000000..810c13865
--- /dev/null
+++ b/domains/chat.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/chaubey.json b/domains/chaubey.json
new file mode 100644
index 000000000..d5e3be97d
--- /dev/null
+++ b/domains/chaubey.json
@@ -0,0 +1,13 @@
+{
+ "description": "Ankit Chaubey's GitHub page",
+ "repo": "https://github.com/ankit-chaubey/ankit-chaubey",
+ "owner": {
+ "username": "ankit-chaubey",
+ "email": "m.ankitchaubey@gmail.com",
+ "telegram": "ankit_chaubey",
+ "github": "ankit-chaubey"
+ },
+ "record": {
+ "CNAME": "ankit-chaubey.github.io"
+ }
+}
diff --git a/domains/chauhan-pradip.json b/domains/chauhan-pradip.json
index ed7b33387..805a1afe9 100644
--- a/domains/chauhan-pradip.json
+++ b/domains/chauhan-pradip.json
@@ -2,8 +2,7 @@
"description": "My website",
"repo": "https://github.com/chauhan-pradip/chauhan-pradip.github.io",
"owner": {
- "username": "chauhan-pradip",
- "email": ""
+ "username": "chauhan-pradip"
},
"record": {
"CNAME": "chauhan-pradip.github.io"
diff --git a/domains/chess.bob16077.json b/domains/chess.bob16077.json
index f501a974d..79a934701 100644
--- a/domains/chess.bob16077.json
+++ b/domains/chess.bob16077.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "bob16077",
- "discord": "bob16077777",
- "email": ""
+ "discord": "bob16077777"
},
"record": {
"URL": "https://chesscord.com"
diff --git a/domains/chez1s.json b/domains/chez1s.json
new file mode 100644
index 000000000..b60527bfe
--- /dev/null
+++ b/domains/chez1s.json
@@ -0,0 +1,11 @@
+{
+ "description": "chez1s's is-a-dev domain",
+ "repo": "https://github.com/TRIBUI106",
+ "owner": {
+ "username": "TRIBUI106",
+ "discord": "1250225950268850312"
+ },
+ "record": {
+ "URL": "https://yeume-enterprise.edu.vn"
+ }
+}
diff --git a/domains/chintan-prajapati.json b/domains/chintan-prajapati.json
index 6c109f5cf..66b26b14a 100644
--- a/domains/chintan-prajapati.json
+++ b/domains/chintan-prajapati.json
@@ -2,8 +2,7 @@
"description": "Chintan Profile.",
"repo": "https://github.com/chintan-prajapati/chintan-prajapati.github.io",
"owner": {
- "username": "chintan-prajapati",
- "email": ""
+ "username": "chintan-prajapati"
},
"record": {
"CNAME": "chintan-prajapati.github.io"
diff --git a/domains/chirag-adhvaryu.json b/domains/chirag-adhvaryu.json
index fe05e3506..ebff0ef7d 100644
--- a/domains/chirag-adhvaryu.json
+++ b/domains/chirag-adhvaryu.json
@@ -2,8 +2,7 @@
"description": "This website is a link to my personal developer portfolio.",
"repo": "https://github.com/Chirag-Adhvaryu/chirag-adhvaryu.github.io",
"owner": {
- "username": "Chirag-Adhvaryu",
- "email": ""
+ "username": "Chirag-Adhvaryu"
},
"record": {
"CNAME": "chirag-adhvaryu.github.io"
diff --git a/domains/chirag-parikh.json b/domains/chirag-parikh.json
index 6fdb7ee8e..bafdee025 100644
--- a/domains/chirag-parikh.json
+++ b/domains/chirag-parikh.json
@@ -2,8 +2,7 @@
"description": "This is person site",
"repo": "https://github.com/chirag-parikh/chirag-parikh.github.io",
"owner": {
- "username": "chirag-parikh",
- "email": ""
+ "username": "chirag-parikh"
},
"record": {
"CNAME": "chirag-parikh.github.io"
diff --git a/domains/chrisbase12.json b/domains/chrisbase12.json
new file mode 100644
index 000000000..d0f8cff65
--- /dev/null
+++ b/domains/chrisbase12.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "OverCharred"
+ },
+ "record": {
+ "CNAME": "chris-base12-portfolio.vercel.app"
+ }
+}
diff --git a/domains/chromesec.json b/domains/chromesec.json
new file mode 100644
index 000000000..5554d73f5
--- /dev/null
+++ b/domains/chromesec.json
@@ -0,0 +1,12 @@
+{
+ "description": "Website for ChromeSEC a guide for admins to secure their chromeOS devices",
+ "repo": "https://github.com/CaenJones/ChromeSEC",
+ "owner": {
+ "username": "CaenJones",
+ "email": "cj@caenjones.com",
+ "twitter": ""
+ },
+ "record": {
+ "URL": "https://caenjones.is-a.dev/ChromeSEC"
+ }
+}
diff --git a/domains/chubol.json b/domains/chubol.json
new file mode 100644
index 000000000..902c76331
--- /dev/null
+++ b/domains/chubol.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chubol",
+ "email": "husks@tuta.io"
+ },
+ "record": {
+ "CNAME": "chubol.github.io"
+ }
+}
diff --git a/domains/chuyentinorz.json b/domains/chuyentinorz.json
new file mode 100644
index 000000000..1f03fe59e
--- /dev/null
+++ b/domains/chuyentinorz.json
@@ -0,0 +1,18 @@
+{
+ "description": "This is the landing page of ChuyenTinORZ",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "A": [
+ "216.198.79.65"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/ciaobot.json b/domains/ciaobot.json
index e7441dcf6..5d3df2331 100644
--- a/domains/ciaobot.json
+++ b/domains/ciaobot.json
@@ -6,6 +6,9 @@
"record": {
"A": ["144.91.115.195"],
"MX": ["mail.ciaohost.tech"],
- "TXT": ["v=spf1 mx a -all", "google-site-verification=ESHkpD4wk4-a2cqONn73cRaELmis2IzdBRB3Fw-t1Dw"]
+ "TXT": [
+ "v=spf1 mx a -all",
+ "google-site-verification=ESHkpD4wk4-a2cqONn73cRaELmis2IzdBRB3Fw-t1Dw"
+ ]
}
}
diff --git a/domains/clayza.json b/domains/clayza.json
new file mode 100644
index 000000000..5f2975dfe
--- /dev/null
+++ b/domains/clayza.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/ClayzaAubert/clayzaaubert.github.io",
+ "owner": {
+ "username": "ClayzaAubert",
+ "email": "clayzasc@gmail.com"
+ },
+ "record": {
+ "CNAME": "clayzaaubert.github.io"
+ }
+}
diff --git a/domains/cloudy1337.json b/domains/cloudy1337.json
new file mode 100644
index 000000000..2c130551d
--- /dev/null
+++ b/domains/cloudy1337.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "OfficialSmojo17",
+ "email": "smmojo17@gmail.com",
+ "discord": "mapperdotexe"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
+}
diff --git a/domains/codelabworks.json b/domains/codelabworks.json
new file mode 100644
index 000000000..09bf2c3d8
--- /dev/null
+++ b/domains/codelabworks.json
@@ -0,0 +1,13 @@
+{
+ "repo": "https://github.com/shadowgaming-backup/register",
+ "owner": {
+ "email": "shadowgaming-backup@proton.me",
+ "username": "shadowgaming-backup"
+ },
+ "record": {
+ "NS": [
+ "mina.ns.cloudflare.com",
+ "harlan.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/codeserver.sono.json b/domains/codeserver.sono.json
deleted file mode 100644
index d3b4307bf..000000000
--- a/domains/codeserver.sono.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "email": "julianwolf2013@outlook.de",
- "discord": "1222250424309121145"
- },
- "record": {
- "A": ["69.197.135.202"]
- }
-}
diff --git a/domains/codesuthar.json b/domains/codesuthar.json
index 1c010dc13..dde7f4542 100644
--- a/domains/codesuthar.json
+++ b/domains/codesuthar.json
@@ -4,11 +4,9 @@
"email": "AdityaSuthar13@outlook.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.111.153",
- "185.199.110.153"
+ "NS": [
+ "dexter.ns.cloudflare.com",
+ "fay.ns.cloudflare.com"
]
}
}
diff --git a/domains/community.syntaxloopers.json b/domains/community.syntaxloopers.json
deleted file mode 100644
index 726befd50..000000000
--- a/domains/community.syntaxloopers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": ["129.213.151.29"]
- }
-}
diff --git a/domains/computerblade.json b/domains/computerblade.json
index 600a83974..20aab1e9e 100644
--- a/domains/computerblade.json
+++ b/domains/computerblade.json
@@ -1,10 +1,8 @@
-{
- "owner": {
- "username": "computerblade-official",
- "email": "ayproductionsteam@gmail.com",
- "discord": "1032603689069846549"
- },
- "record": {
- "CNAME": "computerblade-official.github.io"
- }
-}
+{
+ "owner": {
+ "username": "computerblade-official"
+ },
+ "record": {
+ "CNAME": "computerblade.vercel.app"
+ }
+}
diff --git a/domains/congnv.json b/domains/congnv.json
new file mode 100644
index 000000000..ff3ebedc8
--- /dev/null
+++ b/domains/congnv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "congnv0330",
+ "email": "congnv3030@gmail.com"
+ },
+ "record": {
+ "CNAME": "congnv0330.github.io"
+ }
+}
diff --git a/domains/corentinrenard.com.json b/domains/corentinrenard.com.json
deleted file mode 100644
index 97d21c150..000000000
--- a/domains/corentinrenard.com.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Aqu1tain",
- "discord": "573841978442383361",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.o8ipRbOi_L_u7u39LI9GujSmXnPercd-1SIbYzc65oe09pY5AFEOWu-C09pwW1QeRrA97Ma-6A8sd0XQCMpdyEbC_0SssuHiDYkmdEbTk9_HZW5qQ0OkaYKFeS0C7sViL6lBIaGODl0XeE-ZCt85_cEzuf3gL6GEOtthsTrHZb-kuo9JwnsjCQVe4_YrAPb-NUulPGtpNEPJS5lo3OTFyjpN_kcCwsz1mKP-nolGKHjSfHONKruw8OBvyzDcRW4hDvuTYY6tTqnGzfSUc4b0Z-VXLtQ9_RsqrkgFGxrladIT4orADav6SIAOuHF-9_NDSQWJP7oD_dy0yCR8Mv8PAQ.9cI2DSXsh5hSYoQT1jXjTw.3m-R9wN3cbZF0ZY2HlwFCBFfmNDWsBjdzIXrgjc0TaAzqRC7nxqpl8Ol6_hIiL7VCwkbKOAl_g6HEVczaFNa3Q8aS6XlLLJIAab0TsMyHxg.bpfs-bKjE86N4mP-Lbgmug"
- },
- "record": {
- "CNAME": "www.corentinrenard.com"
- }
-}
diff --git a/domains/count.json b/domains/count.json
new file mode 100644
index 000000000..3f117ee01
--- /dev/null
+++ b/domains/count.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "theveryheavy",
+ "email": "",
+ "discord": "1266113644643614803",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.i4iZGukPgos1-y71KygQ_1d4ZPvnuuHgs8csldNT2FxY569U2isi4aCp5AheSznzqXWmPGTo38NmaFn1MelIVOzeFxTz8BHee9bKBcOQ06oxhKLavCiCykNWCjKyfYWHZre251Iv-zsnUgwO0OUbEjToo9PB6YRJ2LkOe1t5ZASxeMeA7QJziuVU5Cv7GWUbg-pZuWODrV4DTW8H6MdRzKFLY4WpxY5jUlnVsWiK6kZG_Wu2z1trzYplfN9T2lN1K1mNIXYgG_CMqNG1jXPQysoKqkhxjr4ItzFVdpAVso0LTmyhYg92ZQatP2SeD5gqZVVxqUKAj7lF6szfnttQbA.uxd1RFhSCU6cdViuiUODvg.NmpM1UKZ5CQ0qoVMplEzRW6yDCp1HsCQVXBQyCTZ3rvaCdPHuzKGnf3IQwMi801cx27D0o8wCiaF0J77whNrnkcMI9VBhajfhc8BrntWu1E.i05R_R9RRIO7RtW-elXkzA"
+ },
+ "record": {
+ "CNAME": "theveryheavy.github.io"
+ }
+}
diff --git a/domains/cr1ket.json b/domains/cr1ket.json
index 0027bc062..5127db935 100644
--- a/domains/cr1ket.json
+++ b/domains/cr1ket.json
@@ -7,6 +7,6 @@
"twitter": "noahmk17"
},
"record": {
- "CNAME": "NoahMK21100.github.io"
+ "CNAME": "noahmk21100.github.io"
}
}
diff --git a/domains/creeperita104.json b/domains/creeperita104.json
index 66df526f1..1af8f40d5 100644
--- a/domains/creeperita104.json
+++ b/domains/creeperita104.json
@@ -4,6 +4,6 @@
"email": "creeperita.09@gmail.com"
},
"record": {
- "CNAME": "icahomesvr2022.freeddns.org"
- }
+ "NS":["kyrie.ns.cloudflare.com","vida.ns.cloudflare.com"]
+ }
}
diff --git a/domains/crescentmoon.json b/domains/crescentmoon.json
new file mode 100644
index 000000000..dfcff68f9
--- /dev/null
+++ b/domains/crescentmoon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CrescentMoon2506",
+ "email": "crescentmoon2506@gmail.com"
+ },
+ "record": {
+ "CNAME": "crescentmoon2506.github.io"
+ }
+}
diff --git a/domains/ctrlraul.json b/domains/ctrlraul.json
index ec47623e1..9619a9fe6 100644
--- a/domains/ctrlraul.json
+++ b/domains/ctrlraul.json
@@ -4,7 +4,7 @@
"owner": {
"username": "ctrlraul",
"email": "mailctrlraul@gmail.com",
- "twitter": "@CtrlRaul"
+ "twitter": "CtrlRaul"
},
"record": {
"CNAME": "ctrlraul.github.io"
diff --git a/domains/cupglass.json b/domains/cupglass.json
deleted file mode 100644
index ef7e7363e..000000000
--- a/domains/cupglass.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "My base website. Very epik tbh 💥💥",
- "repo": "https://github.com/cupglassdev/cupglassdev.github.io",
- "owner": {
- "username": "cupglassdev",
- "twitter": "https://x.com/cupglassdev",
- "lahelu": "https://lahelu.com/user/cupglassdev",
- "discord": "cupglassdev",
- "note": "i dont have much time to see my discord app (because its almost 12 am) to take my user id, but since discord has changed their username to pomelo, that is my discord account"
- },
- "record": {
- "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"]
- }
-}
diff --git a/domains/cupglassdev.json b/domains/cupglassdev.json
deleted file mode 100644
index 0ff7a0c31..000000000
--- a/domains/cupglassdev.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "Redirect to my epik website, omaygottt 😵💫",
- "repo": "https://github.com/cupglassdev/cupglassdev.github.io",
- "owner": {
- "username": "cupglassdev",
- "twitter": "https://x.com/cupglassdev",
- "lahelu": "https://lahelu.com/user/cupglassdev",
- "discord": "cupglassdev",
- "note": "i dont have much time to see my discord app (because its almost 12 am) to take my user id, but since discord has changed their username to pomelo, that is my discord account"
- },
- "record": {
- "URL": "https://cupglass.is-a.dev"
- }
-}
diff --git a/domains/cupglasspi.json b/domains/cupglasspi.json
deleted file mode 100644
index f320e3031..000000000
--- a/domains/cupglasspi.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "t a i l s c a l e tunnel for my pi, not always active tho",
- "owner": {
- "username": "cupglassdev",
- "twitter": "cupglassdev",
- "lahelu": "https://lahelu.com/user/cupglassdev",
- "discord": "cupglassdev"
- },
- "record": {
- "CNAME": "pi.neko-velociraptor.ts.net"
- }
-}
diff --git a/domains/cursedscrubdaddygang.json b/domains/cursedscrubdaddygang.json
new file mode 100644
index 000000000..e54f3c87a
--- /dev/null
+++ b/domains/cursedscrubdaddygang.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "repo": "https://github.com/QuantumMapleQC/quantummapleqc.github.io",
+ "username": "quantummapleqc",
+ "discord": "herricksom"
+ },
+ "record": {
+ "CNAME": "quantummapleqc.github.io"
+ }
+}
diff --git a/domains/cvrvmebj6qss.bteamapp.json b/domains/cvrvmebj6qss.bteamapp.json
new file mode 100644
index 000000000..5aff5ef1a
--- /dev/null
+++ b/domains/cvrvmebj6qss.bteamapp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "gv-g66qqa7lomqvs2.dv.googlehosted.com"
+ }
+}
diff --git a/domains/cwerl.json b/domains/cwerl.json
new file mode 100644
index 000000000..d22a444c4
--- /dev/null
+++ b/domains/cwerl.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "cwerl"
+ },
+ "record": {
+ "CNAME": "cwerl.github.io"
+ }
+}
diff --git a/domains/daim.json b/domains/daim.json
new file mode 100644
index 000000000..d279185ab
--- /dev/null
+++ b/domains/daim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sYnceDez41",
+ "email":"zdaim78@gmail.com"
+ },
+ "record": {
+ "CNAME": "devdaim.vercel.app"
+ }
+}
diff --git a/domains/dainfloop.json b/domains/dainfloop.json
index c918c75a7..dc9b403cb 100644
--- a/domains/dainfloop.json
+++ b/domains/dainfloop.json
@@ -1,22 +1,22 @@
{
- "owner": {
- "username": "DaInfLoop",
- "email": "backupharoongames100@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "AAAA": [
- "2606:50c0:8000::153",
- "2606:50c0:8001::153",
- "2606:50c0:8002::153",
- "2606:50c0:8003::153"
- ],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all"
- }
+ "owner": {
+ "username": "DaInfLoop",
+ "email": "backupharoongames100@gmail.com"
+ },
+ "record": {
+ "A": [
+ "37.27.51.34"
+ ],
+ "AAAA": [
+ "2a01:4f9:3081:399c::4"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": [
+ "v=spf1 ip4:37.27.51.34 ip6:2a01:4f9:3081:399c::/64 include:spf.improvmx.com ~all",
+ "domain-verification=haroon"
+ ]
+ }
}
diff --git a/domains/daiswap.json b/domains/daiswap.json
index d2de1bc8b..a7f052724 100644
--- a/domains/daiswap.json
+++ b/domains/daiswap.json
@@ -4,7 +4,7 @@
"owner": {
"username": "DaiSwap",
"email": "19644pranavvenkatesh@gmail.com",
- "twitter": "@DaiSwap"
+ "twitter": "DaiSwap"
},
"record": {
"A": ["13.251.96.10"]
diff --git a/domains/dan.json b/domains/dan.json
index 8f7023050..7d436f3e4 100644
--- a/domains/dan.json
+++ b/domains/dan.json
@@ -6,6 +6,6 @@
"email": "dan.field643@gmail.com"
},
"record": {
- "CNAME": "DanField12.github.io"
+ "CNAME": "danfield12.github.io"
}
}
diff --git a/domains/daniel.json b/domains/daniel.json
index 2810eba87..d80aceac1 100644
--- a/domains/daniel.json
+++ b/domains/daniel.json
@@ -6,9 +6,7 @@
},
"record": {
"A": ["34.120.194.28"],
-
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/dankamigos.json b/domains/dankamigos.json
new file mode 100644
index 000000000..13a0d5f7c
--- /dev/null
+++ b/domains/dankamigos.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mokshdk",
+ "email": "anirudhsus001@gmail.com"
+ },
+ "record": {
+ "CNAME": "dankamigos-baapekd9aua9esh2.eastus-01.azurewebsites.net"
+ }
+}
diff --git a/domains/darji-ravi.json b/domains/darji-ravi.json
index ab56415df..3ca740602 100644
--- a/domains/darji-ravi.json
+++ b/domains/darji-ravi.json
@@ -2,8 +2,7 @@
"description": "Ravi Profile.",
"repo": "https://github.com/darji-ravi/darji-ravi.github.io",
"owner": {
- "username": "darji-ravi",
- "email": ""
+ "username": "darji-ravi"
},
"record": {
"CNAME": "darji-ravi.github.io"
diff --git a/domains/dash.bernardonogueira8.json b/domains/dash.bernardonogueira8.json
new file mode 100644
index 000000000..1b5d366c3
--- /dev/null
+++ b/domains/dash.bernardonogueira8.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Samuraiflamesf",
+ "email": "Samuraiflamesf@gmail.com"
+ },
+ "record": {
+ "A": [
+ "100.42.189.124"
+ ]
+ }
+}
diff --git a/domains/dash.pele.json b/domains/dash.pele.json
new file mode 100644
index 000000000..eceae0d10
--- /dev/null
+++ b/domains/dash.pele.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Pele12324",
+ "email": "pele.puric@gmail.com",
+ "discord": "483261654818226186"
+ },
+ "record": {
+ "A": ["38.242.242.224"]
+ }
+}
diff --git a/domains/data.json b/domains/data.json
index b8d2e61c5..708e00ecc 100644
--- a/domains/data.json
+++ b/domains/data.json
@@ -5,5 +5,6 @@
},
"record": {
"CNAME": "is-a.dev"
- }
+ },
+ "proxied": true
}
diff --git a/domains/deadcode.json b/domains/deadcode.json
index 0de06a26c..3f6820198 100644
--- a/domains/deadcode.json
+++ b/domains/deadcode.json
@@ -2,10 +2,10 @@
"owner": {
"username": "RichardKanshen",
"email": "richard@kanshen.click",
- "twitter": "@kanskje0",
+ "twitter": "kanskje0",
"discord": "kanshen.uwu",
"bluesky": "kanshen.click",
- "telegram": "@richardkanskje"
+ "telegram": "richardkanskje"
},
"record": {
"CNAME": "deadcodegames.github.io"
diff --git a/domains/debug.json b/domains/debug.json
index 44572a9ae..5c191ce30 100644
--- a/domains/debug.json
+++ b/domains/debug.json
@@ -1,6 +1,5 @@
{
"description": "Debug.Log's Website",
-
"owner": {
"username": "extremepro999",
"email": "debugdotlog@zohomail.in"
diff --git a/domains/default._domainkey.yxz.json b/domains/default._domainkey.yxz.json
new file mode 100644
index 000000000..db0fb2718
--- /dev/null
+++ b/domains/default._domainkey.yxz.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "yz9551",
+ "email": "",
+ "discord": "yz9551"
+ },
+ "record": {
+ "TXT": [
+ "v=DKIM1; h=sha256; k=rsa; ",
+ "p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkZrPwMQ7rlS6FhIaX5RgqWzKC1RdCB6GmxsdtKVbqGVzQX6WiwFXrgfQ3SqxlZXc1w+YFD7u2NFUahq+wgBnUos9ZwkmezRjq/toAEWuEV7ATtQDuWZNE6O9ab37I36rXT4pmJHZq5BGgXAY8ILKHQ6F1ZNWw7+nzCggeiGezTG8beMjnN3jy+PMafC5Q1cUZXYHme/F301Otj",
+ "H4U6OpMzG4pWCFH3mXK14MeSff0m4ltcB5LkenlvANWm5nU+W+hssBL58iBKdFYIAz7rYoJs5OM2JO8wZZ6NFrWxtEYSjbMasq3mG4BkSP8+o0/Cp/UTARvp6XoG+T6V1E6OPyTwIDAQAB"
+ ]
+ }
+}
diff --git a/domains/dem0n.json b/domains/dem0n.json
new file mode 100644
index 000000000..6831a30e7
--- /dev/null
+++ b/domains/dem0n.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "probablydem0n",
+ "discord": "935272776586129419"
+ },
+ "record": {
+ "CNAME": "probablydem0n.github.io"
+ }
+}
diff --git a/domains/den.json b/domains/den.json
index 2b0b1cd96..b6efc9d4e 100644
--- a/domains/den.json
+++ b/domains/den.json
@@ -2,8 +2,7 @@
"description": "This domain (den.is-a.dev) is used for blogging by Denver",
"owner": {
"username": "DenStudies7700",
- "discord": "ImDenver#7700",
- "email": ""
+ "discord": "ImDenver#7700"
},
"record": {
"CNAME": "hashnode.network"
diff --git a/domains/denver.json b/domains/denver.json
index fcabcb9a6..70fde89b3 100644
--- a/domains/denver.json
+++ b/domains/denver.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/DenStudies7700/DenStudies7700.github.io",
"owner": {
"username": "DenStudies7700",
- "discord": "ImDenver#7700",
- "email": ""
+ "discord": "ImDenver#7700"
},
"record": {
"CNAME": "densite-development-7700.up.railway.app"
diff --git a/domains/devabh.json b/domains/devabh.json
new file mode 100644
index 000000000..d0a2ef59c
--- /dev/null
+++ b/domains/devabh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "devabh96",
+ "email": "",
+ "discord": "760049962544791562",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cj4_MgLnwmfo1F0NcZvbKIKDQ23CcQAIjYT0X3SmU1YAipr02XR4E11TQqZIzlM6hPwbHUbB59OQx_zkcuN9JO2VaTteS_TpZZ8ytvxfdl60QtGhSAD3Q9zm0-oKKAbVEjR-EzEEwpftzw8VwQlQIgiYbXjZibHKp2D3KbKOB3J-C3cl5LBHhMKPFsFj6N12jwFDzrQeDO8mCrTgKX1D3YpiZaVkhMhuKVFwE0V2vXSx-JidQi3yz--KWLsfXZETU8YAVwFsEAroWLcerWOcNPYejvjQ51VMQDqaRz00AkTByNXXWYo1Q4q4wlZJd0wSIoKoK0iuvkPhSacjP6kW4A.yDr4bOjKGS35kiQ-0Tzj5Q.SrpxNDOW7NpFpZmetH-qJMomCelSSw3YTBGL3Vu2AtdYZ1OVQYWk8yhfGU0kVwyB4wAlPIQYaC2UXDqJXrHqSEmcK-P8f0uvKUiwaKHtaEw.Or8kZv4I4r03hoGLMr7MyQ"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/devarnav.json b/domains/devarnav.json
deleted file mode 100644
index eedac49b9..000000000
--- a/domains/devarnav.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "owner": {
- "username": "ArnavBarway",
- "email": "playnav.yt@gmail.com"
- },
-
- "record": {
- "A": [
- "185.199.111.153",
- "185.199.108.153",
- "185.199.110.153",
- "185.199.109.153"
- ],
- "MX": [
- "mx.zoho.in",
- "mx2.zoho.in",
- "mx3.zoho.in"
- ],
- "TXT": "v=spf1 include:zoho.in ~all"
- }
-}
diff --git a/domains/devdaim.json b/domains/devdaim.json
new file mode 100644
index 000000000..d5a26fbd3
--- /dev/null
+++ b/domains/devdaim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sYnceDez41",
+ "email": "daimdev6@gmail.com"
+ },
+ "record": {
+ "A": ["4.247.175.26"]
+ }
+}
diff --git a/domains/devdk.json b/domains/devdk.json
index c525471cb..273fbc32a 100644
--- a/domains/devdk.json
+++ b/domains/devdk.json
@@ -5,6 +5,6 @@
"twitter": "_DevDK"
},
"record": {
- "CNAME": "DeveloperDmitryKolyadin.github.io"
+ "CNAME": "developerdmitrykolyadin.github.io"
}
}
diff --git a/domains/devmatei.json b/domains/devmatei.json
new file mode 100644
index 000000000..587286d93
--- /dev/null
+++ b/domains/devmatei.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DevMatei"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
+}
diff --git a/domains/dharti-mungara.json b/domains/dharti-mungara.json
index 064d27603..23df2bd02 100644
--- a/domains/dharti-mungara.json
+++ b/domains/dharti-mungara.json
@@ -2,8 +2,7 @@
"description": "Dharti mungara Profile.",
"repo": "https://github.com/dharti-mungara/dharti-mungara.github.io",
"owner": {
- "username": "dharti-mungara",
- "email": ""
+ "username": "dharti-mungara"
},
"record": {
"CNAME": "dharti-mungara.github.io"
diff --git a/domains/dhaval-kareliya.json b/domains/dhaval-kareliya.json
index e7e0654c5..9770ff48c 100644
--- a/domains/dhaval-kareliya.json
+++ b/domains/dhaval-kareliya.json
@@ -2,8 +2,7 @@
"description": "This is a personal website",
"repo": "https://github.com/dhaval-kareliya/dhaval-kareliya.github.io",
"owner": {
- "username": "dhaval-kareliya",
- "email": ""
+ "username": "dhaval-kareliya"
},
"record": {
"CNAME": "dhaval-kareliya.github.io"
diff --git a/domains/dhilipan.json b/domains/dhilipan.json
index 1a127b98e..e622280bf 100644
--- a/domains/dhilipan.json
+++ b/domains/dhilipan.json
@@ -1,12 +1,15 @@
{
"owner": {
- "username": "MysticalPvE",
- "discord": "1229782675678826496",
+ "username": "Dhilipan-Git",
+ "discord": "1306595993055268875",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A"
},
"record": {
"A": ["75.2.60.5"],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ "MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"],
+ "TXT": [
+ "sl-verification=wpdcbpaapmqwevjvnaifhpwdvozldi",
+ "v=spf1 include:simplelogin.co ~all"
+ ]
}
}
diff --git a/domains/dhlcgd.json b/domains/dhlcgd.json
new file mode 100644
index 000000000..0f61df0fe
--- /dev/null
+++ b/domains/dhlcgd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dhlcgd",
+ "email": "dhlcgdofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/dimasandriano.json b/domains/dimasandriano.json
index eea2565b3..96fa86c39 100644
--- a/domains/dimasandriano.json
+++ b/domains/dimasandriano.json
@@ -1,12 +1,9 @@
{
- "description": "Portfolio",
- "repo": "https://github.com/dimasandriano/dimasandriano.github.io",
"owner": {
"username": "dimasandriano",
- "email": "dimas.andriano.h@gmail.com",
- "twitter": "dimasandriano_h"
+ "email": "dimas.andriano.h@gmail.com"
},
"record": {
- "CNAME": "dimasandriano.github.io"
+ "CNAME": "dimasandriano.vercel.app"
}
}
diff --git a/domains/dinesh-vaghasia.json b/domains/dinesh-vaghasia.json
index f979258b4..18f00bfb6 100644
--- a/domains/dinesh-vaghasia.json
+++ b/domains/dinesh-vaghasia.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/dinesh-vaghasia/dinesh-vaghasia.github.io",
"owner": {
- "username": "dinesh-vaghasia",
- "email": ""
+ "username": "dinesh-vaghasia"
},
"record": {
"CNAME": "dinesh-vaghasia.github.io"
diff --git a/domains/dipmala-shrimali.json b/domains/dipmala-shrimali.json
index 6c6841a66..9533d583e 100644
--- a/domains/dipmala-shrimali.json
+++ b/domains/dipmala-shrimali.json
@@ -2,8 +2,7 @@
"description": "About Fork",
"repo": "https://github.com/dipmala-shrimali/dipmala-shrimali.github.io",
"owner": {
- "username": "dipmala-shrimali",
- "email": ""
+ "username": "dipmala-shrimali"
},
"record": {
"CNAME": "dipmala-shrimali.github.io"
diff --git a/domains/dirgha-ukani.json b/domains/dirgha-ukani.json
index 78ca848dd..311a4a173 100644
--- a/domains/dirgha-ukani.json
+++ b/domains/dirgha-ukani.json
@@ -2,8 +2,7 @@
"description": "This is personal website",
"repo": "https://github.com/dirgha-ukani/dirgha-ukani.github.io",
"owner": {
- "username": "dirgha-ukani",
- "email": ""
+ "username": "dirgha-ukani"
},
"record": {
"CNAME": "dirgha-ukani.github.io"
diff --git a/domains/diti.json b/domains/diti.json
new file mode 100644
index 000000000..fa95c2b86
--- /dev/null
+++ b/domains/diti.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Pixeler5diti",
+ "email": "ditivasisht@gmail.com"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
+}
diff --git a/domains/divyanshudhruv.json b/domains/divyanshudhruv.json
index ec15dcb29..4e927568d 100644
--- a/domains/divyanshudhruv.json
+++ b/domains/divyanshudhruv.json
@@ -6,6 +6,6 @@
"email": "divyanshudhruv24@gmail.com"
},
"record": {
- "CNAME": "divyanshudhruv.github.io"
+ "CNAME": "divyanshudhruv.netlify.app"
}
}
diff --git a/domains/dkim._domainkey.dhilipan.json b/domains/dkim._domainkey.dhilipan.json
new file mode 100644
index 000000000..b00989914
--- /dev/null
+++ b/domains/dkim._domainkey.dhilipan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Dhilipan-Git",
+ "discord": "1306595993055268875",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A"
+ },
+ "record": {
+ "CNAME": "dkim._domainkey.simplelogin.co"
+ }
+}
diff --git a/domains/dkim02._domainkey.dhilipan.json b/domains/dkim02._domainkey.dhilipan.json
new file mode 100644
index 000000000..ad70d0730
--- /dev/null
+++ b/domains/dkim02._domainkey.dhilipan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Dhilipan-Git",
+ "discord": "1306595993055268875",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A"
+ },
+ "record": {
+ "CNAME": "dkim02._domainkey.simplelogin.co"
+ }
+}
diff --git a/domains/dkim03._domainkey.dhilipan.json b/domains/dkim03._domainkey.dhilipan.json
new file mode 100644
index 000000000..84f05a748
--- /dev/null
+++ b/domains/dkim03._domainkey.dhilipan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Dhilipan-Git",
+ "discord": "1306595993055268875",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WPtn_SlHtmPez8jjftkfl-CgWWn-ZYC-SyRJsyxLt-Gn_aEyTjQCgENyWvEpCzShxRpsqd5Np_gpkW8UM1-1MhIm1LjkGB50Aw_DMZK-gZS5KsWEXG8mclQXpIbcBVzI-HlRtHXicgDs-t7TcdL1qefMiisKwedNEUz9UvBxHFoNuA9E37cNrl5Y5j8Cf2E2x3D7eK2FxA3WvKXaMTRj40pitxwXxOGJqFqiv5QFehiIp_0pwtsjlWXm792LsePHIOKONeFy1p6v7HJgUx3WZKI4-5FADx9XqD3s6pS9jC8gOFqL4zllEE5cLVOz1Fy27tQrMn4B_b7qn5UxO1kBYA.ekzBd4v9e5MKBuUB-08ILg.qLhRJw9HYeu7ifjuRQfOUYdplsU6goAZRwazKk8fnW9FU1N6zxPg_2FjU4yoIki6PHZUrb-I5Bwt8FrX6G-3-M3uBQspwQLb5YdUDU-qJQY.KTelr2g7MJZ-b4qOxnJv2A"
+ },
+ "record": {
+ "CNAME": "dkim03._domainkey.simplelogin.co"
+ }
+}
diff --git a/domains/doantran.json b/domains/doantran.json
new file mode 100644
index 000000000..8c0015644
--- /dev/null
+++ b/domains/doantran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Gressi-177",
+ "email": "vietdoan177@gmail.com"
+ },
+ "record": {
+ "CNAME": "portfolio-viet-doans-projects.vercel.app"
+ }
+}
diff --git a/domains/dog.json b/domains/dog.json
index 1a06bbbaf..0ab726729 100644
--- a/domains/dog.json
+++ b/domains/dog.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "yunexiz.github.io"
diff --git a/domains/dogs.json b/domains/dogs.json
index 42168e22b..0703f69d3 100644
--- a/domains/dogs.json
+++ b/domains/dogs.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "dog-images.pages.dev"
diff --git a/domains/donate.json b/domains/donate.json
new file mode 100644
index 000000000..192ccf751
--- /dev/null
+++ b/domains/donate.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "is-a-dev",
+ "email": "admin@is-a.dev"
+ },
+ "record": {
+ "URL": "https://wdh.gg/M0ttgkD"
+ }
+}
diff --git a/domains/doom.json b/domains/doom.json
new file mode 100644
index 000000000..0812517cd
--- /dev/null
+++ b/domains/doom.json
@@ -0,0 +1,12 @@
+{
+ "description": "My personal website inspired by 90s personal websites made in Geocities",
+ "repo": "https://github.com/itsdoomone/itsdoomone.github.io",
+ "owner": {
+ "username": "ItsDoomOne",
+ "email": "leodroid796@gmail.com",
+ "discord": "527778424392253441"
+ },
+ "record": {
+ "CNAME": "itsdoomone.github.io"
+ }
+}
diff --git a/domains/drago-cuven.json b/domains/drago-cuven.json
index 2ada7533a..526292ca2 100644
--- a/domains/drago-cuven.json
+++ b/domains/drago-cuven.json
@@ -4,9 +4,9 @@
"owner": {
"username": "Drago-Cuven",
"email": "MartinelplayzYT@gmail.com",
- "twitter": "@mbcbgd"
+ "twitter": "mbcbgd"
},
"record": {
- "CNAME": "Drago-Cuven.github.io"
+ "CNAME": "drago-cuven.github.io"
}
}
diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json
index 040686474..1cbcb88f9 100644
--- a/domains/drpleaserespect.json
+++ b/domains/drpleaserespect.json
@@ -5,6 +5,9 @@
"discord": "300641942646161409"
},
"record": {
- "CNAME": "drpleaserespect.pages.dev"
+ "NS": [
+ "frank.ns.cloudflare.com",
+ "hope.ns.cloudflare.com"
+ ]
}
-}
+}
\ No newline at end of file
diff --git a/domains/dscbmr.json b/domains/dscbmr.json
index 25a2fb441..ff0b1e52e 100644
--- a/domains/dscbmr.json
+++ b/domains/dscbmr.json
@@ -3,8 +3,7 @@
"repo": "https://srpvt.github.io/DSCBMR",
"owner": {
"username": "SRPVT",
- "email": "syedrayangames@gmail.com",
- "Discord": "乃爪尺𓆩♕𓆪"
+ "email": "syedrayangames@gmail.com"
},
"record": {
"CNAME": "srpvt.github.io"
diff --git a/domains/ducanhng.json b/domains/ducanhng.json
new file mode 100644
index 000000000..f248301b0
--- /dev/null
+++ b/domains/ducanhng.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ducanhitz",
+ "email": "ducanhng.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "ducanhitz.github.io"
+ }
+}
diff --git a/domains/duckanon.json b/domains/duckanon.json
new file mode 100644
index 000000000..ac11aa85e
--- /dev/null
+++ b/domains/duckanon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SmolNightHere312",
+ "email": "magickdevl@proton.me"
+ },
+ "record": {
+ "A": ["69.30.249.53"]
+ }
+}
diff --git a/domains/ductai05.json b/domains/ductai05.json
new file mode 100644
index 000000000..77573c131
--- /dev/null
+++ b/domains/ductai05.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ductai05",
+ "email": "ductai.dt05@gmail.com"
+ },
+ "record": {
+ "CNAME": "ductai05.github.io"
+ }
+}
diff --git a/domains/dudani-meet.json b/domains/dudani-meet.json
index a84c86f79..9480518a7 100644
--- a/domains/dudani-meet.json
+++ b/domains/dudani-meet.json
@@ -2,8 +2,7 @@
"description": "Meet Portfolio.",
"repo": "https://github.com/dudani-meet/dudani-meet.github.io",
"owner": {
- "username": "dudani-meet",
- "email": ""
+ "username": "dudani-meet"
},
"record": {
"CNAME": "dudani-meet.github.io"
diff --git a/domains/duydo.json b/domains/duydo.json
new file mode 100644
index 000000000..3e48290e3
--- /dev/null
+++ b/domains/duydo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "duydo",
+ "email": "doquocduy@gmail.com"
+ },
+ "record": {
+ "CNAME": "duydo.github.io"
+ }
+}
diff --git a/domains/duyhung.json b/domains/duyhung.json
index d1cf0cb92..0d86aa3dc 100644
--- a/domains/duyhung.json
+++ b/domains/duyhung.json
@@ -4,6 +4,6 @@
"email": "hungwt334@gmail.com"
},
"record": {
- "A": ["82.165.193.230"]
+ "A": ["109.228.48.107"]
}
}
diff --git a/domains/duyminhhello.json b/domains/duyminhhello.json
new file mode 100644
index 000000000..762257986
--- /dev/null
+++ b/domains/duyminhhello.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tranphamduyminhhello",
+ "email": "tranphamduyminh.hello@gmail.com"
+ },
+ "record": {
+ "CNAME": "tranphamduyminhhello.github.io"
+ }
+}
diff --git a/domains/dyikes.json b/domains/dyikes.json
new file mode 100644
index 000000000..670fb7662
--- /dev/null
+++ b/domains/dyikes.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dyikes",
+ "email": "f@power.slmail.me"
+ },
+ "record": {
+ "CNAME": "dyikes.duckdns.org"
+ }
+}
diff --git a/domains/easynebula.json b/domains/easynebula.json
index 766e6866f..39444fee7 100644
--- a/domains/easynebula.json
+++ b/domains/easynebula.json
@@ -4,7 +4,7 @@
"owner": {
"username": "EasyNebula",
"email": "geographicalfacts16@gmail.com",
- "twitter": "@easynebula"
+ "twitter": "easynebula"
},
"record": {
"CNAME": "easynebula.github.io"
diff --git a/domains/edwin-lh.json b/domains/edwin-lh.json
index 322c8a940..bdd08e6b9 100644
--- a/domains/edwin-lh.json
+++ b/domains/edwin-lh.json
@@ -4,7 +4,7 @@
"owner": {
"username": "ezerinz",
"email": "edwinnnzx@gmail.com",
- "twitter": "@Ezerinz"
+ "twitter": "Ezerinz"
},
"record": {
"CNAME": "ezerinz.github.io"
diff --git a/domains/egirl.json b/domains/egirl.json
index 73a5fe400..f45137c23 100644
--- a/domains/egirl.json
+++ b/domains/egirl.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "mAskDucK",
-
"discord": "maskduck"
},
"record": {
diff --git a/domains/ela.json b/domains/ela.json
new file mode 100644
index 000000000..58fb9c211
--- /dev/null
+++ b/domains/ela.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "DXRdev"
+ },
+ "record": {
+ "CNAME": "dxrdev.github.io"
+ }
+}
diff --git a/domains/elaruu.jamied132.json b/domains/elaruu.jamied132.json
deleted file mode 100644
index 7427f9012..000000000
--- a/domains/elaruu.jamied132.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A wiki designed so people never forget about elaruu",
- "repo": "https://github.com/elaruu/elaruu.github.io",
- "owner": {
- "username": "jamied132 and elaruu",
- "email": "jamied132.email@gmail.com"
- },
- "record": {
- "CNAME": "elaruu.github.io"
- }
-}
diff --git a/domains/elite.json b/domains/elite.json
new file mode 100644
index 000000000..402135049
--- /dev/null
+++ b/domains/elite.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "thaihung48",
+ "email": "contact.hungg+dev@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "dilbert.ns.cloudflare.com",
+ "fish.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/elora.json b/domains/elora.json
new file mode 100644
index 000000000..38db8517c
--- /dev/null
+++ b/domains/elora.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "elorahub",
+ "email": "elorahubph@gmail.com"
+ },
+ "record": {
+ "CNAME": "apex-loadbalancer.netlify.com"
+ }
+}
diff --git a/domains/elulolaito.json b/domains/elulolaito.json
new file mode 100644
index 000000000..a55764619
--- /dev/null
+++ b/domains/elulolaito.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "elulolaito",
+ "email": "eru.lawliet.death@gmail.com"
+ },
+ "record": {
+ "CNAME": "elulolaito.github.io"
+ }
+}
diff --git a/domains/em697376.yxz.json b/domains/em697376.yxz.json
new file mode 100644
index 000000000..7597b4ad3
--- /dev/null
+++ b/domains/em697376.yxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yz9551",
+ "discord": "yz9551"
+ },
+ "record": {
+ "CNAME": "return.smtp2go.net"
+ }
+}
diff --git a/domains/email.nota.json b/domains/email.nota.json
deleted file mode 100644
index 1eb9b98bd..000000000
--- a/domains/email.nota.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "dewiscool",
- "email": "zerolikecyber.2005@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 878821057748926534"
- },
- "record": {
- "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=zerolikecyber.2005@gmail.com"
- }
-}
diff --git a/domains/email.ps.json b/domains/email.ps.json
new file mode 100644
index 000000000..41b6cc6a2
--- /dev/null
+++ b/domains/email.ps.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PrivacySecured",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ"
+ },
+ "record": {
+ "URL": "http://scr.im/PrivSec"
+ }
+}
diff --git a/domains/emvas.s4il.json b/domains/emvas.s4il.json
new file mode 100644
index 000000000..e4788bcf6
--- /dev/null
+++ b/domains/emvas.s4il.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "S4IL21",
+ "email": "s4il.is.a.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "s4il21.github.io"
+ }
+}
diff --git a/domains/enginecreations.json b/domains/enginecreations.json
new file mode 100644
index 000000000..4aec6ab1e
--- /dev/null
+++ b/domains/enginecreations.json
@@ -0,0 +1,12 @@
+{
+ "description": "Engine Creations(TM) main pages",
+ "repo": "https://github.com/akk1to/enginecreations.github.io",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/erdogan.json b/domains/erdogan.json
index 5120b3239..99c66a948 100644
--- a/domains/erdogan.json
+++ b/domains/erdogan.json
@@ -4,6 +4,6 @@
"email": "erdogan.sad@windowslive.com"
},
"record": {
- "A": ["194.87.246.134"]
+ "CNAME": "erdogans.space"
}
}
diff --git a/domains/eryquicc.json b/domains/eryquicc.json
index 1b0d50a14..f088fbfdc 100644
--- a/domains/eryquicc.json
+++ b/domains/eryquicc.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/eryquicc/eryquicc.github.io",
"owner": {
"username": "Eryquicc",
- "email": "",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Cbf_zgEEDsPK4bFFmgXIQzS7a8f6kCaJ7fvKii_hoGmC_T816cUQCWzfgvZNCRjDTAAmeUlkFoZJ7cXAtZydJmbiiomW2rYYdahrpuHD9uzik4utcbdY93tN0jIg_oVZPBjmntBttyrOMC-ZczmA3UsYC2Sn46gvt_rNKmR8GP4SYlsoIUq54tqCKbw7hEy9uIr34I4v20mJKQ-ffnnV5jfWxRd2aPZ57B8ObpzmNaMF-KoC4TEEbA5ZxPKB68wWvQNkPrGEQdvnE6A5ymgFp6kI7ybzkb2VgN7xxrlSFtighk2-XjzOe2X-DAfAPJ7IBCaesCsupMN5J2qlsP0cXQ.X-zYTXfPKYUBbuxBuMumLA.pE13OpQVJ1FnW9oKZAsE-0ZvAaBphHU1Tn1aDESYFhrMABZbOzyaQ-HDS-8HcHu6m5GsYWeSf4_SHoqmZbag4XoWNNKgkv1VpnCY-H_52NRRX4rIEyCAxywLe2Ph1moi.I4F8hNl8SC8b_WUvYuDv7Q"
},
"record": {
diff --git a/domains/evansrrr.json b/domains/evansrrr.json
new file mode 100644
index 000000000..7ffbfd77f
--- /dev/null
+++ b/domains/evansrrr.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal portfolio website",
+ "repo": "https://github.com/evansrrr/evans",
+ "owner": {
+ "username": "Evansrrr",
+ "email": "enzoraziore@outlook.com"
+ },
+ "record": {
+ "CNAME": "evansrrr.netlify.app"
+ }
+}
diff --git a/domains/evie.json b/domains/evie.json
index 64ee20d99..6160a3400 100644
--- a/domains/evie.json
+++ b/domains/evie.json
@@ -2,8 +2,7 @@
"owner": {
"username": "Socketlike",
"discordId": "285329659023851520",
- "discord": "encyclopedic",
- "email": ""
+ "discord": "encyclopedic"
},
"record": {
"A": [
diff --git a/domains/exigent-app.json b/domains/exigent-app.json
index e1666134a..4b421307c 100644
--- a/domains/exigent-app.json
+++ b/domains/exigent-app.json
@@ -1,6 +1,6 @@
{
"owner": {
- "usernme": "Exigent07",
+ "username": "Exigent07",
"discord": "exigent07"
},
"record": {
diff --git a/domains/fakhri.json b/domains/fakhri.json
new file mode 100644
index 000000000..fc9a1eafd
--- /dev/null
+++ b/domains/fakhri.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "FDMZ17"
+ },
+ "record": {
+ "CNAME": "fdmz17.github.io"
+ }
+}
diff --git a/domains/fakhridanishmp.json b/domains/fakhridanishmp.json
new file mode 100644
index 000000000..ba3e36441
--- /dev/null
+++ b/domains/fakhridanishmp.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "fakhridanishmp"
+ },
+ "record": {
+ "CNAME": "fakhridanishmp.github.io"
+ }
+}
diff --git a/domains/falguni-prajapati.json b/domains/falguni-prajapati.json
index faea36c15..b58780d56 100644
--- a/domains/falguni-prajapati.json
+++ b/domains/falguni-prajapati.json
@@ -2,8 +2,7 @@
"description": "This is falguni prajapati",
"repo": "https://github.com/falguni-prajapati/falguni-prajapati.github.io",
"owner": {
- "username": "falguni-prajapati",
- "email": ""
+ "username": "falguni-prajapati"
},
"record": {
"CNAME": "falguni-prajapati.github.io"
diff --git a/domains/farzan.json b/domains/farzan.json
index b98bf2cdf..9344f9dea 100644
--- a/domains/farzan.json
+++ b/domains/farzan.json
@@ -6,6 +6,6 @@
"email": "farzanfa007@gmail.com"
},
"record": {
- "CNAME": "Farzanfa.github.io"
+ "CNAME": "farzanfa.github.io"
}
}
diff --git a/domains/fauzi.json b/domains/fauzi.json
index ff08329f0..935498adb 100644
--- a/domains/fauzi.json
+++ b/domains/fauzi.json
@@ -6,6 +6,6 @@
"email": "fetruzie2@gmail.com"
},
"record": {
- "CNAME": "FauziFerdiansyah.github.io"
+ "CNAME": "fauziferdiansyah.github.io"
}
}
diff --git a/domains/fawwaz.json b/domains/fawwaz.json
index 3b0aaa65c..f3ce99921 100644
--- a/domains/fawwaz.json
+++ b/domains/fawwaz.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "fawwazanvilen",
- "email": "fawwazanvi@gmail.com"
- },
- "record": {
- "A": [
- "103.16.117.247"
- ]
- }
+ "owner": {
+ "username": "fawwazanvilen",
+ "email": "fawwazanvi@gmail.com"
+ },
+ "record": {
+ "A": ["103.16.117.247"]
+ }
}
diff --git a/domains/fayasnoushad.json b/domains/fayasnoushad.json
index 345e99e0c..b31623ef6 100644
--- a/domains/fayasnoushad.json
+++ b/domains/fayasnoushad.json
@@ -6,6 +6,6 @@
"twitter": "FayasNoushad"
},
"record": {
- "CNAME": "FayasNoushad.github.io"
+ "CNAME": "fayasnoushad.github.io"
}
}
diff --git a/domains/felixgao.json b/domains/felixgao.json
new file mode 100644
index 000000000..a71f4e5ae
--- /dev/null
+++ b/domains/felixgao.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "felixgao-0",
+ "discord": "725081836874760224",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.edtDo61A7pYaO4MLf3Td4bVHkR5ldkmvFtbYd2Sw87iVFJyWPXoyA5iG286-HSgmddMvd7M4YWkXqLd5VOFmBxIaP8a9_zzDHhoUUQIVPdlwCew1N4fr-pwgOJyLVqw2vlINaF2ZHxP2SXWk0pAFX15x_PvODV9YrbQdbWGwXr2SCgecGRZOgec-cE2K7aCPtuzjpY2iniOt6P-5I5Fji0r7heoCRTwB-4Cut8fjp34qD-EvatXs9evSQ2SVaaHBbu8qe5b9t_56YTkJAwR00ph9XWiwYEfyJID2I9RQ5oh79oLTZO2QYY5U2vzc_EBwlILKZNHqg3LK-HnhCLdXkQ.KvKANPJXfk-sREifDQWxeA.wwsk5S0aIZIQ2tCFEQzO_U5mQx1_ZTYw6OaePsF7zumqY8hO4zznQ94sWHFNaGfK9sxXRFZVBfacV5dxIyr3yI8IiYaTPfNK4QXHJUYUr4k.UaVnWH5AmKo22MGn6_cjBA"
+ },
+ "record": {
+ "CNAME": "felixgao.hackclub.app"
+ }
+}
diff --git a/domains/files.vornexx.json b/domains/files.vornexx.json
index 8c50d2689..7b0b4c4d1 100644
--- a/domains/files.vornexx.json
+++ b/domains/files.vornexx.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "vornex-gh",
+ "username": "vornexx",
"discord": "1149438819834269856",
"twitter": "vornexx_"
},
diff --git a/domains/flowwing.json b/domains/flowwing.json
new file mode 100644
index 000000000..91c43c6d1
--- /dev/null
+++ b/domains/flowwing.json
@@ -0,0 +1,11 @@
+{
+ "description": "Flow-Wing Programming Language",
+ "repo": "https://github.com/kushagra1212/Flow-Wing",
+ "owner": {
+ "username": "kushagra1212",
+ "email": "kushagrarathore002@gmail.com"
+ },
+ "record": {
+ "A": ["34.19.126.68"]
+ }
+}
diff --git a/domains/fm7qby6i5y25.ttkt.json b/domains/fm7qby6i5y25.ttkt.json
new file mode 100644
index 000000000..b9f95b574
--- /dev/null
+++ b/domains/fm7qby6i5y25.ttkt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "gv-kys3ep4lrotyqc.dv.googlehosted.com"
+ }
+}
diff --git a/domains/forero.json b/domains/forero.json
new file mode 100644
index 000000000..91cc7838a
--- /dev/null
+++ b/domains/forero.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "forerosantiago",
+ "email": "forero@disroot.org"
+ },
+ "record": {
+ "A": ["20.47.86.75"]
+ }
+}
diff --git a/domains/formuna.json b/domains/formuna.json
index 1bec25aee..3083fbe06 100644
--- a/domains/formuna.json
+++ b/domains/formuna.json
@@ -1,6 +1,6 @@
{
"description": "My website for my projects",
- "repo": "https://github.com/FormunaGit/FormunaGit.github.io",
+ "repo": "https://github.com/FormunaGit/formunagit.github.io",
"owner": {
"username": "FormunaGit",
"discord": "754657845563097108"
diff --git a/domains/fran.json b/domains/fran.json
index b66416802..702850c68 100644
--- a/domains/fran.json
+++ b/domains/fran.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "xzonix",
- "discord": "xzon1x",
- "email": ""
+ "discord": "xzon1x"
},
"record": {
"A": [
diff --git a/domains/frenchguy.json b/domains/frenchguy.json
deleted file mode 100644
index dcbd490bc..000000000
--- a/domains/frenchguy.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A dumb kid who likes da computer",
- "repo": "https://github.com/nvct-website/nvct-website.github.io",
- "owner": {
- "username": "Noahvocat (also known as NVCT, Noahvocado or Noahvocados or FrenchGuy or AverageFrenchGuy or AvrgFrnchGuy)",
- "discord": "avrgfrnchguy"
- },
- "record": {
- "CNAME": "nvct-website.github.io"
- }
-}
diff --git a/domains/g-pratik.json b/domains/g-pratik.json
index dc793000b..1c184ca95 100644
--- a/domains/g-pratik.json
+++ b/domains/g-pratik.json
@@ -2,8 +2,7 @@
"description": "This is my website",
"repo": "https://github.com/g-pratik/g-pratik.github.io",
"owner": {
- "username": "g-pratik",
- "email": ""
+ "username": "g-pratik"
},
"record": {
"CNAME": "g-pratik.github.io"
diff --git a/domains/galvanized-square-steel-with-aluminium-frame.json b/domains/galvanized-square-steel-with-aluminium-frame.json
index 5c856434f..21dc683d1 100644
--- a/domains/galvanized-square-steel-with-aluminium-frame.json
+++ b/domains/galvanized-square-steel-with-aluminium-frame.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "galvanized-square-steel-with-aluminium-frame.pages.dev"
diff --git a/domains/games.bob16077.json b/domains/games.bob16077.json
index af3733f54..9f7c0b368 100644
--- a/domains/games.bob16077.json
+++ b/domains/games.bob16077.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "bob16077",
- "discord": "bob16077777",
- "email": ""
+ "discord": "bob16077777"
},
"record": {
"CNAME": "bob16077.github.io"
diff --git a/domains/gavin.json b/domains/gavin.json
index 319390e24..900d0c4a0 100644
--- a/domains/gavin.json
+++ b/domains/gavin.json
@@ -8,6 +8,6 @@
"discord": "gavin#5968"
},
"record": {
- "CNAME": "GavinFerdinandChee.github.io"
+ "CNAME": "gavinferdinandchee.github.io"
}
}
diff --git a/domains/generic.json b/domains/generic.json
new file mode 100644
index 000000000..0ff8ccaf6
--- /dev/null
+++ b/domains/generic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "xgeneric",
+ "email": "",
+ "discord": "1194494419064328296",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pNI-ARrj3J_tLM7pZiRwu1pfmk-Q3DwQqCqxWO02M876wVSFVYCtmViotPvUkXbGD6fungda4WYZn9FbbIFMroM6lyRd5facNKDKej8YSmA4vHrk82WnwOjIOgJZVvG1KBZ-a8-WJaBMTFTnA5HcDdIPKalVi8WuEBZ0aX5oePC_OmMgL8dfo8sc_Yh6iH_cQQsHyqTmEqaFIZdnchM3zqP5SztLpMqx7J-t65lJmSVdvlVIyCOVGGtnSu6p-mqsRqJ0_GTaxZq13p33OlN2H-aHiYLhuUNq1PNAMVMjBHvLwKx53QPYHkWH_49PYOAofaB5Qu4FQehMfMeEDPJY3w.qTLCxzxvVwoOjhI2BRDjcQ.fknkRF_e0XxYo2aGLv16XqzezYSUJAsZEV1IvnuErIAUeo5iEOL_6tjx67aBPV7GaJ-bulYZxzfcm7w8t2fd3dj4YWle3bpexZZ25GhR9RtlbCvQ1MybtvMWt9kMjbIM.AYS1UwZHLOklvLllhjQpLA"
+ },
+ "record": {
+ "CNAME": "xgeneric.github.io"
+ }
+}
diff --git a/domains/ghozi.json b/domains/ghozi.json
index 39196f450..567104690 100644
--- a/domains/ghozi.json
+++ b/domains/ghozi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "m-ghozi",
- "email": "ghozi286@gmail.com"
- },
- "record": {
- "CNAME": "m-ghozi.github.io"
- }
-}
+ "owner": {
+ "username": "m-ghozi",
+ "email": "ghozi286@gmail.com"
+ },
+ "record": {
+ "CNAME": "m-ghozi.github.io"
+ }
+}
diff --git a/domains/gifflet.json b/domains/gifflet.json
new file mode 100644
index 000000000..5d9bc73c3
--- /dev/null
+++ b/domains/gifflet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gifflet",
+ "email": "guisousa09@hotmail.com"
+ },
+ "record": {
+ "CNAME": "gifflet.github.io"
+ }
+}
diff --git a/domains/gilang.json b/domains/gilang.json
new file mode 100644
index 000000000..9cfa123d6
--- /dev/null
+++ b/domains/gilang.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gilangportofolio",
+ "email": "gilang.portofolioo@gmail.com",
+ "description": "Personal Portfolio Website"
+ },
+ "record": {
+ "CNAME": "gilangportofolio.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/gin.json b/domains/gin.json
new file mode 100644
index 000000000..dc947f5a5
--- /dev/null
+++ b/domains/gin.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://minh0111.github.io/ginny/",
+ "owner": {
+ "username": "minh0111",
+ "email": "kisaver157@gmail.com"
+ },
+ "record": {
+ "CNAME": "minh0111.github.io"
+ }
+}
diff --git a/domains/gitea.vinceale7082.json b/domains/gitea.vinceale7082.json
index d64b795b3..9635dd504 100644
--- a/domains/gitea.vinceale7082.json
+++ b/domains/gitea.vinceale7082.json
@@ -6,6 +6,6 @@
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw"
},
"record": {
- "A": ["37.183.129.150"]
+ "A": ["5.94.2.75"]
}
}
diff --git a/domains/glutis.json b/domains/glutis.json
new file mode 100644
index 000000000..fc02a675f
--- /dev/null
+++ b/domains/glutis.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "huyvu15",
+ "email": "huyv80313@gmail.com"
+ },
+ "record": {
+ "CNAME": "huyvu15.github.io"
+ }
+}
diff --git a/domains/gokulbarath.json b/domains/gokulbarath.json
index d132d6686..1157ce59d 100644
--- a/domains/gokulbarath.json
+++ b/domains/gokulbarath.json
@@ -1,12 +1,9 @@
{
- "description": "my personal website ",
- "repo": "https://github.com/gokul6350/gokul6350.github.io",
"owner": {
"username": "gokul6350",
- "email": "gokul00060@gmail.com",
- "twitter": "gokul00060"
+ "email": "gokul00060@gmail.com"
},
"record": {
- "CNAME": "gokul6350.github.io"
+ "CNAME": "portfolio-gokul6350s-projects.vercel.app"
}
}
diff --git a/domains/goutam.json b/domains/goutam.json
new file mode 100644
index 000000000..d659147b1
--- /dev/null
+++ b/domains/goutam.json
@@ -0,0 +1,17 @@
+{
+ "owner": {
+ "username": "MatrixCoder0101"
+ },
+ "record": {
+ "A": [
+ "76.76.21.21"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": [
+ "v=spf1 include:spf.improvmx.com ~all"
+ ]
+ }
+}
diff --git a/domains/gravy.json b/domains/gravy.json
index a000f4104..99cfb5d01 100644
--- a/domains/gravy.json
+++ b/domains/gravy.json
@@ -2,8 +2,7 @@
"owner": {
"username": "thatgravyboat",
"twitter": "thatgravyboat",
- "discord": "thatgravyboat#0001",
- "email": ""
+ "discord": "thatgravyboat#0001"
},
"record": {
"URL": "https://thatgravyboat.tech"
diff --git a/domains/grishma-chhayani.json b/domains/grishma-chhayani.json
index 0017041b8..3d280e5e0 100644
--- a/domains/grishma-chhayani.json
+++ b/domains/grishma-chhayani.json
@@ -2,8 +2,7 @@
"description": "Grishma Profile.",
"repo": "https://github.com/grishma-chhayani/grishma-chhayani.github.io",
"owner": {
- "username": "grishma-chhayani",
- "email": ""
+ "username": "grishma-chhayani"
},
"record": {
"CNAME": "grishma-chhayani.github.io"
diff --git a/domains/gustavo.json b/domains/gustavo.json
index ccde054e7..189b181f2 100644
--- a/domains/gustavo.json
+++ b/domains/gustavo.json
@@ -7,6 +7,6 @@
"twitter": "gustavoarsenio"
},
"record": {
- "CNAME": "GustavoArsenio.github.io"
+ "CNAME": "gustavoarsenio.github.io"
}
}
diff --git a/domains/habeel.json b/domains/habeel.json
index e1cbb3688..e3cdaa1f4 100644
--- a/domains/habeel.json
+++ b/domains/habeel.json
@@ -7,6 +7,6 @@
"twitter": "habeel_06"
},
"record": {
- "CNAME": "Habeel06.github.io"
+ "CNAME": "habeel06.github.io"
}
}
diff --git a/domains/hachiro.json b/domains/hachiro.json
index d08401bd2..b1d178cba 100644
--- a/domains/hachiro.json
+++ b/domains/hachiro.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/bananalolok/register",
"owner": {
"username": "bananalolok",
- "discord": "banana_lol_7678",
- "email": ""
+ "discord": "banana_lol_7678"
},
"record": {
"CNAME": "edge.redirect.pizza"
diff --git a/domains/haolamnm.json b/domains/haolamnm.json
new file mode 100644
index 000000000..3187a2d5e
--- /dev/null
+++ b/domains/haolamnm.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio redirect for haolamnm",
+ "owner": {
+ "username": "haolamnm",
+ "email": "haolamnm.work@gmail.com"
+ },
+ "record": {
+ "CNAME": "haolamnm.github.io"
+ }
+}
diff --git a/domains/haridarshan.json b/domains/haridarshan.json
index fc78904ad..4c3fb8a5a 100644
--- a/domains/haridarshan.json
+++ b/domains/haridarshan.json
@@ -2,8 +2,7 @@
"description": "haridarshan.is-a.dev, for my portfolio",
"repo": "https://github.com/hdck007/me",
"owner": {
- "username": "hdck007",
- "email": ""
+ "username": "hdck007"
},
"record": {
"URL": "https://haridarshan.vercel.app"
diff --git a/domains/harikrishnan.json b/domains/harikrishnan.json
index 6a5fab314..25b662c01 100644
--- a/domains/harikrishnan.json
+++ b/domains/harikrishnan.json
@@ -5,6 +5,6 @@
"email": "harikrishnan6336@gmail.com"
},
"record": {
- "CNAME": "Harikrishnan6336.github.io"
+ "CNAME": "harikrishnan6336.github.io"
}
}
diff --git a/domains/harshad-patoliya.json b/domains/harshad-patoliya.json
index fdbd48e2b..a8e068b28 100644
--- a/domains/harshad-patoliya.json
+++ b/domains/harshad-patoliya.json
@@ -2,8 +2,7 @@
"description": "Portfolio site.",
"repo": "https://github.com/harshad-patoliya/harshad-patoliya.github.io",
"owner": {
- "username": "harshad-patoliya",
- "email": ""
+ "username": "harshad-patoliya"
},
"record": {
"CNAME": "harshad-patoliya.github.io"
diff --git a/domains/harshikesh-abhinav.json b/domains/harshikesh-abhinav.json
new file mode 100644
index 000000000..d65305aa3
--- /dev/null
+++ b/domains/harshikesh-abhinav.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Abhinav-676",
+ "email": "harshikeshabhinav676@gmail.com"
+ },
+ "record": {
+ "CNAME": "abhinav-portfolio-s-47.deno.dev"
+ }
+}
diff --git a/domains/he.json b/domains/he.json
index 6e9cb67f3..1b8492781 100644
--- a/domains/he.json
+++ b/domains/he.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "Yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "yunexiz.pages.dev"
diff --git a/domains/heli-joshi.json b/domains/heli-joshi.json
index 5e9935d61..5c79e9edf 100644
--- a/domains/heli-joshi.json
+++ b/domains/heli-joshi.json
@@ -2,8 +2,7 @@
"description": "Heli Profile.",
"repo": "https://github.com/heli-joshi/heli-joshi.github.io",
"owner": {
- "username": "heli-joshi",
- "email": ""
+ "username": "heli-joshi"
},
"record": {
"CNAME": "heli-joshi.github.io"
diff --git a/domains/hemanth.json b/domains/hemanth.json
index 442e3087a..d3d8bf4b4 100644
--- a/domains/hemanth.json
+++ b/domains/hemanth.json
@@ -6,6 +6,6 @@
"email": "hemanthwarrier@gmail.com"
},
"record": {
- "CNAME": "Hemanthwarrier.github.io"
+ "CNAME": "hemanthwarrier.github.io"
}
}
diff --git a/domains/hexaa.json b/domains/hexaa.json
index e81502c4d..d62103e70 100644
--- a/domains/hexaa.json
+++ b/domains/hexaa.json
@@ -1,11 +1,12 @@
{
"owner": {
+ "owl": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.svaUbpX_i7AZUnRnbjlFJqGPO5q-Ggc4_KUwj7zKurpH8YFZJ5J399yg_UZG1BUt-CRc5ZvWWoXHzRPeRJN0TVpNuPCtClOVsLtg-uuIf-m9IFifJgrNnFaTF4QJIfWQu92V9ZqfDBqWrUC31O5MR9bU3O3fvDGZqduxeYuyRBUJjsauqQb-B2JW5OxNp9I45PTT_x62h6PYHkmX8mslOogHafp-aboPTgIoroREABGiMaYIC_k2Y1VrK8t-EWzZUtqHwhIfp1TnhO1ZJiw9b_yZMY9bnOCZ1T1bl09YDqWVZqVN_q_HEM-dB3NfSR2wQ9sUmNNqSLxaHoHkKg5Y3w.I79tijv6pGsKXSPhcS48Ng.U4OgcRYwtyY8-HwdvW0hvbnYBnFOPI4BLiePLcwSReF10whseZpcnJ5gN2sm0WOgpCehx70Kcv7gjT0LXRGr4jHRRUzbdhlhT0YIjzICswA.yXQtUotGAoaKOGy4DiOmCg",
"username": "hexaaagon",
"email": "me@hexagonn.my.id",
"discord": "scoooolzs",
"twitter": "Scoooolzs"
},
"record": {
- "URL": "https://www.hexagonn.my.id"
+ "NS": ["arch.ns.cloudflare.com", "perla.ns.cloudflare.com"]
}
}
diff --git a/domains/hien.json b/domains/hien.json
new file mode 100644
index 000000000..092a76457
--- /dev/null
+++ b/domains/hien.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hienlh",
+ "email": "hienlh1298@gmail.com"
+ },
+ "record": {
+ "CNAME": "hienlh-github-io.vercel.app"
+ }
+}
diff --git a/domains/hinal-sanghvi.json b/domains/hinal-sanghvi.json
index fcc489f4e..1a54d4be2 100644
--- a/domains/hinal-sanghvi.json
+++ b/domains/hinal-sanghvi.json
@@ -2,8 +2,7 @@
"description": "Personal website for now",
"repo": "https://github.com/hinal-sanghvi/hinal-sanghvi.github.io",
"owner": {
- "username": "hinal-sanghvi",
- "email": ""
+ "username": "hinal-sanghvi"
},
"record": {
"CNAME": "hinal-sanghvi.github.io"
diff --git a/domains/hitesh-makodiya.json b/domains/hitesh-makodiya.json
index 1c5b1d292..89b58d0aa 100644
--- a/domains/hitesh-makodiya.json
+++ b/domains/hitesh-makodiya.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/hitesh-makodiya/hitesh-makodiya.github.io",
"owner": {
- "username": "hitesh-makodiya",
- "email": ""
+ "username": "hitesh-makodiya"
},
"record": {
"CNAME": "hitesh-makodiya.github.io"
diff --git a/domains/hoangtran99.json b/domains/hoangtran99.json
new file mode 100644
index 000000000..6af9777cb
--- /dev/null
+++ b/domains/hoangtran99.json
@@ -0,0 +1,10 @@
+{
+ "description": "Portfolio redirect for HoangTran0410",
+ "owner": {
+ "username": "hoangtran0410",
+ "email": "99.hoangtran@gmail.com"
+ },
+ "record": {
+ "CNAME": "hoangtran0410.github.io"
+ }
+}
diff --git a/domains/hongson.json b/domains/hongson.json
new file mode 100644
index 000000000..44d0ed479
--- /dev/null
+++ b/domains/hongson.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "hongson209",
+ "discord": "1221370693959286892",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U-QKtaxmfpnD4gyKpxceyXEJniqrouqFqMLOUr-R5US7q9t7CgEfpFVf1ICJC22NBFQDIZupwEWf0ggOhHjcRcq5ptxy5fMav6RNrt7luJzeDwdgFroBFbg2XjlY5ArfsJiPqEAJJspN3wt9cGoxb2WG6MQHwID90F3cS4PijOnThMX9h-qkOzXzCUwch4ex2qa7_MsQKbaEICSMJDphr1bX5FCUCMqFmRTF5LltjhLBh65zEXHPZZiKKZVWmbb4ENWv-C6PlSX2W2NrtbWn6AJBafdOTDKH2gFw2nbZMc-BpQB93PKcsHnMpyaUEuGE6miZwt-yP9RwI0hRRheDw.Su7jI9kAzVy63eUkcb2qVQ.m9-XLef-CoAmPkHyXSfzyZeDUQW0FliIJ_E91X6oD4B-3aoItG32mUMGDlNntwzOk1CbbSUXQDLY7q2zoHP-A.aQsLYDPrqxn-VyenjREoeA"
+ },
+
+ "record": {
+ "CNAME": "hongson209.github.io"
+ }
+ }
+
diff --git a/domains/hooman.json b/domains/hooman.json
index 27ecc4bfb..d142a8f2a 100644
--- a/domains/hooman.json
+++ b/domains/hooman.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/ThisIsALegitUsername/thisisalegitusername.github.io",
"owner": {
"username": "hooman23",
- "discord": "hooman23",
- "email": ""
+ "discord": "hooman23"
},
"record": {
"CNAME": "thisisalegitusername.github.io"
diff --git a/domains/horu.json b/domains/horu.json
index 45f1c8e08..a2dfe34c5 100644
--- a/domains/horu.json
+++ b/domains/horu.json
@@ -4,6 +4,6 @@
"email": "73709188+HigherOrderLogic@users.noreply.github.com"
},
"record": {
- "CNAME": "HigherOrderLogic.github.io"
+ "CNAME": "higherorderlogic.github.io"
}
}
diff --git a/domains/host.xandaah.json b/domains/host.xandaah.json
index 7274fa812..91160721f 100644
--- a/domains/host.xandaah.json
+++ b/domains/host.xandaah.json
@@ -5,6 +5,6 @@
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.T1qnVgduBT3ZaAhLEpPEEpb7lbe4ISMDiDt3L2wEAAbg-_gm0F_9uB1DsruJ6418nBUqz9eG_v0DInwIW6CvlbvceaOvBdF0lFElUSYowFWQg7fTBCIw1DkzUxiQubGAqpt6WiVt0sOSBFUnzOoYbxrmPFH3S5LgSzWoNwcqNZyFdz7At-vj3w61pL59zTHy_wdc_nckD1aLeonZIUxzfQKbL4dvdvnhLRlalVdBtE_Co20zUiUa_-JpEqSlfxAmURQSAyjfOCl_Y9ypizv018se-P0d6K8p7Ta2vNpWLsXWVMW3fOStQiiSqZMx-5V1b6FZdlDTMdXIXBywGH7LNQ.xVZdl43zV0s9MvRWdwvv_w.7Su9KEKZiIDVcbcsiehxY8zisq82fUx44Lj0tO6v9em0f65-x5Wi_FFa4yKBfqZxfVpsvpoc8wDHiOAqQPk_3I1XCxRKP07O884FgeLWEmc.7y2cHSgkts0nDvbHecDvCA"
},
"record": {
- "A": ["32.216.38.220"]
+ "A": ["32.216.183.113"]
}
}
diff --git a/domains/hujjat.json b/domains/hujjat.json
new file mode 100644
index 000000000..d2a56b113
--- /dev/null
+++ b/domains/hujjat.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "hujjatiii"
+ },
+ "record": {
+ "CNAME": "hujmosaviblog.vercel.app"
+ }
+}
diff --git a/domains/huseyin.json b/domains/huseyin.json
index c5ba12225..f100e0ab5 100644
--- a/domains/huseyin.json
+++ b/domains/huseyin.json
@@ -6,6 +6,6 @@
"email": "gslicocuk8080@gmail.com"
},
"record": {
- "CNAME": "Huseyin-Cinar.github.io"
+ "CNAME": "huseyin-cinar.github.io"
}
}
diff --git a/domains/huygd.json b/domains/huygd.json
index 2a438e3f9..8f3a12618 100644
--- a/domains/huygd.json
+++ b/domains/huygd.json
@@ -1,11 +1,14 @@
{
- "description": "My first domain to learn",
+ "description": "First domain to study",
"repo": "https://github.com/huygmdvn/register",
"owner": {
"username": "huygmdvn",
"email": "huynhquochuytkna@gmail.com"
},
"record": {
- "A": ["103.77.240.59"]
+ "A": ["103.77.240.59"],
+ "TXT": [
+ "google-site-verification=ccDxQ_D0wTltS6cPq0sG76u3vGEPeqFFQEwHOGfXXE8"
+ ]
}
}
diff --git a/domains/huygmd.json b/domains/huygmd.json
new file mode 100644
index 000000000..2809539b9
--- /dev/null
+++ b/domains/huygmd.json
@@ -0,0 +1,14 @@
+{
+ "description": "The domain I will use to test a PHP code",
+ "repo": "https://github.com/huygmdvn/register",
+ "owner": {
+ "username": "huygmdvn",
+ "email": "huynhquochuytkna@gmail.com"
+ },
+ "record": {
+ "A": ["103.77.240.59"],
+ "TXT": [
+ "google-site-verification=FCWHg1XBnXBvp3xuLqQatJfp0esM4CrZYbPfkhkMzyk"
+ ]
+ }
+}
diff --git a/domains/hxphsts.json b/domains/hxphsts.json
new file mode 100644
index 000000000..5789f698f
--- /dev/null
+++ b/domains/hxphsts.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hxphsts",
+ "email": "hxphsts@kernelx.ai"
+ },
+ "record": {
+ "URL": "https://hxphsts.kernelx.ai"
+ }
+}
diff --git a/domains/i.esb.json b/domains/i.esb.json
deleted file mode 100644
index b14fc31dc..000000000
--- a/domains/i.esb.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "email": "educatedsuddenbucket@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
- }
-}
diff --git a/domains/_github-pages-challenge-Satindar31.satindar.json b/domains/i.json
similarity index 71%
rename from domains/_github-pages-challenge-Satindar31.satindar.json
rename to domains/i.json
index b443a7f72..a00e3f7d0 100644
--- a/domains/_github-pages-challenge-Satindar31.satindar.json
+++ b/domains/i.json
@@ -4,6 +4,6 @@
"email": "satindar@satindar-is.me"
},
"record": {
- "TXT": "ccd690fc913ce2ac27c8b9e10132a1"
+ "URL": "https://satindar.is-a.dev"
}
}
diff --git a/domains/i3.esb.json b/domains/i3.esb.json
deleted file mode 100644
index 2872fc5e8..000000000
--- a/domains/i3.esb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "email": "educatedsuddenbucket@gmail.com",
- "discord": "1167825360151380032"
- },
- "record": {
- "A": ["69.197.135.205"]
- }
-}
diff --git a/domains/i3vie.json b/domains/i3vie.json
index be6f1658d..371692667 100644
--- a/domains/i3vie.json
+++ b/domains/i3vie.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "i3vie",
- "discord": "i3vie",
- "email": ""
+ "discord": "i3vie"
},
"record": {
"CNAME": "i3vie.port0.org"
diff --git a/domains/iacoposb.json b/domains/iacoposb.json
new file mode 100644
index 000000000..0a487f7c0
--- /dev/null
+++ b/domains/iacoposb.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "IacopoSb",
+ "discord": "442322290206703628",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Hn0wg5RpzADaJvecwSHu8KpOj-Z_oG7i08e9Z62Give15eiaNXJzezQ9d7noux00NeBYHyoAWfBB5IQ4_XXWy75cLfR2N0A80Lod8D9f6zaWhH6HOcKrauCVolIJBBrzMfTXkWpi-yt74WFtQtfkjlOYren1QB6T_EqyLps5kEJxM08Vubn49m7ckSkNh2bRNJ5NfprPwjrGrHwrdsQqCDiVWn7SL7Dp-Qs-9X1m6nsbyr4shb1BA9X3embdAeL34Yq4GMaIje2tj991jpzq0lW1wGDAZweffw2cJf4xtzC1V0BBWPJDm3ye8eWWrhyOlOmVmK5xqduHk_GJ4jB__g.C50OguoaaY8-9Y9OheaUJw.pc_1FvYpLmydbLCQBa262CG2ROnCFJl-oxfguFWsFv7xDqFr5dRyEZVdEkO8J1UxQFAbO4fm3uEKV1JXDPqdl-6xZF9cpsEkOTZ72Gb2PiY.hYU41zXsd0lJbcQwO59cwA"
+ },
+ "record": {
+ "NS": ["marge.ns.cloudflare.com", "dan.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/iakshay.json b/domains/iakshay.json
index 50fe12630..678b11bce 100644
--- a/domains/iakshay.json
+++ b/domains/iakshay.json
@@ -7,6 +7,6 @@
"twitter": "i_Akshay09"
},
"record": {
- "CNAME": "Akshay1018.github.io"
+ "CNAME": "akshay1018.github.io"
}
}
diff --git a/domains/iamthedefender.json b/domains/iamthedefender.json
index 240db6e56..36a4ca46c 100644
--- a/domains/iamthedefender.json
+++ b/domains/iamthedefender.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "IamTheDefender",
- "discord": "iamthedefender",
- "email": ""
+ "discord": "iamthedefender"
},
"record": {
"URL": "https://portfolio-one-ecru-11.vercel.app"
diff --git a/domains/ice-head.json b/domains/ice-head.json
index 055e1ab12..5da892817 100644
--- a/domains/ice-head.json
+++ b/domains/ice-head.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
-
"TXT": "forward-email=heads.ice@protonmail.com"
}
}
diff --git a/domains/id.youfoundalpha.json b/domains/id.youfoundalpha.json
index 21ec148df..b1ed58052 100644
--- a/domains/id.youfoundalpha.json
+++ b/domains/id.youfoundalpha.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"URL": "https://keyoxide.org/8A6CD6545839F1276C7E5E3A92E7DB3078954562"
diff --git a/domains/imy.json b/domains/imy.json
index 1c09d2596..f25eb25e3 100644
--- a/domains/imy.json
+++ b/domains/imy.json
@@ -6,6 +6,6 @@
"email": "omranmansour096@gmail.com"
},
"record": {
- "CNAME": "IMYdev.github.io"
+ "CNAME": "imydev.github.io"
}
}
diff --git a/domains/infernum.json b/domains/infernum.json
index 127f7edd4..80507194c 100644
--- a/domains/infernum.json
+++ b/domains/infernum.json
@@ -6,6 +6,6 @@
"email": "infernum1212@gmail.com"
},
"record": {
- "CNAME": "Infernum1.github.io"
+ "CNAME": "infernum1.github.io"
}
}
diff --git a/domains/iqat.json b/domains/iqat.json
index 43152397d..3e7a24656 100644
--- a/domains/iqat.json
+++ b/domains/iqat.json
@@ -6,6 +6,6 @@
"email": "iqat476@gmail.com"
},
"record": {
- "CNAME": "Iqat476.github.io"
+ "CNAME": "iqat476.github.io"
}
}
diff --git a/domains/irc.pele.json b/domains/irc.pele.json
new file mode 100644
index 000000000..eceae0d10
--- /dev/null
+++ b/domains/irc.pele.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Pele12324",
+ "email": "pele.puric@gmail.com",
+ "discord": "483261654818226186"
+ },
+ "record": {
+ "A": ["38.242.242.224"]
+ }
+}
diff --git a/domains/ireknazm.json b/domains/ireknazm.json
index 56f405d64..deb07a87e 100644
--- a/domains/ireknazm.json
+++ b/domains/ireknazm.json
@@ -6,6 +6,6 @@
"email": "ireknazmievirek@gmail.com"
},
"record": {
- "CNAME": "Nagellan.github.io"
+ "CNAME": "nagellan.github.io"
}
}
diff --git a/domains/iscordian.json b/domains/iscordian.json
new file mode 100644
index 000000000..f2123e4a4
--- /dev/null
+++ b/domains/iscordian.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iscordian",
+ "email": "iscordian.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "iscordian.github.io"
+ }
+}
diff --git a/domains/itsdemongamez.json b/domains/itsdemongamez.json
index 590589f3c..ad1448374 100644
--- a/domains/itsdemongamez.json
+++ b/domains/itsdemongamez.json
@@ -5,6 +5,6 @@
"discord": "1038747272701292584"
},
"record": {
- "CNAME": "DemonGamez.github.io"
+ "CNAME": "demongamez.github.io"
}
}
diff --git a/domains/iusearchbtw.json b/domains/iusearchbtw.json
new file mode 100644
index 000000000..c522d6c12
--- /dev/null
+++ b/domains/iusearchbtw.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iamnotmega",
+ "email": "uksningaken@gmail.com"
+ },
+ "record": {
+ "CNAME": "iamnotmega.github.io"
+ }
+}
diff --git a/domains/ivedant.json b/domains/ivedant.json
index 19b2ccdf6..929e12961 100644
--- a/domains/ivedant.json
+++ b/domains/ivedant.json
@@ -6,6 +6,6 @@
"email": "naiduvedant@gmail.com"
},
"record": {
- "CNAME": "Flash2014.github.io"
+ "CNAME": "flash2014.github.io"
}
}
diff --git a/domains/izerr.json b/domains/izerr.json
new file mode 100644
index 000000000..acfe3a8db
--- /dev/null
+++ b/domains/izerr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Explodey-Wolf",
+ "email": "peanutplays61@gmail.com"
+ },
+ "record": {
+ "A": [
+ "76.76.21.21"
+ ]
+ }
+}
diff --git a/domains/jackiso.json b/domains/jackiso.json
index 53dc129c8..0139cf692 100644
--- a/domains/jackiso.json
+++ b/domains/jackiso.json
@@ -5,6 +5,6 @@
"email": "jackisodev@gmail.com"
},
"record": {
- "CNAME": "JaCkIsO.github.io"
+ "CNAME": "jackiso.github.io"
}
}
diff --git a/domains/jagdhish-mer.json b/domains/jagdhish-mer.json
index bcccd9eb8..272603963 100644
--- a/domains/jagdhish-mer.json
+++ b/domains/jagdhish-mer.json
@@ -2,8 +2,7 @@
"description": "jagdish Profile.",
"repo": "https://github.com/jagdish-der/jagdish-der.github.io",
"owner": {
- "username": "jagdish-der",
- "email": ""
+ "username": "jagdish-der"
},
"record": {
"CNAME": "jagdish-der.github.io"
diff --git a/domains/jagdish-mer.json b/domains/jagdish-mer.json
index bdcd867da..554509d17 100644
--- a/domains/jagdish-mer.json
+++ b/domains/jagdish-mer.json
@@ -2,8 +2,7 @@
"description": "my Profile.",
"repo": "https://github.com/jagdish-mer/jagdish-mer.github.io",
"owner": {
- "username": "jagdish-mer",
- "email": ""
+ "username": "jagdish-mer"
},
"record": {
"CNAME": "jagdish-mer.github.io"
diff --git a/domains/jaideep.json b/domains/jaideep.json
new file mode 100644
index 000000000..59a6fe0c5
--- /dev/null
+++ b/domains/jaideep.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xxeisenberg",
+ "email": "jaideepmato7@gmail.com"
+ },
+ "record": {
+ "CNAME": "piyush10f.vercel.app"
+ }
+}
diff --git a/domains/jake.json b/domains/jake.json
index 091329342..2e5c97792 100644
--- a/domains/jake.json
+++ b/domains/jake.json
@@ -1,11 +1,9 @@
{
- "description": "Jake's personal website and blog.",
- "repo": "https://github.com/j-eo/j-eo.github.io",
"owner": {
- "username": "j-eo",
- "email": "website-contact.nem2h@silomails.com"
+ "username": "xzrci",
+ "email": ""
},
"record": {
- "CNAME": "jakeanto.pages.dev"
+ "CNAME": "xzrci.vercel.app"
}
}
diff --git a/domains/jakehe.json b/domains/jakehe.json
index 4691f032e..bb611cbac 100644
--- a/domains/jakehe.json
+++ b/domains/jakehe.json
@@ -1,12 +1,11 @@
{
"description": "Jake He's Portfolio",
- "repo": "https://github.com/Jakethebest1238/Jakes-Portfolio",
"owner": {
- "username": "Jakethebest1238",
+ "username": "jakehe1226",
"email": "jakehe1226@gmail.com",
"twitter": "jakethebest1238"
},
"record": {
- "CNAME": "Jakethebest1238.github.io"
+ "CNAME": "jakehe1226.github.io"
}
}
diff --git a/domains/jalaj.json b/domains/jalaj.json
index b5c2c7b2d..2f890ab41 100644
--- a/domains/jalaj.json
+++ b/domains/jalaj.json
@@ -1,12 +1,8 @@
{
"description": "Jalaj's Portfolio",
-
"repo": "https://github.com/jalajcodes/jalaj",
-
"owner": {
"username": "jalajcodes",
-
-
"twitter": "jalajcodes"
},
"record": {
diff --git a/domains/jayakrishna.json b/domains/jayakrishna.json
new file mode 100644
index 000000000..cc6111d71
--- /dev/null
+++ b/domains/jayakrishna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jayakrishna-g",
+ "email": "rareone.jk@gmail.com"
+ },
+ "record": {
+ "CNAME": "jggandha-30911ba21954.herokuapp.com"
+ }
+}
diff --git a/domains/jayasurya.json b/domains/jayasurya.json
new file mode 100644
index 000000000..d6eff00bf
--- /dev/null
+++ b/domains/jayasurya.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "jsuryakt"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/jellyfin.creeperita104.json b/domains/jellyfin.creeperita104.json
deleted file mode 100644
index 66df526f1..000000000
--- a/domains/jellyfin.creeperita104.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "creeperita09",
- "email": "creeperita.09@gmail.com"
- },
- "record": {
- "CNAME": "icahomesvr2022.freeddns.org"
- }
-}
diff --git a/domains/jer.json b/domains/jer.json
index b1646e945..be66faf1a 100644
--- a/domains/jer.json
+++ b/domains/jer.json
@@ -4,6 +4,6 @@
"email": "chen.fuyuan07@gmail.com"
},
"record": {
- "CNAME": "i-jer.github.io"
+ "CNAME": "cbx3ryr6.up.railway.app"
}
}
diff --git a/domains/jeymen.json b/domains/jeymen.json
index 081ebf64c..681eb900f 100644
--- a/domains/jeymen.json
+++ b/domains/jeymen.json
@@ -10,9 +10,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"],
-
"TXT": "v=spf1 include:zoho.eu ~all"
}
}
diff --git a/domains/johansansebastian.json b/domains/johansansebastian.json
index ef590f455..92a131883 100644
--- a/domains/johansansebastian.json
+++ b/domains/johansansebastian.json
@@ -6,6 +6,6 @@
"email": "johansanju06@gmail.com"
},
"record": {
- "CNAME": "JohanSanSebastian.github.io"
+ "CNAME": "johansansebastian.github.io"
}
}
diff --git a/domains/jstn.json b/domains/jstn.json
deleted file mode 100644
index e8190d4e7..000000000
--- a/domains/jstn.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Justin's personal website",
- "repo": "https://github.com/justinbalaguer/justinbalaguer.github.io",
- "owner": {
- "username": "justinbalaguer",
- "email": "justinbalaguer@pm.me",
- "twitter": "ojintoji"
- },
- "record": {
- "CNAME": "justinbalaguer.github.io"
- }
-}
diff --git a/domains/julianwe17.json b/domains/julianwe17.json
new file mode 100644
index 000000000..a75522363
--- /dev/null
+++ b/domains/julianwe17.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Julianwe17",
+ "email": "julian.in.hbr@gmail.com",
+ "discord": "1055740356764901437"
+ },
+
+ "record": {
+ "CNAME": "julianwe17.github.io"
+ }
+ }
+
diff --git a/domains/justtrynacode.json b/domains/justtrynacode.json
index c47a7c7c5..ad66d827e 100644
--- a/domains/justtrynacode.json
+++ b/domains/justtrynacode.json
@@ -6,6 +6,6 @@
"discord": "JustTrynaCode#0810"
},
"record": {
- "CNAME": "JustTrynaCodee.github.io"
+ "CNAME": "justtrynacodee.github.io"
}
}
diff --git a/domains/k.json b/domains/k.json
index b1091f68c..6f58e46d3 100644
--- a/domains/k.json
+++ b/domains/k.json
@@ -4,6 +4,6 @@
"discord": "716134528409665586"
},
"record": {
- "CNAME": "maskduck.pages.dev"
+ "NS": ["ada.ns.cloudflare.com", "albert.ns.cloudflare.com"]
}
}
diff --git a/domains/kagari.json b/domains/kagari.json
new file mode 100644
index 000000000..b7e1d15a8
--- /dev/null
+++ b/domains/kagari.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kagarifuyukawa",
+ "email": "fuyukawabot@gmail.com"
+ },
+ "record": {
+ "CNAME": "kagarifuyukawa.github.io"
+ }
+}
diff --git a/domains/kaivalya.json b/domains/kaivalya.json
index 4e85a6b6b..8a3db2036 100644
--- a/domains/kaivalya.json
+++ b/domains/kaivalya.json
@@ -6,6 +6,6 @@
"email": "kt6819@yahoo.com"
},
"record": {
- "CNAME": "Kaivalya4.github.io"
+ "CNAME": "kaivalya4.github.io"
}
}
diff --git a/domains/kartikshriwas.json b/domains/kartikshriwas.json
new file mode 100644
index 000000000..5934ebdcc
--- /dev/null
+++ b/domains/kartikshriwas.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kartikshriwas",
+ "email": "",
+ "discord": "756002965323645069",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.pJe5J41LBdrD2xDWudBiVp66kIxdQIj60sraae1BOQ-SQ27mGzfBzsGjxzPfvEFSOFZd2sceXvK87x15PvOXRtdYvfUKNAFmt-oxcbfAfSmaiH4YtSFe7re3F5QEDNfYvYH96QsMwHQoj2CP5-5CceqWULYFvkusOL_4ScO8yYYYCRrDCKCJ8nP80wUT2ltwAikLqY6iJTwJvWS1LqiInC1qAn8VfA5-0Z6pgXCL7sMIsLWO-GZKXOqGUE_b5zV8LOgRml_RQgOlCZ306TVpOE2eF7M37nZ3ETbY3OWQo125q43oiisPZGo89sfL3jRxzd4OpaC56sEvEjj5_eXE6w.Bo1EpPh6LJSpWzAWSiqEYA.IHIiJ7JdCyD6CYg9bjHxHuBTJPluhpe2PGzmCR8A9RPmRcCitK4H5bTCXCw1R3qw6gIy2IugE9-Bt5iHulfHLHgPOmeg5xN8SHo5ea-Z7U4.1LJXKyAg2vnLjmnCoxQvGQ"
+ },
+ "record": {
+ "CNAME": "kartikshriwas.github.io"
+ }
+}
diff --git a/domains/karttikeya.json b/domains/karttikeya.json
index 6cce8a1d5..aebd415f4 100644
--- a/domains/karttikeya.json
+++ b/domains/karttikeya.json
@@ -6,6 +6,6 @@
"email": "karttikeyashahi@gmail.com"
},
"record": {
- "CNAME": "KartKernel.github.io"
+ "CNAME": "kartkernel.github.io"
}
}
diff --git a/domains/kashif-kadri.json b/domains/kashif-kadri.json
index 2e92c4aea..bac383fbe 100644
--- a/domains/kashif-kadri.json
+++ b/domains/kashif-kadri.json
@@ -2,8 +2,7 @@
"description": "This is personal website",
"repo": "https://github.com/kashif-kadri/kashif-kadri.github.io",
"owner": {
- "username": "kashif-kadri",
- "email": ""
+ "username": "kashif-kadri"
},
"record": {
"URL": "https://kashif-kadri.github.io"
diff --git a/domains/katz.json b/domains/katz.json
index 5cd3444e3..1f6312968 100644
--- a/domains/katz.json
+++ b/domains/katz.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "Bananalolok",
- "discord": "banana_lol_7678",
- "email": ""
+ "discord": "banana_lol_7678"
},
"record": {
"NS": ["audrey.ns.cloudflare.com", "hank.ns.cloudflare.com"]
diff --git a/domains/keybinds.json b/domains/keybinds.json
new file mode 100644
index 000000000..b9512c5cd
--- /dev/null
+++ b/domains/keybinds.json
@@ -0,0 +1,18 @@
+{
+ "owner": {
+ "username": "tr1xem",
+ "email": "admin@trix.is-a.dev"
+ },
+ "record": {
+ "A": [
+ "185.199.110.153",
+ "185.199.109.153",
+ "185.199.111.153",
+ "185.199.108.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ]
+ }
+}
diff --git a/domains/keyurnimavat.json b/domains/keyurnimavat.json
index cc7122e38..8a65747a0 100644
--- a/domains/keyurnimavat.json
+++ b/domains/keyurnimavat.json
@@ -2,8 +2,7 @@
"description": "keyur Profile.",
"repo": "https://github.com/keyurnimavat/keyurnimavat.github.io",
"owner": {
- "username": "keyurnimavat",
- "email": ""
+ "username": "keyurnimavat"
},
"record": {
"CNAME": "keyurnimavat.github.io"
diff --git a/domains/killua.json b/domains/killua.json
index 44fed95cb..9480f2f50 100644
--- a/domains/killua.json
+++ b/domains/killua.json
@@ -6,6 +6,6 @@
"email": "bhat7362@gmail.com"
},
"record": {
- "CNAME": "Killua7362.github.io"
+ "CNAME": "killua7362.github.io"
}
}
diff --git a/domains/kind-nodes.arnxv.json b/domains/kind-nodes.arnxv.json
new file mode 100644
index 000000000..2e23bf9fd
--- /dev/null
+++ b/domains/kind-nodes.arnxv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArnavBarway",
+ "email": "arnav@sagaraga.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/kishan-bagiya.json b/domains/kishan-bagiya.json
index 38e671ee9..d56ff0cc5 100644
--- a/domains/kishan-bagiya.json
+++ b/domains/kishan-bagiya.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/kishan-bagiya/kishan-bagiya.github.io",
"owner": {
- "username": "kishan-bagiya",
- "email": ""
+ "username": "kishan-bagiya"
},
"record": {
"CNAME": "kishan-bagiya.github.io"
diff --git a/domains/kitb2romjbz3.dhlcgd.json b/domains/kitb2romjbz3.dhlcgd.json
new file mode 100644
index 000000000..3e040c29f
--- /dev/null
+++ b/domains/kitb2romjbz3.dhlcgd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dhlcgd",
+ "email": "dhlcgdofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "gv-zz3nklni3izils.dv.googlehosted.com"
+ }
+}
diff --git a/domains/kn0tzer.json b/domains/kn0tzer.json
new file mode 100644
index 000000000..fbb9808a8
--- /dev/null
+++ b/domains/kn0tzer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kn0tzer",
+ "email": "g4marchi@gmail.com"
+ },
+ "record": {
+ "CNAME": "kn0tzer.github.io"
+ }
+}
diff --git a/domains/konstantin-ivanov.json b/domains/konstantin-ivanov.json
new file mode 100644
index 000000000..1c6418840
--- /dev/null
+++ b/domains/konstantin-ivanov.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KonstanTinoVino",
+ "email": "koiv.work@gmail.com"
+ },
+ "record": {
+ "CNAME": "konstantinovino.github.io"
+ }
+}
diff --git a/domains/kory.json b/domains/kory.json
index 1c42effa1..183e86693 100644
--- a/domains/kory.json
+++ b/domains/kory.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/korziee",
"owner": {
"username": "korziee",
- "twitter": "korziee",
- "email": ""
+ "twitter": "korziee"
},
"record": {
"URL": "https://www.koryporter.com"
diff --git a/domains/krebinkkj.json b/domains/krebinkkj.json
new file mode 100644
index 000000000..827dd575f
--- /dev/null
+++ b/domains/krebinkkj.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "krebinkkj",
+ "email": "krebinkkj@gmail.com",
+ "discord": "1041878326169587732"
+ },
+ "record": {
+ "CNAME": "krebinkkj.vercel.app"
+ }
+}
diff --git a/domains/kushdhingra.json b/domains/kushdhingra.json
index 7bc78d6d5..94d0dfea3 100644
--- a/domains/kushdhingra.json
+++ b/domains/kushdhingra.json
@@ -1,11 +1,11 @@
{
"owner": {
- "username": "Kush-Dhingra",
+ "username": "kushdhingra",
"email": "kushdhingra3112@gmail.com",
"discord": "1035869217796403220",
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJTReSXxF-8BxDH8rn6i_DIx0XuVrc4yYnOEN1Awfp7mZcYPIgcPt4mvsScPbJYhZLN5XtDlxl0DcdU8Za12GCk-aIWegJ9-_32bdjw3agBzaJ-ltaslRoVpNJ3zfLaQ9V-BrhwVMEJhpz5-0eYeEiikL4tHAoPzzKMlYIf8f5l7IL6aMfhBZvIFf0B3upGg2FeOpFCXAsttU5QiKkjUt4BjetuYb29UJoNzDco1ZExLdudlKd_fz6IcaAsw2K1u6MMDDs2khsic9M42AE3pRFCP_hacdllY5Z66ATlmKhYAxFryJYWrgbfpGX2PxSrQalAao_IP1TIGgiq7ugiBDw.Lg-WIZSH_nzEfnLZct78Cg.soPtqjy32EA2Ew63dHQ8P8-dt4ZihvZpipBVkHyX_rlnv-y5YpS5v2-2d3O5hGHRfCKnfxQsvewDfcPSGa4_Oq8BN01Kzhbet8AXRCK6uOM.ouoa2YqHKAeX9lKWZoFaog"
},
"record": {
- "CNAME": "kushdhingra.netlify.app"
+ "CNAME": "kushdhingra.vercel.app"
}
}
diff --git a/domains/kuyacarlos.json b/domains/kuyacarlos.json
index bdaf6eee1..ec0eb10c3 100644
--- a/domains/kuyacarlos.json
+++ b/domains/kuyacarlos.json
@@ -5,6 +5,6 @@
"email": "carlosbenedictn@gmail.com"
},
"record": {
- "CNAME": "CarlosNatanauan.github.io"
+ "CNAME": "carlosnatanauan.github.io"
}
}
diff --git a/domains/kylemartin.json b/domains/kylemartin.json
index b0d003cd7..18587dacd 100644
--- a/domains/kylemartin.json
+++ b/domains/kylemartin.json
@@ -2,8 +2,7 @@
"description": "Kyle Martin",
"repo": "https://github.com/js-kyle/js-kyle.github.io",
"owner": {
- "username": "js-kyle",
- "email": ""
+ "username": "js-kyle"
},
"record": {
"CNAME": "js-kyle.github.io"
diff --git a/domains/l.funn.json b/domains/l.funn.json
new file mode 100644
index 000000000..161ac649c
--- /dev/null
+++ b/domains/l.funn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "funnsam",
+ "email": "funnsam8@gmail.com"
+ },
+ "record": {
+ "CNAME": "funnsam.github.io"
+ }
+}
diff --git a/domains/l.ps.json b/domains/l.ps.json
new file mode 100644
index 000000000..f5f987d87
--- /dev/null
+++ b/domains/l.ps.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PrivacySecured",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ",
+ "notes": "I rarely go on my emails. If I do its because I needed a verification code."
+ },
+ "record": {
+ "CNAME": "cname.short.io"
+ }
+}
diff --git a/domains/l0ser.json b/domains/l0ser.json
index b5cb346b0..d1b55020d 100644
--- a/domains/l0ser.json
+++ b/domains/l0ser.json
@@ -6,6 +6,6 @@
"email": "loserlackey@gmail.com"
},
"record": {
- "CNAME": "L0SER8228.github.io"
+ "CNAME": "l0ser8228.github.io"
}
}
diff --git a/domains/lakhani-palak.json b/domains/lakhani-palak.json
index 6c0b5f797..cacb9134d 100644
--- a/domains/lakhani-palak.json
+++ b/domains/lakhani-palak.json
@@ -2,8 +2,7 @@
"description": "Lakhani Palak.",
"repo": "https://github.com/lakhani-palak/lakhani-palak.github.io",
"owner": {
- "username": "lakhani-palak",
- "email": ""
+ "username": "lakhani-palak"
},
"record": {
"CNAME": "lakhani-palak.github.io"
diff --git a/domains/lamnguyenz.json b/domains/lamnguyenz.json
new file mode 100644
index 000000000..e3f2ffe57
--- /dev/null
+++ b/domains/lamnguyenz.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal Blog Site",
+ "repo": "https://github.com/LamNguyenz/lamnguyenz.github.io",
+ "owner": {
+ "username": "LamNguyenz",
+ "email": "lamnguyen11e@gmail.com"
+ },
+ "record": {
+ "CNAME": "lamnguyenz.github.io"
+ }
+}
diff --git a/domains/lavalink.akshtt.json b/domains/lavalink.akshtt.json
index 01ec8e9d9..ad11a082f 100644
--- a/domains/lavalink.akshtt.json
+++ b/domains/lavalink.akshtt.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "LegendOP1041",
+ "username": "akshtt-dev",
"email": "maillegendop@gmail.com",
"discord": "1056531806763102218"
},
diff --git a/domains/ldt.json b/domains/ldt.json
new file mode 100644
index 000000000..0a4eadf66
--- /dev/null
+++ b/domains/ldt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luongductrong",
+ "email": "luongductrong2004@gmail.com"
+ },
+ "record": {
+ "CNAME": "luongductrong.github.io"
+ }
+}
diff --git a/domains/lemmy.json b/domains/lemmy.json
deleted file mode 100644
index 419a2b24a..000000000
--- a/domains/lemmy.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Registration blocked due to consistent DDoS attacks against the domain.",
- "owner": {
- "username": "is-a-dev",
- "email": "security@is-a.dev"
- },
- "record": {
- "A": ["192.0.2.1"]
- },
- "proxied": true
-}
diff --git a/domains/lenicyl.json b/domains/lenicyl.json
index d28d70dd9..78dcec555 100644
--- a/domains/lenicyl.json
+++ b/domains/lenicyl.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "Lenicyl",
- "discord": "HUT#5940",
- "email": ""
+ "discord": "HUT#5940"
},
"record": {
"CNAME": "lenicyl.github.io"
diff --git a/domains/letum.json b/domains/letum.json
index 6f545ae08..c7060b934 100644
--- a/domains/letum.json
+++ b/domains/letum.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "amoramicae",
- "discord": "1252631745514180790",
- "email": ""
+ "discord": "1252631745514180790"
},
"record": {
"CNAME": "letum.pages.dev"
diff --git a/domains/levani.json b/domains/levani.json
index de5c18571..86ce4423d 100644
--- a/domains/levani.json
+++ b/domains/levani.json
@@ -4,6 +4,6 @@
"email": "vashadzelevani11@gmail.com"
},
"record": {
- "CNAME": "LevaniVashadze.github.io"
+ "CNAME": "levanivashadze.github.io"
}
}
diff --git a/domains/lgstfn.json b/domains/lgstfn.json
new file mode 100644
index 000000000..7c4cbe3f7
--- /dev/null
+++ b/domains/lgstfn.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "lungustefan",
+ "email": "hi@lungustefan.ro",
+ "phone": "(+40) 0770618625",
+ "discord": "753179409682399332",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZerVkVuk5RE7iT8ymXVcKhUkihyAdAbufacrfxq1u7NKQ4Hd0_PbY5FYDAR5uuVd-sCe7fOztiSKV7f9q1OI4HNGDqQxiaWqzom_lQsrIMW-gWUDsBG4Vo8gsq0wrw2th797i-JfsXy2crWaeXlX7X1kROV5KZhGwlSusnUrMp3jlN-uUM3b4hxUyEs3grbh4BiZ9CWShm-kLUs572OBpMigXh3aO0DcUl-BdYdlpSEdRQe8zwylJbFnetxG3qBaMcciGwImixY6V4qaqFwH18isGjDknsHB2WvXM8ekMZmSxgMyRtv1VRSbC22grzMeBazgWoj3x65KU3Z8C7KNmw.w-d8n6WalLAvFcWHqlRkcw.W7GJTwpNRB9pUehhfBXVlkOR1knSNSjvJWeDViV6u2h6AyBdwyaAyILEQzC5ishw0f209VgdyaCqocC7nJp_ZjWjAfcyw0ICLiUXM37Sn3Q.xQOo4RjPMh6dBbWiF1Polw"
+ },
+ "record": {
+ "NS": ["aron.ns.cloudflare.com", "dilbert.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/limbanitejal.json b/domains/limbanitejal.json
index 5b8552bd6..9e6fcd8f8 100644
--- a/domains/limbanitejal.json
+++ b/domains/limbanitejal.json
@@ -2,8 +2,7 @@
"description": "Limbani tejal Profile.",
"repo": "https://github.com/limbanitejal/limbanitejal.github.io",
"owner": {
- "username": "limbanitejal",
- "email": ""
+ "username": "limbanitejal"
},
"record": {
"CNAME": "limbanitejal.github.io"
diff --git a/domains/link.yxz.json b/domains/link.yxz.json
new file mode 100644
index 000000000..caf22b944
--- /dev/null
+++ b/domains/link.yxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yz9551",
+ "discord": "yz9551"
+ },
+ "record": {
+ "CNAME": "track.smtp2go.net"
+ }
+}
diff --git a/domains/linkman.json b/domains/linkman.json
new file mode 100644
index 000000000..a855040ca
--- /dev/null
+++ b/domains/linkman.json
@@ -0,0 +1,11 @@
+{
+ "description": "Website to put information about my projects",
+ "repo": "https://github.com/linkman8912/website",
+ "owner": {
+ "username": "linkman8912",
+ "email": "linkman8912@proton.me"
+ },
+ "record": {
+ "CNAME": "website-1i7.pages.dev"
+ }
+}
diff --git a/domains/linstall.json b/domains/linstall.json
new file mode 100644
index 000000000..3d2753ff3
--- /dev/null
+++ b/domains/linstall.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "riotoff",
+ "discord": "1040929084684902460"
+ },
+ "record": {
+ "CNAME": "riotoff.github.io"
+ }
+}
diff --git a/domains/llm.fawwaz.json b/domains/llm.fawwaz.json
index 3b0aaa65c..f3ce99921 100644
--- a/domains/llm.fawwaz.json
+++ b/domains/llm.fawwaz.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "fawwazanvilen",
- "email": "fawwazanvi@gmail.com"
- },
- "record": {
- "A": [
- "103.16.117.247"
- ]
- }
+ "owner": {
+ "username": "fawwazanvilen",
+ "email": "fawwazanvi@gmail.com"
+ },
+ "record": {
+ "A": ["103.16.117.247"]
+ }
}
diff --git a/domains/lndr2501.json b/domains/lndr2501.json
index 1158094a3..92e436631 100644
--- a/domains/lndr2501.json
+++ b/domains/lndr2501.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "Lndr2501",
- "email": ""
+ "username": "Lndr2501"
},
"repo": "https://github.com/Lndr2501/Lndr2501",
"record": {
diff --git a/domains/logan.json b/domains/logan.json
index 9461a4911..cef72e17d 100644
--- a/domains/logan.json
+++ b/domains/logan.json
@@ -7,6 +7,6 @@
"twitter": "LoganTheDudeRox"
},
"record": {
- "CNAME": "LoganLikesToCode.github.io"
+ "CNAME": "loganlikestocode.github.io"
}
}
diff --git a/domains/loinguyende.json b/domains/loinguyende.json
new file mode 100644
index 000000000..b6be86811
--- /dev/null
+++ b/domains/loinguyende.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "loinguyen3108",
+ "email": "ntloic3tbt@gmail.com"
+ },
+ "record": {
+ "CNAME": "my-second-brain-omega.vercel.app"
+ }
+}
diff --git a/domains/lonelil.json b/domains/lonelil.json
index eeb702326..aac002461 100644
--- a/domains/lonelil.json
+++ b/domains/lonelil.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/lonelil/lonelil.github.io",
"owner": {
"username": "lonelil",
- "discord": "lonelil#0001",
- "email": ""
+ "discord": "lonelil#0001"
},
"record": {
"CNAME": "lonelil.github.io"
diff --git a/domains/loser.json b/domains/loser.json
index 3490fc680..59a8bde05 100644
--- a/domains/loser.json
+++ b/domains/loser.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
-
"TXT": "forward-email=gus.creten@gmail.com"
}
}
diff --git a/domains/losr.json b/domains/losr.json
index 3490fc680..59a8bde05 100644
--- a/domains/losr.json
+++ b/domains/losr.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
-
"TXT": "forward-email=gus.creten@gmail.com"
}
}
diff --git a/domains/lowrp.site.json b/domains/lowrp.site.json
deleted file mode 100644
index 4018785c4..000000000
--- a/domains/lowrp.site.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Grinti1",
- "email": "mlody6869@gmail.com"
- },
- "record": {
- "CNAME": "lowrp.site"
- }
-}
diff --git a/domains/lqhuy.json b/domains/lqhuy.json
new file mode 100644
index 000000000..13a49f7ca
--- /dev/null
+++ b/domains/lqhuy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Lqhuy125",
+ "email": "lequanghuy1252206@gmail.com"
+ },
+ "record": {
+ "CNAME": "lqhuy125.github.io"
+ }
+}
diff --git a/domains/lucy.json b/domains/lucy.json
index b0edfa561..ac69fef85 100644
--- a/domains/lucy.json
+++ b/domains/lucy.json
@@ -7,6 +7,6 @@
"discord": "romanromannya"
},
"record": {
- "CNAME": "Hai-Lucy.github.io"
+ "CNAME": "hai-lucy.github.io"
}
}
diff --git a/domains/luihh.json b/domains/luihh.json
index 82db15c06..a5fef5c3b 100644
--- a/domains/luihh.json
+++ b/domains/luihh.json
@@ -5,6 +5,6 @@
"discord": "481268875586174986"
},
"record": {
- "CNAME": "extreme-demons-spreadsheet.vercel.app"
+ "CNAME": "spreadsheet-fih.pages.dev"
}
}
diff --git a/domains/lumi.json b/domains/lumi.json
index 23c58ff6d..91d0b04f2 100644
--- a/domains/lumi.json
+++ b/domains/lumi.json
@@ -1,9 +1,12 @@
{
"owner": {
"username": "itsFatlum",
+ "email": "",
"discord": "563697359423406082"
},
"record": {
- "A": ["76.76.21.21"]
+ "A": ["76.76.21.21"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
}
}
diff --git a/domains/lumidevelopment.json b/domains/lumidevelopment.json
new file mode 100644
index 000000000..e8cd32dc5
--- /dev/null
+++ b/domains/lumidevelopment.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "itsFatlum",
+ "email": "",
+ "discord": "563697359423406082"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": ["v=spf1 include:spf.improvmx.com ~all"]
+ }
+}
diff --git a/domains/lunah.json b/domains/lunah.json
index 11be3357a..bb6a54ddf 100644
--- a/domains/lunah.json
+++ b/domains/lunah.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/piotr25691",
"owner": {
"username": "piotr25691",
- "discord": "@b4.lunah"
+ "discord": "b4.lunah"
},
"record": {
"A": ["157.173.204.104"],
diff --git a/domains/lungustefan.json b/domains/lungustefan.json
new file mode 100644
index 000000000..e85e8ed1f
--- /dev/null
+++ b/domains/lungustefan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lungustefan",
+ "email": "hi@lungustefan.ro",
+ "discord": "753179409682399332",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZerVkVuk5RE7iT8ymXVcKhUkihyAdAbufacrfxq1u7NKQ4Hd0_PbY5FYDAR5uuVd-sCe7fOztiSKV7f9q1OI4HNGDqQxiaWqzom_lQsrIMW-gWUDsBG4Vo8gsq0wrw2th797i-JfsXy2crWaeXlX7X1kROV5KZhGwlSusnUrMp3jlN-uUM3b4hxUyEs3grbh4BiZ9CWShm-kLUs572OBpMigXh3aO0DcUl-BdYdlpSEdRQe8zwylJbFnetxG3qBaMcciGwImixY6V4qaqFwH18isGjDknsHB2WvXM8ekMZmSxgMyRtv1VRSbC22grzMeBazgWoj3x65KU3Z8C7KNmw.w-d8n6WalLAvFcWHqlRkcw.W7GJTwpNRB9pUehhfBXVlkOR1knSNSjvJWeDViV6u2h6AyBdwyaAyILEQzC5ishw0f209VgdyaCqocC7nJp_ZjWjAfcyw0ICLiUXM37Sn3Q.xQOo4RjPMh6dBbWiF1Polw"
+ },
+ "record": {
+ "NS": ["teagan.ns.cloudflare.com", "yevgen.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/luoduyu.json b/domains/luoduyu.json
new file mode 100644
index 000000000..6eba634d5
--- /dev/null
+++ b/domains/luoduyu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "luoduyu",
+ "email": "luoduyu@hotmail.com"
+ },
+ "record": {
+ "CNAME":"luoduyu.github.io"
+ }
+}
diff --git a/domains/luoxh.json b/domains/luoxiaohei.json
similarity index 70%
rename from domains/luoxh.json
rename to domains/luoxiaohei.json
index 661882e46..1ef5b4c72 100644
--- a/domains/luoxh.json
+++ b/domains/luoxiaohei.json
@@ -3,8 +3,9 @@
"repo": "https://github.com/lxhapp/lxhapp.github.io",
"owner": {
"username": "Melishy",
- "email": "nazariktymkiv67@gmail.com",
- "twitter": "themelishy"
+ "email": "themelishy@outlook.com",
+ "twitter": "themelishy",
+ "discord": "1053012080812359750"
},
"record": {
"CNAME": "lxhapp.github.io"
diff --git a/domains/m.a.s.k.d.u.c.k.json b/domains/m.a.s.k.d.u.c.k.json
deleted file mode 100644
index 7ff0a0ee8..000000000
--- a/domains/m.a.s.k.d.u.c.k.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "MaskDuck",
- "discord": "716134528409665586",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.FCODcvMVh-iHQ04kj7Eff1SC1Gh-ycagZxRqb-Y0X8tJwM8YnSqscZVkyRbW36X8X_EycjD5DLhkuW1dlk_wNaRGXrROY2_sdUxL71rW6cjc6OUqYdGaBrkqHfQ_R-a0vUWHyNQTDd266RV2RfYTdT71siAeMMFVgC1S7K7bEVlo5n2yYZLJg0-BkSevG4tDLyndsB4rPzeJTm-8EKIk62A-9Xfla0zbxQpY8x7gAc9ukpCH5fkITPcbGAMSitGXEtd7bMzErBdP-97X-c9hFF_B2ot2U8J-W_Rp9z8xk-vCKrGGEG76rqXyY1tSN68iUyL8at5p0-vGliTuALLNsA.zQD4sI7edMLRBD_ii-KXDA.Y689CjD1NbsRoyYnoiO9Arg5sHrlQ1SxpXExtf8Gn1VRmK86FuKRYTBvwSc_qIz7LqL90lEuEcNwUAWQHXx6aKIw90X_WYDLagM8nsugxBo.dO8s5XxLzH0gsfWJtnKNmg"
- },
- "record": {
- "CNAME": "maskduck.pages.dev"
- }
-}
diff --git a/domains/m.json b/domains/m.json
new file mode 100644
index 000000000..1570b3e57
--- /dev/null
+++ b/domains/m.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "is-a-dev",
+ "email": "admin@is-a.dev"
+ },
+ "record": {},
+ "reserved": true
+}
diff --git a/domains/m.ps.json b/domains/m.ps.json
new file mode 100644
index 000000000..e3a9e8b66
--- /dev/null
+++ b/domains/m.ps.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "PrivacySecured",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ",
+ "notes": "I rarely go on my emails. If I do its because I needed a verification code."
+ },
+ "record": {
+ "TXT": [
+ "zoho-verification=zb51857919.zmverify.zoho.com",
+ "v=spf1 include:zohomail.com ~all"
+ ],
+ "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"]
+ }
+}
diff --git a/domains/mackenzie.json b/domains/mackenzie.json
new file mode 100644
index 000000000..69ca93fba
--- /dev/null
+++ b/domains/mackenzie.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jojocraftde-dev",
+ "email": "jojocraftde@proton.me"
+ },
+ "record": {
+ "A": ["91.200.103.154"]
+ }
+}
diff --git a/domains/macos.notaperson535.json b/domains/macos.notaperson535.json
index ab1b08fc4..db686df20 100644
--- a/domains/macos.notaperson535.json
+++ b/domains/macos.notaperson535.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/madhav.json b/domains/madhav.json
index 641c6dff0..dad17bb84 100644
--- a/domains/madhav.json
+++ b/domains/madhav.json
@@ -5,6 +5,6 @@
"email": "madhav.v.1996@gmail.com"
},
"record": {
- "CNAME": "LaBus3.github.io"
+ "CNAME": "labus3.github.io"
}
}
diff --git a/domains/madhead341.json b/domains/madhead341.json
index 3490fc680..59a8bde05 100644
--- a/domains/madhead341.json
+++ b/domains/madhead341.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
-
"TXT": "forward-email=gus.creten@gmail.com"
}
}
diff --git a/domains/magitian.json b/domains/magitian.json
index feb7c2c8c..537cbd209 100644
--- a/domains/magitian.json
+++ b/domains/magitian.json
@@ -1,11 +1,11 @@
{
"description": "Home for my blogs",
- "repo": "https://github.com/themagitian/themagitian.github.io",
+ "repo": "https://github.com/TheMagitian/themagitian.github.io-old",
"owner": {
"username": "magitian",
"email": "magitian@duck.com"
},
"record": {
- "CNAME": "themagitian.github.io"
+ "CNAME": "magitian.vercel.app"
}
}
diff --git a/domains/mahesh.json b/domains/mahesh.json
index 3fe1b46b6..507cc5270 100644
--- a/domains/mahesh.json
+++ b/domains/mahesh.json
@@ -4,6 +4,6 @@
"email": "dhingra3673@gmail.com"
},
"record": {
- "CNAME": "MaheshTheDeveloper.github.io"
+ "CNAME": "maheshthedeveloper.github.io"
}
}
diff --git a/domains/maheta-bhavik.json b/domains/maheta-bhavik.json
index dec45dc47..d2eb68269 100644
--- a/domains/maheta-bhavik.json
+++ b/domains/maheta-bhavik.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/maheta-bhavik/maheta-bhavik.github.io",
"owner": {
- "username": "maheta-bhavik",
- "email": ""
+ "username": "maheta-bhavik"
},
"record": {
"CNAME": "maheta-bhavik.github.io"
diff --git a/domains/mahevish-husseni.json b/domains/mahevish-husseni.json
index 5213f462e..65d0b2b2d 100644
--- a/domains/mahevish-husseni.json
+++ b/domains/mahevish-husseni.json
@@ -2,8 +2,7 @@
"description": "Mahevish Husseni",
"repo": "https://github.com/mahevish-husseni/mahevish-husseni.github.io",
"owner": {
- "username": "mahevish-husseni",
- "email": ""
+ "username": "mahevish-husseni"
},
"record": {
"CNAME": "mahevish-husseni.github.io"
diff --git a/domains/mahmud.json b/domains/mahmud.json
index 4c5e3849b..3322304f2 100644
--- a/domains/mahmud.json
+++ b/domains/mahmud.json
@@ -7,6 +7,6 @@
"twitter": "mahmudislam47"
},
"record": {
- "CNAME": "JBAxB8h7.github.io"
+ "CNAME": "jbaxb8h7.github.io"
}
}
diff --git a/domains/mail.arman.json b/domains/mail.arman.json
index 9e716b82f..be189220d 100644
--- a/domains/mail.arman.json
+++ b/domains/mail.arman.json
@@ -6,7 +6,6 @@
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/mail.boolean442.json b/domains/mail.boolean442.json
deleted file mode 100644
index b008c8f0f..000000000
--- a/domains/mail.boolean442.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "boolean44-repos",
- "email": "serenitypalmer10@gmail.com"
- },
- "record": {
- "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": ["forward-email=palmerowen100@gmail.com"]
- }
-}
diff --git a/domains/mail.deadcode.json b/domains/mail.deadcode.json
index ccda1e165..2726276ef 100644
--- a/domains/mail.deadcode.json
+++ b/domains/mail.deadcode.json
@@ -2,10 +2,10 @@
"owner": {
"username": "RichardKanshen",
"email": "richard@kanshen.click",
- "twitter": "@kanskje0",
+ "twitter": "kanskje0",
"discord": "kanshen.uwu",
"bluesky": "kanshen.click",
- "telegram": "@richardkanskje"
+ "telegram": "richardkanskje"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
diff --git a/domains/mail.gs.json b/domains/mail.gs.json
index eaac3be20..ac0096acc 100644
--- a/domains/mail.gs.json
+++ b/domains/mail.gs.json
@@ -10,10 +10,6 @@
"zoho-verification=zb26727871.zmverify.zoho.com",
"v=spf1 include:zohomail.com ~all"
],
- "MX": [
- "mx.zoho.com",
- "mx2.zoho.com",
- "mx3.zoho.com"
- ]
+ "MX": ["mx.zoho.com", "mx2.zoho.com", "mx3.zoho.com"]
}
}
diff --git a/domains/mail.icehead.json b/domains/mail.icehead.json
deleted file mode 100644
index 765bbc998..000000000
--- a/domains/mail.icehead.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Tanjimfuad",
- "email": "tanjim_fuad@proton.me"
- },
- "record": {
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/mail.jamied132.json b/domains/mail.jamied132.json
deleted file mode 100644
index 4180fcec7..000000000
--- a/domains/mail.jamied132.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "jamied132",
- "email": "jamied132.email@gmail.com"
- },
- "record": {
- "MX": ["mail.hmailserver.com"]
- }
-}
diff --git a/domains/mail.letum.json b/domains/mail.letum.json
index 287df58a0..e9c949849 100644
--- a/domains/mail.letum.json
+++ b/domains/mail.letum.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "amoramicae",
- "discord": "1252631745514180790",
- "email": ""
+ "discord": "1252631745514180790"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
diff --git a/domains/mail.masseo.json b/domains/mail.masseo.json
new file mode 100644
index 000000000..1447cd68a
--- /dev/null
+++ b/domains/mail.masseo.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "matte-oss",
+ "email": "7sz8jlw6h@mozmail.com"
+ },
+ "record": {
+ "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"],
+ "TXT": [
+ "v=spf1 include:zohomail.eu ~all",
+ "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdKJ9pgi76G8kOhX1v4hDt3jros0cBQMLMeKc8L6F8iLBUz78XwP4qRO/1sfdl1vSavi+KsybaNotnLfA2+vA+txPzR/zUEdPWTZhz/Q7iQqo7AuX8hZDY2emDA/0wAkSVAQ1i/KKmSnnR1q6RvJcjPmVCW2gjpw9MOfCwt7PAwIDAQAB"
+ ]
+ }
+}
diff --git a/domains/mail.minmit.json b/domains/mail.minmit.json
index 9c539779f..9c375418a 100644
--- a/domains/mail.minmit.json
+++ b/domains/mail.minmit.json
@@ -7,7 +7,6 @@
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/mail.mrstickypiston.json b/domains/mail.mrstickypiston.json
new file mode 100644
index 000000000..2179d6b97
--- /dev/null
+++ b/domains/mail.mrstickypiston.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MrStickyPiston",
+ "discord": "700766242268774471",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag"
+ },
+
+ "record": {
+ "TXT": "v=spf1 include:_spf.mailersend.net ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mail.satindar.json b/domains/mail.satindar.json
deleted file mode 100644
index 779218a39..000000000
--- a/domains/mail.satindar.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Mail for basic privacy",
- "owner": {
- "username": "satindar31",
- "email": "satindar@satindar-is.me"
- },
- "record": {
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
diff --git a/domains/mail.senaditya.json b/domains/mail.senaditya.json
index 615cdf9fc..c5c016185 100644
--- a/domains/mail.senaditya.json
+++ b/domains/mail.senaditya.json
@@ -6,7 +6,6 @@
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/mail.shymike.json b/domains/mail.shymike.json
index 2e9a271ef..8c23c8219 100644
--- a/domains/mail.shymike.json
+++ b/domains/mail.shymike.json
@@ -1,11 +1,9 @@
{
"owner": {
- "username": "ImShyMike",
- "email": ""
+ "username": "ImShyMike"
},
"record": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/mail.zvdxc.json b/domains/mail.zvdxc.json
deleted file mode 100644
index e089431a4..000000000
--- a/domains/mail.zvdxc.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "description": "A sub-subdomain for use with a mail-forwarder, because the main subdomain zvdxc.is-a.dev has a CNAME and doesnt work. --MX records will be updated later, because Zoho--",
- "owner": {
- "username": "zvdxc",
- "email": "zvdxc11@gmail.com"
- },
- "record": {
- "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"],
- "TXT": [
- "zoho-verification=zb90341973.zmverify.zoho.eu",
- "v=spf1 include:zohomail.eu ~all"
- ]
- }
-}
diff --git a/domains/maintainers.json b/domains/maintainers.json
new file mode 100644
index 000000000..1570b3e57
--- /dev/null
+++ b/domains/maintainers.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "is-a-dev",
+ "email": "admin@is-a.dev"
+ },
+ "record": {},
+ "reserved": true
+}
diff --git a/domains/mandaninikunj.json b/domains/mandaninikunj.json
index 04eba9dd2..33cd05b5a 100644
--- a/domains/mandaninikunj.json
+++ b/domains/mandaninikunj.json
@@ -2,8 +2,7 @@
"description": "nikunj Profile.",
"repo": "https://github.com/mandaninikunj/mandaninikunj.github.io",
"owner": {
- "username": "mandaninikunj",
- "email": ""
+ "username": "mandaninikunj"
},
"record": {
"CNAME": "mandaninikunj.github.io"
diff --git a/domains/mano.json b/domains/mano.json
index bedef02b9..40398015d 100644
--- a/domains/mano.json
+++ b/domains/mano.json
@@ -1,9 +1,9 @@
-{
- "owner": {
- "username": "infofbnr",
- "email": "manuelhagopian961@gmail.com"
- },
- "record": {
- "CNAME": "infofbnr.github.io"
- }
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "infofbnr",
+ "email": "manuelhagopian961@gmail.com"
+ },
+ "record": {
+ "CNAME": "infofbnr.github.io"
+ }
+}
diff --git a/domains/manodeepray.json b/domains/manodeepray.json
index 0562ca366..c2f586aac 100644
--- a/domains/manodeepray.json
+++ b/domains/manodeepray.json
@@ -5,6 +5,6 @@
"email": "manodeepray@gmail.com"
},
"record": {
- "CNAME": "Manodeepray.github.io"
+ "CNAME": "manodeepray.github.io"
}
}
diff --git a/domains/maps.vulcanocraft.json b/domains/maps.vulcanocraft.json
new file mode 100644
index 000000000..06fb36cad
--- /dev/null
+++ b/domains/maps.vulcanocraft.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.sIf_Ps8WbH_gxCdpTRX4pW-t2UH0uDm6j9dZbmDUM4joSTKNzlCq_vILFhEnBaffuUmYlpK7H0D29oZkl_agqgJ54Py6zm0E3IbFzbD7d5MIZeK_FXwpDb4yVV1dUMqB2iwIRG8dteCaE1dSIxMrckwuKxHR4QQR3k3_lr5J9Gx5RHIqYv3aWcVvgto8OtLX77SAywaz_b9ApXLHcokyGn20R4olg-7F_7OxFS6evQlnUabcf9sM4g-FkmygM_lDwCkjYmlXfTFmgMvE3XFpmheQY0yDtZSOKdGhmCGoxQTygyQuBlqmLd8GLnCVfEmCBc2oS4xLI1KzT5mb3rYbDA.h31K0cwMVajgtr9_PBGCvg.CzF5EYfU9U2LnSrayx3TCx2n3FHTG8ywzS6TONZmJdBWIB2GOg5hlXXYk0CMRVOO62DpZ_P1HGsN3utzVxNRJExKJHCr7VUCpJ0sPYpd8KdBfpEKHwJ8A3tHFPXqHYwx.0q-hLeHabXueOUCtZtJV4Q"
+ },
+ "record": {
+ "CNAME": "vulcanomap.pages.dev"
+ }
+}
diff --git a/domains/mariano-avila.json b/domains/mariano-avila.json
index d5db86d13..0671c1ad9 100644
--- a/domains/mariano-avila.json
+++ b/domains/mariano-avila.json
@@ -4,7 +4,7 @@
"owner": {
"username": "dxravage",
"email": "marianoavilaj4@gmail.com",
- "twitter": "@MarianoAvilaC"
+ "twitter": "MarianoAvilaC"
},
"record": {
"CNAME": "dxravage.github.io"
diff --git a/domains/mariano.avila.json b/domains/mariano.avila.json
deleted file mode 100644
index b0af1b49c..000000000
--- a/domains/mariano.avila.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "DxRavage",
- "email": "marianoavilaj4@gmail.com"
- },
- "record": {
- "CNAME": "dxravage.github.io"
- }
-}
diff --git a/domains/marketplace.syntaxloopers.json b/domains/marketplace.syntaxloopers.json
deleted file mode 100644
index 726befd50..000000000
--- a/domains/marketplace.syntaxloopers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": ["129.213.151.29"]
- }
-}
diff --git a/domains/masseo.json b/domains/masseo.json
new file mode 100644
index 000000000..c47cca342
--- /dev/null
+++ b/domains/masseo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "matte-oss",
+ "email": "7sz8jlw6h@mozmail.co"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/mathiscool.json b/domains/mathiscool.json
index 0195c7f09..f1d1e9d31 100644
--- a/domains/mathiscool.json
+++ b/domains/mathiscool.json
@@ -6,6 +6,6 @@
"email": "testbot-github@gmail.com"
},
"record": {
- "CNAME": "Mathiscool.github.io"
+ "CNAME": "mathiscool.github.io"
}
}
diff --git a/domains/mausami-parmar.json b/domains/mausami-parmar.json
index 68004c096..5ce30ac48 100644
--- a/domains/mausami-parmar.json
+++ b/domains/mausami-parmar.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/mausami-parmar/mausami-parmar.github.io",
"owner": {
- "username": "mausami-parmar",
- "email": ""
+ "username": "mausami-parmar"
},
"record": {
"CNAME": "mausami-parmar.github.io"
diff --git a/domains/mayank-rathva.json b/domains/mayank-rathva.json
index 59b2a594f..0135f50cb 100644
--- a/domains/mayank-rathva.json
+++ b/domains/mayank-rathva.json
@@ -2,8 +2,7 @@
"description": "This is personal website",
"repo": "https://github.com/mayank-rathva/mayank-rathva.github.io",
"owner": {
- "username": "mayank-rathva",
- "email": ""
+ "username": "mayank-rathva"
},
"record": {
"CNAME": "mayank-rathva.github.io"
diff --git a/domains/mc.esb.json b/domains/mc.esb.json
deleted file mode 100644
index ac2255ca1..000000000
--- a/domains/mc.esb.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "EducatedSuddenBucket",
- "email": "educatedsuddenbucket@gmail.com"
- },
- "record": {
- "CNAME": "bff5bd034c7fbbeafaaf626f505c8cc5.ipv4.tcpshield.com"
- }
-}
diff --git a/domains/mc.katz.json b/domains/mc.katz.json
deleted file mode 100644
index c9e4c260a..000000000
--- a/domains/mc.katz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "bananalolok",
- "email": "imethlol1234@gmail.com",
- "discord": "banana_lol_7678"
- },
- "record": {
- "CNAME": "5e8898d8b635c8dbffbd3c5c7574b456.ipv4.tcpshield.com"
- }
-}
diff --git a/domains/mc.sono.json b/domains/mc.sono.json
deleted file mode 100644
index fbc1742ff..000000000
--- a/domains/mc.sono.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "email": "sono.arbeit@gmail.com"
- },
- "record": {
- "A": ["45.92.217.48"]
- }
-}
diff --git a/domains/mc.vulcanocraft.json b/domains/mc.vulcanocraft.json
index 0f1c49e5d..f1c58414c 100644
--- a/domains/mc.vulcanocraft.json
+++ b/domains/mc.vulcanocraft.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "VulcanoSoftware",
- "email": "",
- "discord": "814891541205876767",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WYB8jKD71t5bNPCzGO99a6kcjoLLipJVLzHxhAqoPUcGLm8MAPJRa4WMlKhCDM0eN49rQ5EHzL08go2s05jE12ezxmZ92m58MJ9ztAlF16TOxCTI4Vy3hFknZlOWhIdE69DhINJT1sG1ceWLY_oGk758-GIvBAQrDVPB-5m1nYEpp2LYipiMngwgZDvz0gLF0BXXRrP7b74phJUmw39nK1_gE1uJFKuDknWGYlCxPfhJ1aNQEAHHxgbuVghaLCv3tIqrh29j99dXZjw8wFxmaubcew0eei1NaG_An_OzbgwsTJn3QiAnanYRtnSaMGBGTHzhJ3OWx9st5Phxfut7lQ.qPrZy8EOYsGDVaIXF-Ilcg.CXoxIk3NL2J6h0tipv9pRe47YDHQ3Vl7VB58l0tdPtSTE_guNUoBwxvNOLkwj5pozh3oVKlqdGH4sego6PCw1blqG5nIPKq3Lju0-jdQr_jH74BrOJ6Vp4VOY-m0-2kG.0kLSV4Xse1p9_QqEod0M6g"
- },
-
- "record": {
- "CNAME": "f14fb61a3cd4425fe52de16b257ca673.ipv4.tcpshield.com"
- }
- }
-
\ No newline at end of file
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WYB8jKD71t5bNPCzGO99a6kcjoLLipJVLzHxhAqoPUcGLm8MAPJRa4WMlKhCDM0eN49rQ5EHzL08go2s05jE12ezxmZ92m58MJ9ztAlF16TOxCTI4Vy3hFknZlOWhIdE69DhINJT1sG1ceWLY_oGk758-GIvBAQrDVPB-5m1nYEpp2LYipiMngwgZDvz0gLF0BXXRrP7b74phJUmw39nK1_gE1uJFKuDknWGYlCxPfhJ1aNQEAHHxgbuVghaLCv3tIqrh29j99dXZjw8wFxmaubcew0eei1NaG_An_OzbgwsTJn3QiAnanYRtnSaMGBGTHzhJ3OWx9st5Phxfut7lQ.qPrZy8EOYsGDVaIXF-Ilcg.CXoxIk3NL2J6h0tipv9pRe47YDHQ3Vl7VB58l0tdPtSTE_guNUoBwxvNOLkwj5pozh3oVKlqdGH4sego6PCw1blqG5nIPKq3Lju0-jdQr_jH74BrOJ6Vp4VOY-m0-2kG.0kLSV4Xse1p9_QqEod0M6g"
+ },
+ "record": {
+ "CNAME": "f14fb61a3cd4425fe52de16b257ca673.ipv4.tcpshield.com"
+ }
+}
diff --git a/domains/me.saxophone.json b/domains/me.saxophone.json
deleted file mode 100644
index 73288154a..000000000
--- a/domains/me.saxophone.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "my website's ipfs stuff. (basically web3 -> web2 connection). using dweb.link!!",
- "owner": {
- "username": "saxophone-guy",
- "email": "itsarchit@keemail.me"
- },
- "record": {
- "CNAME": "k51qzi5uqu5dkufpe6tqnpkkgbd2ylzp27td5newwkx3nafsx87crm2zsy2f7o.ipns.dweb.link"
- }
-}
diff --git a/domains/mebius-.json b/domains/mebius.json
similarity index 100%
rename from domains/mebius-.json
rename to domains/mebius.json
diff --git a/domains/mehul.json b/domains/mehul.json
new file mode 100644
index 000000000..2b57a89e4
--- /dev/null
+++ b/domains/mehul.json
@@ -0,0 +1,10 @@
+{
+ "description": "My Portfolio Website",
+ "owner": {
+ "username": "psvm-tallman",
+ "email": "mehulsavio@gmail.com"
+ },
+ "record": {
+ "URL": "https://mehul-uttam-portfolio.vercel.app"
+ }
+}
diff --git a/domains/mesflit.json b/domains/mesflit.json
index 512bbba91..8f620936f 100644
--- a/domains/mesflit.json
+++ b/domains/mesflit.json
@@ -1,4 +1,9 @@
{
- "owner": { "username": "mesflit", "email": "benomerfaruk11@gmail.com" },
- "record": { "URL": "https://mesflit.github.io/" }
+ "owner": {
+ "username": "mesflit",
+ "email": "benomerfaruk11@gmail.com"
+ },
+ "record": {
+ "URL": "https://mesflit.github.io/"
+ }
}
diff --git a/domains/meteor.sono.json b/domains/meteor.sono.json
deleted file mode 100644
index a7888b809..000000000
--- a/domains/meteor.sono.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "discord": "1222250424309121145",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.AOcSmXH1xmgRQpt6st_1uHBuvjvjFiB8evwad25Ly9EDe8_isycXxLJlEbs8EodOndHHQDqNGW7QJ036O-rdpZcI1LHJScmTwWSawgNyXtFS5zoE52yScjNB0xmmU6BFFr7_3M7NOYoLEAKzgjWkX96OWSoFvKqTCoe5_pBn4EyPd1vhZ0_FcpvmY_sGsWpHR1IdfVDnmWvyxMo0UyjoY-8zaFVEsgRxGWY2lTqmQYyFcrV6fuqCSLsZ9IK_GNAcE1uascEoTrqrlVt6smO_wApzuVEt-TOffvKpqFq_uwxgYgYVcKs90zkEGmkqN0tQDo3wTDCJAx_fRSIx98sLhQ.U6p_R4dGEyf0oxaEPy7rAA.K5BiGr3XphTRo8BoYVmJUo-koNgd8thz0rMMuSTbe7tE3Rn4Wy7vVtMJRL8DJ3dOKzvtaspAa9_qSrqc0mx3Uy6iPMh0JCBoSZPSTCHn1SA.kTMtTIzH5hyAxJxBS6qojA"
- },
- "record": {
- "CNAME": "getsono.github.io"
- }
-}
diff --git a/domains/meters.dalpex.json b/domains/meters.dalpex.json
deleted file mode 100644
index f0a2bd291..000000000
--- a/domains/meters.dalpex.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Dalpex",
- "email": "dantupro@gmail.com"
- },
- "record": {
- "CNAME": "dalpex.github.io"
- }
-}
diff --git a/domains/mew.json b/domains/mew.json
new file mode 100644
index 000000000..b620c7f01
--- /dev/null
+++ b/domains/mew.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "meewmeew",
+ "email": "mauminh.nguyen@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "bart.ns.cloudflare.com",
+ "karina.ns.cloudflare.com"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/domains/mico.json b/domains/mico.json
new file mode 100644
index 000000000..461378ddb
--- /dev/null
+++ b/domains/mico.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "micoms"
+ },
+ "record": {
+ "CNAME": "micoo.vercel.app"
+ }
+}
diff --git a/domains/midair.json b/domains/midair.json
index 5b813cc18..f6e5c0c37 100644
--- a/domains/midair.json
+++ b/domains/midair.json
@@ -7,6 +7,6 @@
"twitter": "M16a1r"
},
"record": {
- "CNAME": "zMidair.github.io"
+ "CNAME": "zmidair.github.io"
}
}
diff --git a/domains/mihir-patel-agc.json b/domains/mihir-patel-agc.json
index e08c7446a..f8221e0aa 100644
--- a/domains/mihir-patel-agc.json
+++ b/domains/mihir-patel-agc.json
@@ -2,8 +2,7 @@
"description": "Mihir Patel Portfolio.",
"repo": "https://github.com/mihir-patel-agc/mihir-patel-agc.github.io",
"owner": {
- "username": "mihir-patel-agc",
- "email": ""
+ "username": "mihir-patel-agc"
},
"record": {
"CNAME": "mihir-patel-agc.github.io"
diff --git a/domains/minitor.json b/domains/minitor.json
new file mode 100644
index 000000000..e10eeb8af
--- /dev/null
+++ b/domains/minitor.json
@@ -0,0 +1,11 @@
+{
+ "description": "Self hosted service",
+ "repo": "https://github.com/MinitorMHS/register",
+ "owner": {
+ "username": "minitormhs",
+ "email": "me@minitor.eu.org"
+ },
+ "record": {
+ "CNAME": "cf-repl.pages.dev"
+ }
+}
diff --git a/domains/mishal.json b/domains/mishal.json
index b9119f973..a4dafbbad 100644
--- a/domains/mishal.json
+++ b/domains/mishal.json
@@ -1,11 +1,11 @@
{
- "repo": "https://github.com/mishalhossin/mishalhossin.github.io",
+ "repo": "https://github.com/mishl-dev/mishl-dev.github.io",
"owner": {
- "username": "mishalhossin",
- "email": "mishalhossin20@gmail.com",
- "discord": "Mishal#1916"
+ "username": "mishl-dev",
+ "email": "meow@mishl.dev",
+ "discord": "m.shl"
},
"record": {
- "CNAME": "mishalhossin.github.io"
+ "CNAME": "mishl-dev.github.io"
}
}
diff --git a/domains/miu.json b/domains/miu.json
index 36eed28a4..31cd7ddbe 100644
--- a/domains/miu.json
+++ b/domains/miu.json
@@ -7,6 +7,6 @@
"discord": "romanromannya"
},
"record": {
- "CNAME": "Miu-Discord.github.io"
+ "CNAME": "miu-discord.github.io"
}
}
diff --git a/domains/mlsend2._domainkey.mail.mrstickypiston.json b/domains/mlsend2._domainkey.mail.mrstickypiston.json
new file mode 100644
index 000000000..5f6b5488c
--- /dev/null
+++ b/domains/mlsend2._domainkey.mail.mrstickypiston.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "MrStickyPiston",
+ "discord": "700766242268774471",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag"
+ },
+
+ "record": {
+ "CNAME": "mlsend2._domainkey.mailersend.net"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/mod.s4il.json b/domains/mod.s4il.json
new file mode 100644
index 000000000..6d450044b
--- /dev/null
+++ b/domains/mod.s4il.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "S4IL21",
+ "email": "s4il.is.a.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "s4il21.github.io"
+ }
+}
diff --git a/domains/mohammedasif-shaikh.json b/domains/mohammedasif-shaikh.json
index 90a5fee1c..76a4f1153 100644
--- a/domains/mohammedasif-shaikh.json
+++ b/domains/mohammedasif-shaikh.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/mohammedasif-shaikh/mohammedasif-shaikh.github.io",
"owner": {
- "username": "mohammedasif-shaikh",
- "email": ""
+ "username": "mohammedasif-shaikh"
},
"record": {
"CNAME": "mohammedasif-shaikh.github.io"
diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json
index be4205e83..bd07018cb 100644
--- a/domains/mohdjariullah.json
+++ b/domains/mohdjariullah.json
@@ -4,7 +4,7 @@
"owner": {
"username": "mohdjariullah",
"email": "mohdjariullah@gmail.com",
- "twitter": "@mohdjariullah"
+ "twitter": "mohdjariullah"
},
"record": {
"CNAME": "mohdjariullah.github.io"
diff --git a/domains/mpult.json b/domains/mpult.json
index eedabf87c..cbd6fc922 100644
--- a/domains/mpult.json
+++ b/domains/mpult.json
@@ -6,6 +6,6 @@
"email": "MPult@protonmail.com"
},
"record": {
- "CNAME": "MPult.github.io"
+ "CNAME": "mpult.github.io"
}
}
diff --git a/domains/mqhirr.json b/domains/mqhirr.json
index bc8c86326..adc07ce91 100644
--- a/domains/mqhirr.json
+++ b/domains/mqhirr.json
@@ -3,7 +3,6 @@
"username": "mqhirr",
"discord": "mqhirr"
},
-
"repo": "https://github.com/mqhirr/webnn_live",
"record": {
"CNAME": "mqhirr.github.io"
diff --git a/domains/mqrshie.json b/domains/mqrshie.json
index a1eb4dd04..3e5b946af 100644
--- a/domains/mqrshie.json
+++ b/domains/mqrshie.json
@@ -6,6 +6,6 @@
"twitter": "Mqrshie"
},
"record": {
- "CNAME": "Mqrshie.github.io"
+ "CNAME": "mqrshie.github.io"
}
}
diff --git a/domains/mrkos.json b/domains/mrkos.json
index 201ee6611..efbb3b648 100644
--- a/domains/mrkos.json
+++ b/domains/mrkos.json
@@ -6,6 +6,6 @@
"email": "72011329+mrkOS1210@users.noreply.github.com"
},
"record": {
- "CNAME": "mrkOS1210.github.io"
+ "CNAME": "mrkos1210.github.io"
}
}
diff --git a/domains/mta.mail.mrstickypiston.json b/domains/mta.mail.mrstickypiston.json
new file mode 100644
index 000000000..748577693
--- /dev/null
+++ b/domains/mta.mail.mrstickypiston.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "MrStickyPiston",
+ "discord": "700766242268774471",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.W2mVdm4dW8fJByQKFfFbX7Zy_LgzT03dRrDPZg1smltChY-8Q4ecmRlgbZg3qzCMTpZt0EAYKEvW3ZWJ2YANpH4NSl4rOExGzhByU5yhFxEFMFVu62LvAiEIRErPZLSpisd_p3sz6GNr_2lDhvy-YJHa5nstCGk8504Kfr_nLXwv6bWxpHPaQ_gMC3T3zCJs18znanaLs9A4h8O_07-_AlsKxUBhwyFPHBQv1zG05Dj-MNJXs2E3IiI2L5zwvV3807rvsolppR2et0Ghu6FZMDoq0ETelqjUmM_JW2T6fYiJk95QxRzLh0z4KHv0OcduJTAQT6OYjXDFsUOeOnl_cQ.BLMs-Z8M9F7U-qkpjWKE9g.POwlhWC7vCvZwtTz5pc6NRtbQFBqPK_DpWN7JBeIybylCNrqG9pEw12_qvlTIrb3cRh1ZEtzqLPBrVqyVV00zj8XKuFNZRmDfE7N7LZUebw.525ZlMIJoi8uHFtRgguNag"
+ },
+
+ "record": {
+ "CNAME": "mailersend.net"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/mukesh-tadpad.json b/domains/mukesh-tadpad.json
index 060b512c5..44fcc60ca 100644
--- a/domains/mukesh-tadpad.json
+++ b/domains/mukesh-tadpad.json
@@ -2,8 +2,7 @@
"description": "This is a website",
"repo": "https://github.com/mukesh-tadpad/mukesh-tadpad.github.io",
"owner": {
- "username": "mukesh-tadpad",
- "email": ""
+ "username": "mukesh-tadpad"
},
"record": {
"CNAME": "mukesh-tadpad.github.io"
diff --git a/domains/mumble.sono.json b/domains/mumble.sono.json
deleted file mode 100644
index d3b4307bf..000000000
--- a/domains/mumble.sono.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "email": "julianwolf2013@outlook.de",
- "discord": "1222250424309121145"
- },
- "record": {
- "A": ["69.197.135.202"]
- }
-}
diff --git a/domains/murasame-san-ddl.json b/domains/murasame-san-ddl.json
index 8eb5cc480..25d27f193 100644
--- a/domains/murasame-san-ddl.json
+++ b/domains/murasame-san-ddl.json
@@ -1,10 +1,11 @@
{
- "owner": {
- "username": "comderzaid",
- "discord": "544461226499899393",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5XfBb-IScJHFReqzLw1Or84zoOq6R4ypGCyDQDYsW-wijccncffZxnRm0UaPov4GHyypLM3kEYvOGymNCuAl-ipzDQrAkRIpD8Je8_thCTShwt06ftADHWrFc-UQgFhEOTwLiaaaz4z3Q0Jp6dNlqVCXnyIkk_V7A6-FQQS19oUQUCW0Vv-DC-XJO3GWvFPy31WFaYP8FIUwnkQH49CRO-CtdMZdbMsJ5kuAYKM_wSVnGeOK9qCJce8cP_oMO7b-XLkKGlHwymb0Qyn5r1vbCTk6gAd_A6PoPHYH8JmjEnexk9L8r2nkelP5Us1ZgrraBKMOvAP9QDI8U8iDtajrA.esKVpOzITWARO4xxpboB_A.ebg8aH85QLWwPoiYCm87y7baFdxdCKV48Ufs0esjY9wYpBtWpIHR-NJ1VCZ6vQGxzal8KrV11osN4PGYexSLSTgOiTdE3d48Yd753FS7_uE.LNSomkDjTx3uuscJhq48cg"
- },
- "record": {
- "A": ["129.80.3.208"]
- }
-}
+ "owner": {
+ "username": "comderzaid",
+ "email": "diazkhan66@gmail.com",
+ "discord": "544461226499899393",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.h5XfBb-IScJHFReqzLw1Or84zoOq6R4ypGCyDQDYsW-wijccncffZxnRm0UaPov4GHyypLM3kEYvOGymNCuAl-ipzDQrAkRIpD8Je8_thCTShwt06ftADHWrFc-UQgFhEOTwLiaaaz4z3Q0Jp6dNlqVCXnyIkk_V7A6-FQQS19oUQUCW0Vv-DC-XJO3GWvFPy31WFaYP8FIUwnkQH49CRO-CtdMZdbMsJ5kuAYKM_wSVnGeOK9qCJce8cP_oMO7b-XLkKGlHwymb0Qyn5r1vbCTk6gAd_A6PoPHYH8JmjEnexk9L8r2nkelP5Us1ZgrraBKMOvAP9QDI8U8iDtajrA.esKVpOzITWARO4xxpboB_A.ebg8aH85QLWwPoiYCm87y7baFdxdCKV48Ufs0esjY9wYpBtWpIHR-NJ1VCZ6vQGxzal8KrV11osN4PGYexSLSTgOiTdE3d48Yd753FS7_uE.LNSomkDjTx3uuscJhq48cg"
+ },
+ "record": {
+ "CNAME": "cylindrical-gardlic-8jekw3mlfaoniohl2i7wdokz.herokudns.com"
+ }
+}
\ No newline at end of file
diff --git a/domains/mxnticek.json b/domains/mxnticek.json
index 4a1eb2c37..68094cc50 100644
--- a/domains/mxnticek.json
+++ b/domains/mxnticek.json
@@ -2,7 +2,7 @@
"description": "no",
"repo": "https://github.com/VlastikYoutubeKo/vlastikyoutubeko.github.io",
"owner": {
- "username": " VlastikYoutubeKo",
+ "username": "VlastikYoutubeKo",
"email": "mxnticek@proton.me"
},
"record": {
diff --git a/domains/myforum.json b/domains/myforum.json
new file mode 100644
index 000000000..72a2fee0a
--- /dev/null
+++ b/domains/myforum.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "myforum.mydiscussion.net"
+ }
+}
diff --git a/domains/n.json b/domains/n.json
new file mode 100644
index 000000000..26ddb97a0
--- /dev/null
+++ b/domains/n.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "syedtahseen",
+ "email": "itxtahseen@gmail.com"
+ },
+ "record": {
+ "CNAME": "xproject-xi.vercel.app"
+ }
+}
diff --git a/domains/n4n5.json b/domains/n4n5.json
index eddbd3b21..e4331b8c4 100644
--- a/domains/n4n5.json
+++ b/domains/n4n5.json
@@ -2,8 +2,7 @@
"description": "redirects to my website",
"repo": "https://github.com/Its-Just-Nans",
"owner": {
- "username": "Its-Just-Nans",
- "email": ""
+ "username": "Its-Just-Nans"
},
"record": {
"URL": "https://n4n5.dev"
diff --git a/domains/naffy.json b/domains/naffy.json
index cf4c10991..956734e4a 100644
--- a/domains/naffy.json
+++ b/domains/naffy.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/knownasnaffy/knownasnaffy.github.io",
"owner": {
"username": "knownasnaffy",
- "email": "email@address",
"twitter": "dharni_naffy"
},
"record": {
diff --git a/domains/nahid.json b/domains/nahid.json
index 80b641ac6..a8da62284 100644
--- a/domains/nahid.json
+++ b/domains/nahid.json
@@ -6,6 +6,6 @@
"email": "SourovKhanNahid@gmail.com"
},
"record": {
- "CNAME": "SOUROVKHANNAHID.github.io"
+ "CNAME": "sourovkhannahid.github.io"
}
}
diff --git a/domains/naman-machchhar.json b/domains/naman-machchhar.json
index aa8a494a0..182de655c 100644
--- a/domains/naman-machchhar.json
+++ b/domains/naman-machchhar.json
@@ -2,8 +2,7 @@
"description": "Naman Profile.",
"repo": "https://github.com/naman-machchhar/naman-machchhar.github.io",
"owner": {
- "username": "naman-machchhar",
- "email": ""
+ "username": "naman-machchhar"
},
"record": {
"CNAME": "naman-machchhar.github.io"
diff --git a/domains/naman.json b/domains/naman.json
index d2f85e209..e02534f18 100644
--- a/domains/naman.json
+++ b/domains/naman.json
@@ -6,6 +6,6 @@
"email": "gururaninaman@gmail.com"
},
"record": {
- "CNAME": "Naman-Gururani.github.io"
+ "CNAME": "naman-gururani.github.io"
}
}
diff --git a/domains/nathan.json b/domains/nathan.json
index ac48c642e..86bb6d99d 100644
--- a/domains/nathan.json
+++ b/domains/nathan.json
@@ -5,6 +5,6 @@
"email": "mastertofu12345@gmail.com"
},
"record": {
- "CNAME": "MagedNuggets.github.io"
+ "CNAME": "magednuggets.github.io"
}
}
diff --git a/domains/naveenxd.json b/domains/naveenxd.json
index d0130b697..3d986bfa2 100644
--- a/domains/naveenxd.json
+++ b/domains/naveenxd.json
@@ -6,6 +6,6 @@
"email": "naveen@ourclg.tech"
},
"record": {
- "CNAME": "Naveen-X.github.io"
+ "CNAME": "naveen-x.github.io"
}
}
diff --git a/domains/neebooo.json b/domains/neebooo.json
new file mode 100644
index 000000000..4ea2e37de
--- /dev/null
+++ b/domains/neebooo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "neebooo",
+ "email": "dev.cnamew@gmail.com"
+ },
+ "record": {
+ "A": [
+ "193.187.255.169"
+ ]
+ }
+}
diff --git a/domains/needrose.json b/domains/needrose.json
new file mode 100644
index 000000000..525238ca6
--- /dev/null
+++ b/domains/needrose.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Needrose",
+ "email": "neeedrose@gmail.com"
+ },
+ "record": {
+ "A": ["155.248.226.206"]
+ }
+}
diff --git a/domains/nekoibot.json b/domains/nekoibot.json
index d6d1bcbe5..86811be7c 100644
--- a/domains/nekoibot.json
+++ b/domains/nekoibot.json
@@ -4,6 +4,6 @@
"email": "domath69@gmail.com"
},
"record": {
- "CNAME": "DomathID.github.io"
+ "CNAME": "domathid.github.io"
}
}
diff --git a/domains/new.vornexx.json b/domains/new.vornexx.json
index 9d9ad17d9..a85ee32c5 100644
--- a/domains/new.vornexx.json
+++ b/domains/new.vornexx.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "vornex-gh",
+ "username": "vornexx",
"email": "ajay.ramnath8812@gmail.com"
},
"record": {
diff --git a/domains/nexus.json b/domains/nexus.json
index 7808ec6e6..d16440a8a 100644
--- a/domains/nexus.json
+++ b/domains/nexus.json
@@ -6,6 +6,6 @@
"email": "uvraysxc@gmail.com"
},
"record": {
- "CNAME": "Nexzon.github.io"
+ "CNAME": "nexzon.github.io"
}
}
diff --git a/domains/ngqkhai.json b/domains/ngqkhai.json
new file mode 100644
index 000000000..45da83466
--- /dev/null
+++ b/domains/ngqkhai.json
@@ -0,0 +1,11 @@
+{
+ "description": "Documentation website for is-a.dev",
+ "repo": "",
+ "owner": {
+ "username": "ngqkhai",
+ "email": "nguyenquangkhai2509@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/ngqkhai"
+ }
+}
diff --git a/domains/nh.json b/domains/nh.json
new file mode 100644
index 000000000..9a5666540
--- /dev/null
+++ b/domains/nh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nonxistnt",
+ "email": "khtyiscooler@gmail.com"
+ },
+ "record": {
+ "CNAME": "nonxistnt.github.io"
+ }
+}
diff --git a/domains/nhatphan.json b/domains/nhatphan.json
new file mode 100644
index 000000000..6a3043e6a
--- /dev/null
+++ b/domains/nhatphan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "minaphan2815",
+ "email": "nhatphan2815@gmail.com"
+ },
+ "record": {
+ "CNAME": "minaphan2815.github.io"
+ }
+}
diff --git a/domains/nico.json b/domains/nico.json
index 7d1885fad..7ffadfca3 100644
--- a/domains/nico.json
+++ b/domains/nico.json
@@ -7,6 +7,6 @@
"discord": "nicosnico#7674"
},
"record": {
- "CNAME": "NicoGaming77.github.io"
+ "CNAME": "nicogaming77.github.io"
}
}
diff --git a/domains/nicol.json b/domains/nicol.json
index 53fafa4ae..383f15d04 100644
--- a/domains/nicol.json
+++ b/domains/nicol.json
@@ -2,11 +2,9 @@
"description": "Lina website",
"repo": "https://github.com/Linadevv/Linadevv.github.io",
"owner": {
- "username": "Linadevv",
- "email": "any@email",
- "twitter": "Lina"
+ "username": "Linadevv"
},
"record": {
- "CNAME": "Linadevv.github.io"
+ "CNAME": "linadevv.github.io"
}
}
diff --git a/domains/nidhis-patel.json b/domains/nidhis-patel.json
index f384a7ea0..1465bff5b 100644
--- a/domains/nidhis-patel.json
+++ b/domains/nidhis-patel.json
@@ -2,8 +2,7 @@
"description": "This is a personal",
"repo": "https://github.com/nidhis-patel/nidhis-patel.github.io",
"owner": {
- "username": "nidhis-patel",
- "email": ""
+ "username": "nidhis-patel"
},
"record": {
"URL": "https://nidhis-patel.github.io"
diff --git a/domains/nifle.json b/domains/nifle.json
new file mode 100644
index 000000000..e2459a572
--- /dev/null
+++ b/domains/nifle.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "Nifle-CGE",
+ "email": "",
+ "discord": "553939229475078154",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.nRTs07oBPtm7QihIkDqo1f3eBQwtYmpzZZYebo3UsxrJ9gpmPnY42WdO-H0r8XRAwYiwzZjZ8GnmRrG2xwz_8dw49VD0UvvWyJKTR7SSN1XxznSkbGJ3wthb384seNE_Fhg-E6Q6qV9vW8B1U6GD39blKsURHcgpTrSa-qopwXDeFctAo-RcxbmFwr-Mw0Cwr9ia3L1wnqvOSjQbU0a92oVv6293QbSvqgupXkS1ttXoBR9rpDPp8tH9oIXbCK4AhVTKowgIYAYh2iZT41nlkFKeus10yRKw5GqyokBXBdA70qKnU3lCd9VFZ4Eq4DxbSoMNBqk8FADig2MtA5RBFg.CqfMnrP60ibdRwfM4yUB8A.HZl3zu19tbnEz2j4hlejxUJfoEkCk0qsLeHlqLzc1-qXAnH1984_R8joN9l3WWA0Jgr13m8qr-GQsAEcjjdiog.vUXuNT3B9rjoE606ZfrRRA"
+ },
+
+ "record": {
+ "A": ["172.234.178.155"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/nikaxe.json b/domains/nikaxe.json
index 08a181557..b31efedb9 100644
--- a/domains/nikaxe.json
+++ b/domains/nikaxe.json
@@ -6,6 +6,6 @@
"email": "iamnikaxing@gmail.com"
},
"record": {
- "CNAME": "Nikaxe-dev.github.io"
+ "CNAME": "nikaxe-dev.github.io"
}
}
diff --git a/domains/niki-tiwari.json b/domains/niki-tiwari.json
index ef5c861aa..a88148eed 100644
--- a/domains/niki-tiwari.json
+++ b/domains/niki-tiwari.json
@@ -2,8 +2,7 @@
"description": "my self niki tiwari",
"repo": "https://github.com/niki-tiwari/niki-tiwari.github.io",
"owner": {
- "username": "niki-tiwari",
- "email": ""
+ "username": "niki-tiwari"
},
"record": {
"CNAME": "niki-tiwari.github.io"
diff --git a/domains/nino.json b/domains/nino.json
index 17327b571..605b45e51 100644
--- a/domains/nino.json
+++ b/domains/nino.json
@@ -8,6 +8,6 @@
"discord": "tokisakinino"
},
"record": {
- "CNAME": "TokisakiNinoVn.github.io"
+ "CNAME": "tokisakininovn.github.io"
}
}
diff --git a/domains/nipul-bhogayat.json b/domains/nipul-bhogayat.json
index 10decf4e2..a75e6e181 100644
--- a/domains/nipul-bhogayat.json
+++ b/domains/nipul-bhogayat.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/nipul-bhogayat/nipul-bhogayat.github.io",
"owner": {
- "username": "nipul-bhogayat",
- "email": ""
+ "username": "nipul-bhogayat"
},
"record": {
"CNAME": "nipul-bhogayat.github.io"
diff --git a/domains/nirav-bhut.json b/domains/nirav-bhut.json
index 1a2f012b5..ffcf7a031 100644
--- a/domains/nirav-bhut.json
+++ b/domains/nirav-bhut.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/nirav-bhut/nirav-bhut.github.io",
"owner": {
- "username": "nirav-bhut",
- "email": ""
+ "username": "nirav-bhut"
},
"record": {
"CNAME": "nirav-bhut.github.io"
diff --git a/domains/nirushan.json b/domains/nirushan.json
index 0b97aceeb..5c2d829d7 100644
--- a/domains/nirushan.json
+++ b/domains/nirushan.json
@@ -4,7 +4,7 @@
"owner": {
"username": "nirushan1",
"email": "nirushan.prabaharan@gmail.com",
- "twitter": "@tpnirushan"
+ "twitter": "tpnirushan"
},
"record": {
"CNAME": "nirushan1.github.io"
diff --git a/domains/nitesh-rathod.json b/domains/nitesh-rathod.json
index bd17063a7..6496d435c 100644
--- a/domains/nitesh-rathod.json
+++ b/domains/nitesh-rathod.json
@@ -2,8 +2,7 @@
"description": "Nitesh Rathod.",
"repo": "https://github.com/nitesh-rathod/nitesh-rathod.github.io",
"owner": {
- "username": "nitesh-rathod",
- "email": ""
+ "username": "nitesh-rathod"
},
"record": {
"CNAME": "nitesh-rathod.github.io"
diff --git a/domains/nitesh.json b/domains/nitesh.json
index 0184367ce..99d5d9035 100644
--- a/domains/nitesh.json
+++ b/domains/nitesh.json
@@ -6,6 +6,6 @@
"email": "nithesh.mom@gmail.com"
},
"record": {
- "CNAME": "Niteshballa.github.io"
+ "CNAME": "niteshballa.github.io"
}
}
diff --git a/domains/niyakipham.json b/domains/niyakipham.json
new file mode 100644
index 000000000..241c092d9
--- /dev/null
+++ b/domains/niyakipham.json
@@ -0,0 +1,11 @@
+{
+ "description": "niyakipham.is-a.dev",
+ "repo": "https://github.com/alexis-elaxis/alexis-elaxis.github.io",
+ "owner": {
+ "username": "niyakipham",
+ "email": "niyakipham@gmail.com"
+ },
+ "record": {
+ "CNAME": "niyakipham.github.io"
+ }
+}
diff --git a/domains/noah.json b/domains/noah.json
new file mode 100644
index 000000000..8d4030b8e
--- /dev/null
+++ b/domains/noah.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "noahprm",
+ "email": "contact.noahprm@gmail.com",
+ "discord": "949273553168121856"
+ },
+ "record": {
+ "A": [
+ "217.145.72.79"
+ ]
+ }
+}
diff --git a/domains/node.creeperita104.json b/domains/node.creeperita104.json
deleted file mode 100644
index 66df526f1..000000000
--- a/domains/node.creeperita104.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "creeperita09",
- "email": "creeperita.09@gmail.com"
- },
- "record": {
- "CNAME": "icahomesvr2022.freeddns.org"
- }
-}
diff --git a/domains/node.nvsn.json b/domains/node.nvsn.json
deleted file mode 100644
index 87bcfb13e..000000000
--- a/domains/node.nvsn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "GMR828",
- "email": "gmr828@null.net"
- },
- "record": {
- "A": ["173.212.202.171"]
- }
-}
diff --git a/domains/nolan-mai.json b/domains/nolan-mai.json
new file mode 100644
index 000000000..9af8b5603
--- /dev/null
+++ b/domains/nolan-mai.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PotBorger",
+ "email": "khanhtrinh232005@gmail.com"
+ },
+ "record": {
+ "CNAME": "potborger.github.io"
+ }
+}
diff --git a/domains/nomena.json b/domains/nomena.json
new file mode 100644
index 000000000..4ba4fa00d
--- /dev/null
+++ b/domains/nomena.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Shiro-cha",
+ "email": "noum.rzdr@gmail.com"
+ },
+ "record": {
+ "CNAME": "shiro-cha.github.io"
+ }
+}
diff --git a/domains/not.json b/domains/not.json
new file mode 100644
index 000000000..d139592ba
--- /dev/null
+++ b/domains/not.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Moodygd761",
+ "discord": "1279615522593308734",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WDBjZ898iNiRP_Lvbnoj4LirAorotHcGhnntu1zdoqeuHq2AyxBL8ehFxtM3vtrYz1N73zp_8rKaJ8ynhakivpRjTW6i6JoadAD4fMALwRGFb8Ewa7sfyBpF90-GbhJlwGTVwJXxbM6gh0C0WUJBU0SSMMdQPSNqlDXzgcshhKKjnslQCqnoe82fJIbLWbYVIj7DY_vQd_c426LFFw-ELEdaSIS8BcvVvuAPBBEtMeTPHHJGlfM6uQFd5LC91dnL4OtIQRJrS-Dm3jHUqCDBIwBQOJ-GjUuZNSISvNN7nxn0RPmHEFPVorEgll_jIGSWoqZblFQAdTry_tco9-VTRg.xy1T4Mv96AlgNiL15wa86A.UgQ0AQSB-2dIvHfkqag9dLHY4ta9MBeNLu7aOgGjANs90WIwsgXbwguK2biGSOGf7yx-rKclyrSbQiFxl1m6GYj9eJ0Y3yZXe96TuhH3h9U.BxmZhevlny3h3XoYMkLgyw"
+ },
+ "record": {
+ "A": [
+ "158.178.200.29"
+ ]
+ }
+}
diff --git a/domains/notaperson535.json b/domains/notaperson535.json
index 00dd1d1d2..af68b5d16 100644
--- a/domains/notaperson535.json
+++ b/domains/notaperson535.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/notjunar.json b/domains/notjunar.json
new file mode 100644
index 000000000..10803726b
--- /dev/null
+++ b/domains/notjunar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NotJunar",
+ "discord": "notjunar"
+ },
+ "record": {
+ "CNAME": "notjunar.github.io"
+ }
+}
diff --git a/domains/ntrs05.json b/domains/ntrs05.json
new file mode 100644
index 000000000..f2f45ddb8
--- /dev/null
+++ b/domains/ntrs05.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ntrs05",
+ "email": "tukheo123@gmail.com"
+ },
+ "record": {
+ "CNAME": "ntrs05.github.io"
+ }
+}
diff --git a/domains/nulitas.json b/domains/nulitas.json
index 9f199808d..90cde575e 100644
--- a/domains/nulitas.json
+++ b/domains/nulitas.json
@@ -2,7 +2,7 @@
"owner": {
"username": "nulitas",
"email": "ndrakita@gmail.com",
- "discord": "@nulitas"
+ "discord": "nulitas"
},
"record": {
"CNAME": "nulitas.github.io"
diff --git a/domains/nvhmadridista.json b/domains/nvhmadridista.json
new file mode 100644
index 000000000..2b6b5849d
--- /dev/null
+++ b/domains/nvhmadridista.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nvhmadridista",
+ "email": "nvh.madridista@email.address"
+ },
+ "record": {
+ "CNAME": "nvhmadridista.github.io"
+ }
+}
diff --git a/domains/nyanbrowser.json b/domains/nyanbrowser.json
new file mode 100644
index 000000000..7feba489a
--- /dev/null
+++ b/domains/nyanbrowser.json
@@ -0,0 +1,11 @@
+{
+ "description": "Website to download nyanbrowser",
+ "repo": "https://github.com/nyanbrowser/nyanbrowser.github.io",
+ "owner": {
+ "username": "hoppygamer",
+ "email": "hoppyloser11@gmail.com"
+ },
+ "record": {
+ "CNAME": "nyanbrowser.github.io"
+ }
+}
diff --git a/domains/obedev.json b/domains/obedev.json
index eb7b2b63d..c89d67365 100644
--- a/domains/obedev.json
+++ b/domains/obedev.json
@@ -4,7 +4,7 @@
"email": "obedev.dev@gmail.com",
"discord": "1149424852986511441"
},
- "record": {
- "CNAME": "obedev.onrender.com"
- }
+ "record": {
+ "CNAME": "obedev.onrender.com"
+ }
}
diff --git a/domains/objectrecognisation.syntaxloopers.json b/domains/objectrecognisation.syntaxloopers.json
deleted file mode 100644
index 726befd50..000000000
--- a/domains/objectrecognisation.syntaxloopers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": ["129.213.151.29"]
- }
-}
diff --git a/domains/oc.json b/domains/oc.json
index da3053a49..cef1c4605 100644
--- a/domains/oc.json
+++ b/domains/oc.json
@@ -1,10 +1,9 @@
{
"owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
+ "username": "orangci",
+ "discord": "orangc"
},
"record": {
- "CNAME": "edge.redirect.pizza"
+ "URL": "https://orangc.xyz"
}
}
diff --git a/domains/okinea.json b/domains/okinea.json
index 5b83bc6b2..c5f1904d5 100644
--- a/domains/okinea.json
+++ b/domains/okinea.json
@@ -1,16 +1,12 @@
{
"description": "Okinea Dev website",
- "repo": "https://github.com/okineadev",
+ "repo": "https://github.com/okineadev-website",
"owner": {
"username": "okineadev",
- "email": "81070564+okineadev@users.noreply.github.com"
+ "telegram": "@stadius_lucioni",
+ "discord": "okineadev"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "URL": "https://okinea.dev"
}
}
diff --git a/domains/oneclick-macos-simple-kvm.notaperson535.json b/domains/oneclick-macos-simple-kvm.notaperson535.json
index 2135c3dd1..d963cbb33 100644
--- a/domains/oneclick-macos-simple-kvm.notaperson535.json
+++ b/domains/oneclick-macos-simple-kvm.notaperson535.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/optidium.json b/domains/optidium.json
index 40b3cea5d..2a3cfa767 100644
--- a/domains/optidium.json
+++ b/domains/optidium.json
@@ -6,6 +6,6 @@
"email": "ka237133@gmail.com"
},
"record": {
- "CNAME": "XMODERLIVE.github.io"
+ "CNAME": "xmoderlive.github.io"
}
}
diff --git a/domains/orangc.json b/domains/orangc.json
index 8fdc0ccc6..bad8300d4 100644
--- a/domains/orangc.json
+++ b/domains/orangc.json
@@ -1,8 +1,7 @@
{
"owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
+ "username": "orangci",
+ "discord": "orangc"
},
"record": {
"NS": ["nucum.ns.cloudflare.com", "tate.ns.cloudflare.com"]
diff --git a/domains/orange.json b/domains/orange.json
index da3053a49..cef1c4605 100644
--- a/domains/orange.json
+++ b/domains/orange.json
@@ -1,10 +1,9 @@
{
"owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
+ "username": "orangci",
+ "discord": "orangc"
},
"record": {
- "CNAME": "edge.redirect.pizza"
+ "URL": "https://orangc.xyz"
}
}
diff --git a/domains/owl.json b/domains/owl.json
index 00eb3c451..c1ee8caa7 100644
--- a/domains/owl.json
+++ b/domains/owl.json
@@ -4,6 +4,7 @@
"email": "admin@is-a.dev"
},
"record": {
- "CNAME": "p2pb.dev"
- }
+ "CNAME": "wdh.app"
+ },
+ "proxied": true
}
diff --git a/domains/owo.json b/domains/owo.json
index 479b92cb4..cef1c4605 100644
--- a/domains/owo.json
+++ b/domains/owo.json
@@ -1,10 +1,9 @@
{
"owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
+ "username": "orangci",
+ "discord": "orangc"
},
"record": {
- "A": ["18.133.72.105"]
+ "URL": "https://orangc.xyz"
}
}
diff --git a/domains/p-kinjal.json b/domains/p-kinjal.json
index e8ca663a9..17bf2caab 100644
--- a/domains/p-kinjal.json
+++ b/domains/p-kinjal.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/p-kinjal/p-kinjal.github.io",
"owner": {
- "username": "p-kinjal",
- "email": ""
+ "username": "p-kinjal"
},
"record": {
"CNAME": "p-kinjal.github.io"
diff --git a/domains/pablo.json b/domains/pablo.json
index 1bd881e0e..5d252ea58 100644
--- a/domains/pablo.json
+++ b/domains/pablo.json
@@ -4,8 +4,6 @@
"email": "pasanflo@protonmail.com"
},
"record": {
- "A": [
- "75.2.60.5"
- ]
+ "A": ["75.2.60.5"]
}
}
diff --git a/domains/palak.json b/domains/palak.json
index 01ec8e9d9..ad11a082f 100644
--- a/domains/palak.json
+++ b/domains/palak.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "LegendOP1041",
+ "username": "akshtt-dev",
"email": "maillegendop@gmail.com",
"discord": "1056531806763102218"
},
diff --git a/domains/panchal-chirag.json b/domains/panchal-chirag.json
index 072aea0cf..23c5ea016 100644
--- a/domains/panchal-chirag.json
+++ b/domains/panchal-chirag.json
@@ -2,8 +2,7 @@
"description": "Chirag Profile.",
"repo": "https://github.com/panchal-chirag/panchal-chirag.github.io",
"owner": {
- "username": "panchal-chirag",
- "email": ""
+ "username": "panchal-chirag"
},
"record": {
"CNAME": "panchal-chirag.github.io"
diff --git a/domains/panchal-jatin.json b/domains/panchal-jatin.json
index cabc09772..eaa60b21b 100644
--- a/domains/panchal-jatin.json
+++ b/domains/panchal-jatin.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/panchal-jatin/panchal-jatin.github.io",
"owner": {
- "username": "panchal-jatin",
- "email": ""
+ "username": "panchal-jatin"
},
"record": {
"CNAME": "panchal-jatin.github.io"
diff --git a/domains/panchal-meet.json b/domains/panchal-meet.json
index c9d5c9c40..5f174d5f9 100644
--- a/domains/panchal-meet.json
+++ b/domains/panchal-meet.json
@@ -2,8 +2,7 @@
"description": "This is a panchal meet",
"repo": "https://github.com/panchal-meet/panchal-meet.github.io",
"owner": {
- "username": "panchal-meet",
- "email": ""
+ "username": "panchal-meet"
},
"record": {
"CNAME": "panchal-meet.github.io"
diff --git a/domains/pandya-riddhi.json b/domains/pandya-riddhi.json
index 3765c9f3f..f89c2ddc9 100644
--- a/domains/pandya-riddhi.json
+++ b/domains/pandya-riddhi.json
@@ -2,8 +2,7 @@
"description": "Riddhi pandya profile.",
"repo": "https://github.com/pandya-riddhi/pandya-riddhi.github.io",
"owner": {
- "username": "pandya-riddhi",
- "email": ""
+ "username": "pandya-riddhi"
},
"record": {
"CNAME": "pandya-riddhi.github.io"
diff --git a/domains/panel.creeperita104.json b/domains/panel.creeperita104.json
deleted file mode 100644
index 66df526f1..000000000
--- a/domains/panel.creeperita104.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "creeperita09",
- "email": "creeperita.09@gmail.com"
- },
- "record": {
- "CNAME": "icahomesvr2022.freeddns.org"
- }
-}
diff --git a/domains/panel.nvsn.json b/domains/panel.nvsn.json
deleted file mode 100644
index 87bcfb13e..000000000
--- a/domains/panel.nvsn.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "GMR828",
- "email": "gmr828@null.net"
- },
- "record": {
- "A": ["173.212.202.171"]
- }
-}
diff --git a/domains/panel.shing.json b/domains/panel.shing.json
deleted file mode 100644
index 0f5d71008..000000000
--- a/domains/panel.shing.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ShingSemicolon",
- "email": "Shing.XD.0602@gmail.com"
- },
- "record": {
- "A": ["129.213.85.212"],
- "AAAA": ["2603:c020:400d:3e89:ae49:1b0b:470c:5f33"]
- }
-}
diff --git a/domains/panel.vulcanocraft.json b/domains/panel.vulcanocraft.json
new file mode 100644
index 000000000..baf8a4c5a
--- /dev/null
+++ b/domains/panel.vulcanocraft.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.cT0Sm5ImSgFtrSLPMnQCdiQ22eeG9cU-X47BHIi-PwL6zMYOeUdsPEOpqDci0QKqrY9F0htQgSrgftsz5RtsbO0NWJsMwLcDdJ7daHeJQLKEjK_mMjv0xwf7pM4rRzGaed7euFSMP-LWAy3yni3911hMfU31BKYpoLzKOAvlzIRzFx58yT2URT2a7pzXLKQjhOHrBepCE9ssYyWmHiOhh8-zbUi8rMqX0m8zDntWqTVjjOdjyfji4QTyaTNsGK5CoMQudYcY3LHaVFvWM2kTJ6sTu26bWRTIth09WWdegQMMtSxuQoo8BRd_gHcweSN-yE5a9PSo5yh8-_6f1EeX_Q.XQLnjpPi_TRxouddA3YfTQ.GMRXSo5jiV2gnabTbuZaNbb5etbBABBaof-7KggBf7CCy2J2E5RsE4Zy6Nwwer2AJ_QK8XnRn7z0W4ahjnFRMq5DTUzAUGqyY5qrAKuoSXBvVNrK9X0n2TwnyxzZPIHT.v-xaNb6vPxjQjEYSAPFXnw"
+ },
+ "record": {
+ "CNAME": "vulcanopanel.pages.dev"
+ }
+}
diff --git a/domains/panel.xrap1dx.json b/domains/panel.xrap1dx.json
index a08da9b03..cf7422741 100644
--- a/domains/panel.xrap1dx.json
+++ b/domains/panel.xrap1dx.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/xrap1dx?tab=repositories",
"owner": {
"username": "xrap1dx",
- "discord": "xrap1dx",
- "email": ""
+ "discord": "xrap1dx"
},
"record": {
"A": ["69.30.249.53"]
diff --git a/domains/pankaj.json b/domains/pankaj.json
new file mode 100644
index 000000000..9a6a16246
--- /dev/null
+++ b/domains/pankaj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "1719pankaj",
+ "email": "1719pankaj@gmail.com"
+ },
+ "record": {
+ "URL": "https://1719pankaj.github.io"
+ }
+}
diff --git a/domains/paris.node.shing.json b/domains/paris.node.shing.json
deleted file mode 100644
index c87fa66f5..000000000
--- a/domains/paris.node.shing.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ShingSemicolon",
- "email": "Shing.XD.0602@gmail.com"
- },
- "record": {
- "A": ["141.145.205.47"],
- "AAAA": ["2603:c027:c003:6aa9:a974:e2d6:f01e:dea8"]
- }
-}
diff --git a/domains/parmar-dixita.json b/domains/parmar-dixita.json
index 77e100cf3..cd9000840 100644
--- a/domains/parmar-dixita.json
+++ b/domains/parmar-dixita.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/parmar-dixita/parmar-dixita.github.io",
"owner": {
- "username": "parmar-dixita",
- "email": ""
+ "username": "parmar-dixita"
},
"record": {
"CNAME": "parmar-dixita.github.io"
diff --git a/domains/pashigin.json b/domains/pashigin.json
index 9f9b79e86..d32fbb69f 100644
--- a/domains/pashigin.json
+++ b/domains/pashigin.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/Pashigin/register",
"owner": {
"username": "pashigin",
- "telegram": "@pashigin"
+ "telegram": "pashigin"
},
"record": {
"A": ["75.2.60.5"]
diff --git a/domains/patel-hetal.json b/domains/patel-hetal.json
index 589cadd23..ad599c51d 100644
--- a/domains/patel-hetal.json
+++ b/domains/patel-hetal.json
@@ -2,8 +2,7 @@
"description": "Hetal Profile.",
"repo": "https://github.com/patel-hetal/patel-hetal.github.io",
"owner": {
- "username": "patel-hetal",
- "email": ""
+ "username": "patel-hetal"
},
"record": {
"CNAME": "patel-hetal.github.io"
diff --git a/domains/patel-jatin.json b/domains/patel-jatin.json
index 386fbd802..c89232408 100644
--- a/domains/patel-jatin.json
+++ b/domains/patel-jatin.json
@@ -2,8 +2,7 @@
"description": "My dev website",
"repo": "https://github.com/patel-jatin/patel-jatin.github.io",
"owner": {
- "username": "patel-jatin",
- "email": ""
+ "username": "patel-jatin"
},
"record": {
"CNAME": "patel-jatin.github.io"
diff --git a/domains/patel-komal.json b/domains/patel-komal.json
index 5e6625cb2..65b760b87 100644
--- a/domains/patel-komal.json
+++ b/domains/patel-komal.json
@@ -2,8 +2,7 @@
"description": "This is komal patel",
"repo": "https://github.com/patel-komal/patel-komal.github.io",
"owner": {
- "username": "patel-komal",
- "email": ""
+ "username": "patel-komal"
},
"record": {
"CNAME": "patel-komal.github.io"
diff --git a/domains/patel-monal.json b/domains/patel-monal.json
index 1a9a80ccb..76a06570f 100644
--- a/domains/patel-monal.json
+++ b/domains/patel-monal.json
@@ -2,8 +2,7 @@
"description": "This is personal website",
"repo": "https://github.com/patel-monal/patel-monal.github.io",
"owner": {
- "username": "patel-monal",
- "email": ""
+ "username": "patel-monal"
},
"record": {
"CNAME": "patel-monal.github.io"
diff --git a/domains/patel-parthiv.json b/domains/patel-parthiv.json
index 7aecc1de4..94201ee9a 100644
--- a/domains/patel-parthiv.json
+++ b/domains/patel-parthiv.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/patel-parthiv/patel-parthiv.github.io",
"owner": {
- "username": "patel-parthiv",
- "email": ""
+ "username": "patel-parthiv"
},
"record": {
"CNAME": "patel-parthiv.github.io"
diff --git a/domains/patelhardik-p.json b/domains/patelhardik-p.json
index b517a8601..559279048 100644
--- a/domains/patelhardik-p.json
+++ b/domains/patelhardik-p.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/patelhardik-p/patelhardik-p.github.io",
"owner": {
- "username": "patelhardik-p",
- "email": ""
+ "username": "patelhardik-p"
},
"record": {
"CNAME": "patelhardik-p.github.io"
diff --git a/domains/pathan-imran.json b/domains/pathan-imran.json
index 0c79195de..05e54c671 100644
--- a/domains/pathan-imran.json
+++ b/domains/pathan-imran.json
@@ -2,8 +2,7 @@
"description": "Imran Profile.",
"repo": "https://github.com/pathan-imran/pathan-imran.github.io",
"owner": {
- "username": "pathan-imran",
- "email": ""
+ "username": "pathan-imran"
},
"record": {
"CNAME": "pathan-imran.github.io"
diff --git a/domains/peantastic.json b/domains/peantastic.json
new file mode 100644
index 000000000..417f24900
--- /dev/null
+++ b/domains/peantastic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "peantastic",
+ "email": "leostark.vndev@gmail.com"
+ },
+ "description": "👋 Hello! I'm Do Tan Tinh, a passionate developer with expertise in efficient web solutions. Explore my portfolio and contact me on GitHub.",
+ "repo": "https://github.com/peantastic/",
+ "record": {
+ "CNAME": "dotantinh.onrender.com"
+ }
+}
\ No newline at end of file
diff --git a/domains/pearlcz.json b/domains/pearlcz.json
index 48a4c3bbf..56f953b26 100644
--- a/domains/pearlcz.json
+++ b/domains/pearlcz.json
@@ -1,12 +1,12 @@
{
- "description": "Making a website about me and my projects.",
- "repo": "https://github.com/0pearlcz0/is-a.dev",
- "owner": {
- "username": "0pearl_cz0",
- "email": "vitekjurcik@gmail.com",
- "twitter": "pearl_czoffic"
- },
- "record": {
- "CNAME": "0pearl_cz0.github.io"
- }
-}
+ "description": "Making a website about me and my projects.",
+ "repo": "https://github.com/0pearlcz0/is-a.dev",
+ "owner": {
+ "username": "0pearlcz0",
+ "email": "vitekjurcik@gmail.com",
+ "twitter": "pearl_czoffic"
+ },
+ "record": {
+ "CNAME": "0pearlcz0.github.io"
+ }
+}
diff --git a/domains/pedrito.json b/domains/pedrito.json
index 363c949ca..4aca01f86 100644
--- a/domains/pedrito.json
+++ b/domains/pedrito.json
@@ -7,6 +7,6 @@
"twitter": "Pedro929953698"
},
"record": {
- "CNAME": "Ranojay1.github.io"
+ "CNAME": "ranojay1.github.io"
}
}
diff --git a/domains/pele.json b/domains/pele.json
new file mode 100644
index 000000000..eceae0d10
--- /dev/null
+++ b/domains/pele.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Pele12324",
+ "email": "pele.puric@gmail.com",
+ "discord": "483261654818226186"
+ },
+ "record": {
+ "A": ["38.242.242.224"]
+ }
+}
diff --git a/domains/peroxide.json b/domains/peroxide.json
index 89ea0bacb..4ea4fb5ed 100644
--- a/domains/peroxide.json
+++ b/domains/peroxide.json
@@ -7,6 +7,6 @@
"discord": "hydrogenpero.xide"
},
"record": {
- "CNAME": "oShinyMew.github.io"
+ "CNAME": "oshinymew.github.io"
}
}
diff --git a/domains/phamthanhnghia.json b/domains/phamthanhnghia.json
new file mode 100644
index 000000000..2378ce50d
--- /dev/null
+++ b/domains/phamthanhnghia.json
@@ -0,0 +1,11 @@
+{
+ "description": "phamthanhnghia.is-a.dev",
+ "repo": "https://github.com/phamthanhnghia/phamthanhnghia.github.io",
+ "owner": {
+ "username": "phamthanhnghia",
+ "email": "phamthanhnghia.it@gmail.com"
+ },
+ "record": {
+ "CNAME": "phamthanhnghia.github.io"
+ }
+}
diff --git a/domains/pi19044.json b/domains/pi19044.json
deleted file mode 100644
index 8560f123b..000000000
--- a/domains/pi19044.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "PrelevatedInsider19044's website",
- "repo": "https://github.com/pi19044/pi19044.github.io",
- "owner": {
- "username": "pi19044",
- "email": "membermadde.insiddev25120@hotmail.com"
- },
- "record": {
- "CNAME": "pi19044.github.io"
- }
-}
diff --git a/domains/pinont.json b/domains/pinont.json
index ebeb0fd4c..514e0d136 100644
--- a/domains/pinont.json
+++ b/domains/pinont.json
@@ -6,6 +6,6 @@
"email": "Pinozen.Thailand@gmail.com"
},
"record": {
- "CNAME": "PinozenTH.github.io"
+ "CNAME": "pinozenth.github.io"
}
}
diff --git a/domains/plan.vulcanocraft.json b/domains/plan.vulcanocraft.json
new file mode 100644
index 000000000..0359aab27
--- /dev/null
+++ b/domains/plan.vulcanocraft.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.U1HQ4j2veW3D6ZRfm8J-dyfphms0kkF7IYRUmA2n6zawu-A3FyVRC4PzxMEmRpZO_Q3rQXCbHcO_EtWQFtVw244aHgjASUW2bfbHr7Rhpl2VjdMNXXfWeQKR4XhoOmYRM4qmN585VSiMfV5WVYk96UKf9-VUhmWQpf-EDbModBujIIqLXQdMVVu3awmcXEvyPqOyVntrX7wg7sFT_z0GiZVB-LhdiXJBjl5M2Me-aWQX9TzY_US6deMO6MuhLo1MwPdQbvnwQp0cDx9yoI2Ef9kxihRGPr6aD7OiEXE4CF1LdDw7bt2hDEoJwnBNWCOLHDCpUJELx5qhKmAu3ulUYQ.K3l5byKhIee3xpCLLlcGBA.z5Csrbp2TdpvdGfegFKIgsipiWdGMC5oUsmLpDhOiNx8QPc3u-jhsf-97HigCS7ul789Kepa78SC5FTJbVjszVTFFcADXB9IlCb6RQjfE8a2gHMY75HXgcpxoA6HNnaR.SwL0PQR_FS5DQ-zXBhCSlA"
+ },
+ "record": {
+ "CNAME": "vulcanoplan.pages.dev"
+ }
+}
diff --git a/domains/playboyfear.json b/domains/playboyfear.json
new file mode 100644
index 000000000..e7d99bef4
--- /dev/null
+++ b/domains/playboyfear.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Fear-Itself",
+ "discord": "1079471323220295781",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.lxlc-07Kcz9oxe3endfLP2iaYnhFx1YdAtlEl8n0GHWodaqDj6rscZ-tyqOgcQLgH4juWf4tm8f3ExHzYrwx097K5X97Rf3ZvibOI5KlhKwNxMDEPSrsaq13r2ILCAZGmeQmVnNVWzmbiwDns-z_uh0QEl-YvGatR2Z5XhNfvID_dRtshwkqdwi9SsDuwX6Y2qHUBBTtuy0a35nBU9iITFMLHKSvkmfnul6hwRo6g9rJhUZIebynuUCwDxb9seba8kI1tWYBGXNE0uwGb-1SJKp4XrFTsLZYlMXBCTdwCFtebONQtWAkbkuQAfhUuqtOvIbz6KcIyI7g6KV5OnPNzw.q9Fb1LgcuGOhDM7d8UPiuw.fdmJ9W-LPDrT6p53ITGhZqNxbisbRcssIA9XUoFvbrDCk8apYtDAeIaqR3N5QWtydIcKVkPdvhbEU-Dduga5PXqsO9Ot1MQLeErtI28O1H8.pKzhEjWsJBuESoPUMQzM4g"
+ },
+ "record": {
+ "CNAME": "fear-itself.github.io"
+ }
+}
diff --git a/domains/playeranalytics.vulcanocraft.json b/domains/playeranalytics.vulcanocraft.json
new file mode 100644
index 000000000..db7ef754b
--- /dev/null
+++ b/domains/playeranalytics.vulcanocraft.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.PaUlk6ZArYasb5GFWnvJMTUcFLt0hlPqX2DDMAs_8dKVCFZhhAJYHfjbuo7Imsx8y9TQSv3b2_qSaTvo488GReI4sa8uscSTFUtypOeKYE5hzo6G7vWfj_fJ4OWQbxBhiAd-ebA5gJQQFihIS2SL37o1uvTQDdkOGprZS0XxsMN7hl3s9-u9tfwnIM_j5iG6z_TnzkE0QCIANe_y20J8ift_GPd89bz7M2-X7gpqgiWfzTGrRnOF2gFjIHofZB4uljxaPNK3TzzlV72Qwyh_WrU8Kw3XsKxsjr7IO62BrrNzTJyjixJd-oZkcEhd8Z4N5wueMX_Vx9cdJ0xtOIjrmQ.JdAPDqQADI_gas7asULI6A.r5P4wD7e_E-4TpKksyzjdQQvp3OWTHffPIM5_C5EfOWYeR6oUTCNB16WdP6NVKFvfWOdWnVuVgjO9bWTWTZKxuUxXTj0WeBIQSS3plaoNWbuEFY31OgMm-XXFP1ZRBie.lXIj9HQI-dJm1aJ5r-RJXw"
+ },
+ "record": {
+ "CNAME": "vulcanoplan.pages.dev"
+ }
+}
diff --git a/domains/playreaver.json b/domains/playreaver.json
index 6b7b24dec..36a8c1f76 100644
--- a/domains/playreaver.json
+++ b/domains/playreaver.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "playreaver",
- "email": "",
- "discord": "802466803984760853",
- "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YIQZW1Q4GvuHtwoVApEhTUfnTvZRbzgeTMFBwrRj4bRe-r37w_KlqAfvqDuBXCPv7a7uPkwE5evyx_DVX2UJ3Jl5M8N1SMKIg26cnzShzMARtF1m6oBGlei_fGung5SHj0UUekOnNqE6XlspxmKZLRT1EfT9H1DxLxXHlWjOaV1uAtEyKcZvv5G1TR_pLEanpcAik1jHaSdRoMOHH_LL4T-yZ_AcY2qfzI9dKdkJSdzdjw0ZKhmmFX9APqUTf9AWV2P0Aj_dKIKejzdR8CgTqnofaI7eWZ3kAJp_8LDVNoisvJvr2BgnPGvCQ_Lfv7YRouD7UE0SHEh9Rb0Ev1owsQ.FDIBraLuBZXlcNTt3jsXdA.MRrBmfOZ3L9_pnW4SuCmAaAr23yqsMOp-ptrX4TUFwY9Gobq7XyzKp1q-8w4Uv_bTsDEVj-QvEhsCRFKrnctLb-yDWHCJfQMau1mgwCgaK4.qG8M04A5TqkLwQnOLJD0QA"
- },
-
- "record": {
- "CNAME": "playreaver.github.io"
- }
- }
-
+ "owner": {
+ "username": "playreaver",
+ "discord": "802466803984760853",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.YIQZW1Q4GvuHtwoVApEhTUfnTvZRbzgeTMFBwrRj4bRe-r37w_KlqAfvqDuBXCPv7a7uPkwE5evyx_DVX2UJ3Jl5M8N1SMKIg26cnzShzMARtF1m6oBGlei_fGung5SHj0UUekOnNqE6XlspxmKZLRT1EfT9H1DxLxXHlWjOaV1uAtEyKcZvv5G1TR_pLEanpcAik1jHaSdRoMOHH_LL4T-yZ_AcY2qfzI9dKdkJSdzdjw0ZKhmmFX9APqUTf9AWV2P0Aj_dKIKejzdR8CgTqnofaI7eWZ3kAJp_8LDVNoisvJvr2BgnPGvCQ_Lfv7YRouD7UE0SHEh9Rb0Ev1owsQ.FDIBraLuBZXlcNTt3jsXdA.MRrBmfOZ3L9_pnW4SuCmAaAr23yqsMOp-ptrX4TUFwY9Gobq7XyzKp1q-8w4Uv_bTsDEVj-QvEhsCRFKrnctLb-yDWHCJfQMau1mgwCgaK4.qG8M04A5TqkLwQnOLJD0QA"
+ },
+ "record": {
+ "CNAME": "playreaver.github.io"
+ }
+}
diff --git a/domains/ploszukiwacz.json b/domains/ploszukiwacz.json
index 07d305b08..dd1d68a42 100644
--- a/domains/ploszukiwacz.json
+++ b/domains/ploszukiwacz.json
@@ -1,4 +1,5 @@
{
+
"description": "Personal Website for PlOszukiwacz",
"repo": "https://github.com/PlOszukiwaczDEV/ploszukiwaczdev.github.io",
"owner": {
@@ -6,6 +7,9 @@
"email": "ploszukiwacz1@gmail.com"
},
"record": {
- "CNAME": "ploszukiwaczdev.github.io"
+ "NS": [
+ "jake.ns.cloudflare.com",
+ "stephane.ns.cloudflare.com"
+ ]
}
}
diff --git a/domains/plumaxe.json b/domains/plumaxe.json
index 106acdfdd..cceaa4f76 100644
--- a/domains/plumaxe.json
+++ b/domains/plumaxe.json
@@ -4,6 +4,6 @@
"email": "iaintflxzra122@gmail.com"
},
"record": {
- "CNAME": "Plumaxe.github.io"
+ "CNAME": "plumaxe.github.io"
}
}
diff --git a/domains/poked.json b/domains/poked.json
index 7c7f30683..cd4b1057b 100644
--- a/domains/poked.json
+++ b/domains/poked.json
@@ -7,6 +7,6 @@
"discord": "poked"
},
"record": {
- "CNAME": "PokedWasTaken.github.io"
+ "CNAME": "pokedwastaken.github.io"
}
}
diff --git a/domains/poldek.json b/domains/poldek.json
new file mode 100644
index 000000000..a98db4452
--- /dev/null
+++ b/domains/poldek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "poldekdev",
+ "discord": "poldek333"
+ },
+ "record": {
+ "CNAME": "poldek.pages.dev"
+ }
+}
diff --git a/domains/porant.json b/domains/porant.json
index 35dce6910..abf61d960 100644
--- a/domains/porant.json
+++ b/domains/porant.json
@@ -4,6 +4,6 @@
"email": "porant@gmail.com"
},
"record": {
- "A": ["178.26.182.120"]
+ "A": ["188.194.183.203"]
}
}
diff --git a/domains/potatochips0706.json b/domains/potatochips0706.json
deleted file mode 100644
index e7dccb3ae..000000000
--- a/domains/potatochips0706.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A sub-domain to my portfolio github page.",
- "repo": "https://github.com/potato0706/potato0706.github.io",
- "owner": {
- "username": "potato0706",
- "email": "potatochips0706@gmail.com"
- },
- "record": {
- "CNAME": "potato0706.github.io"
- }
-}
diff --git a/domains/prabhu.json b/domains/prabhu.json
deleted file mode 100644
index 105cbe7ad..000000000
--- a/domains/prabhu.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Testing for my server",
- "repo": "https://github.com/prabhu797/samplelogin.git",
- "owner": {
- "username": "prabhu797",
- "email": "prabhudesai797@gmail.com"
- },
- "record": {
- "A": ["206.1.53.95"]
- }
-}
diff --git a/domains/prajapati-divya.json b/domains/prajapati-divya.json
index d529266f3..8346aca47 100644
--- a/domains/prajapati-divya.json
+++ b/domains/prajapati-divya.json
@@ -2,8 +2,7 @@
"description": "Divya profile.",
"repo": "https://github.com/prajapati-divya/prajapati-divya.github.io",
"owner": {
- "username": "prajapati-divya",
- "email": ""
+ "username": "prajapati-divya"
},
"record": {
"CNAME": "prajapati-divya.github.io"
diff --git a/domains/prakhar.json b/domains/prakhar.json
index 787d31479..a1953b0d2 100644
--- a/domains/prakhar.json
+++ b/domains/prakhar.json
@@ -6,6 +6,6 @@
"email": "prakharb56@gmail.com"
},
"record": {
- "CNAME": "Prakhar-commits.github.io"
+ "CNAME": "prakhar-commits.github.io"
}
}
diff --git a/domains/pranavsaxena.json b/domains/pranavsaxena.json
index f5af52703..6da15a292 100644
--- a/domains/pranavsaxena.json
+++ b/domains/pranavsaxena.json
@@ -7,6 +7,6 @@
"discord": "PRANAV SAXENA#9327"
},
"record": {
- "CNAME": "Pranav-Saxena.github.io"
+ "CNAME": "pranav-saxena.github.io"
}
}
diff --git a/domains/pranjal.json b/domains/pranjal.json
index ac8a5fe99..dd2772b8e 100644
--- a/domains/pranjal.json
+++ b/domains/pranjal.json
@@ -6,6 +6,6 @@
"email": "psbhatnagar.in@gmal.com"
},
"record": {
- "CNAME": "Pranjal-SB.github.io"
+ "CNAME": "pranjal-sb.github.io"
}
}
diff --git a/domains/pratike-patel.json b/domains/pratike-patel.json
index 8ac2d497a..d451ac524 100644
--- a/domains/pratike-patel.json
+++ b/domains/pratike-patel.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/pratike-patel/pratike-patel.github.io",
"owner": {
- "username": "pratike-patel",
- "email": ""
+ "username": "pratike-patel"
},
"record": {
"CNAME": "pratike-patel.github.io"
diff --git a/domains/pratikp-patel.json b/domains/pratikp-patel.json
index 3f6311ed9..751dd3a8d 100644
--- a/domains/pratikp-patel.json
+++ b/domains/pratikp-patel.json
@@ -2,8 +2,7 @@
"description": "This is a website",
"repo": "https://github.com/pratikp-patel/pratikp-patel.github.io",
"owner": {
- "username": "pratikp-patel",
- "email": ""
+ "username": "pratikp-patel"
},
"record": {
"CNAME": "pratikp-patel.github.io"
diff --git a/domains/pratikshya.json b/domains/pratikshya.json
index 7d2a4c53e..e6d7c99e1 100644
--- a/domains/pratikshya.json
+++ b/domains/pratikshya.json
@@ -2,8 +2,7 @@
"description": "Pratikshya website",
"repo": "https://github.com/pratikshya-gautam/portfolio",
"owner": {
- "username": "pratikshya-gautam",
- "email": ""
+ "username": "pratikshya-gautam"
},
"record": {
"CNAME": "pratikshya-gautam.github.io"
diff --git a/domains/pricing.syntaxloopers.json b/domains/pricing.syntaxloopers.json
deleted file mode 100644
index 726befd50..000000000
--- a/domains/pricing.syntaxloopers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": ["129.213.151.29"]
- }
-}
diff --git a/domains/princeprajapati.json b/domains/princeprajapati.json
new file mode 100644
index 000000000..ae58450fd
--- /dev/null
+++ b/domains/princeprajapati.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notreallyprince",
+ "email": "prince30112001@gmail.com"
+ },
+ "record": {
+ "CNAME": "princexd.vercel.app"
+ }
+}
diff --git a/domains/princexd.json b/domains/princexd.json
new file mode 100644
index 000000000..ae58450fd
--- /dev/null
+++ b/domains/princexd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notreallyprince",
+ "email": "prince30112001@gmail.com"
+ },
+ "record": {
+ "CNAME": "princexd.vercel.app"
+ }
+}
diff --git a/domains/priti-shide.json b/domains/priti-shide.json
index 58194a73e..37e6cbad4 100644
--- a/domains/priti-shide.json
+++ b/domains/priti-shide.json
@@ -2,8 +2,7 @@
"description": "My Portfolio.",
"repo": "https://github.com/priti-shide/priti-shide.github.io",
"owner": {
- "username": "priti-shide",
- "email": ""
+ "username": "priti-shide"
},
"record": {
"CNAME": "priti-shide.github.io"
diff --git a/domains/privatekey.json b/domains/privatekey.json
new file mode 100644
index 000000000..39624ad33
--- /dev/null
+++ b/domains/privatekey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "keydevelops",
+ "email": "rumaevvadim@gmail.com"
+ },
+ "record": {
+ "CNAME": "keydevelops.github.io"
+ }
+}
diff --git a/domains/priyanshul.json b/domains/priyanshul.json
index 415bda18b..60fcdbea9 100644
--- a/domains/priyanshul.json
+++ b/domains/priyanshul.json
@@ -6,6 +6,6 @@
"email": "piyanshul1307@gmail.com"
},
"record": {
- "CNAME": "Priyanshul130.github.io"
+ "CNAME": "priyanshul130.github.io"
}
}
diff --git a/domains/priyas-rana.json b/domains/priyas-rana.json
index d4ae6d184..7e8714b37 100644
--- a/domains/priyas-rana.json
+++ b/domains/priyas-rana.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/priyas-rana/priyas-rana.github.io",
"owner": {
- "username": "priyas-rana",
- "email": ""
+ "username": "priyas-rana"
},
"record": {
"CNAME": "priyas-rana.github.io"
diff --git a/domains/proficode.json b/domains/proficode.json
new file mode 100644
index 000000000..ab1555bf5
--- /dev/null
+++ b/domains/proficode.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "profic0de",
+ "email": "anonymou3489@gmail.com"
+ },
+ "record": {
+ "CNAME": "239581.site.bot-hosting.net"
+ }
+}
diff --git a/domains/project-jam.json b/domains/project-jam.json
new file mode 100644
index 000000000..a0b9b2cc7
--- /dev/null
+++ b/domains/project-jam.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Omarplayz233",
+ "email": "mrbouiri@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "elsa.ns.cloudflare.com",
+ "roan.ns.cloudflare.com"
+ ]
+ }
+}
diff --git a/domains/prokai-kun.json b/domains/prokai-kun.json
index 2916a7bc2..8ee15ad97 100644
--- a/domains/prokai-kun.json
+++ b/domains/prokai-kun.json
@@ -6,6 +6,6 @@
"email": "prokaiindo003@gmail.com"
},
"record": {
- "CNAME": "IAKORP.github.io"
+ "CNAME": "iakorp.github.io"
}
}
diff --git a/domains/proxy.json b/domains/proxy.json
index 450416a95..b226183e2 100644
--- a/domains/proxy.json
+++ b/domains/proxy.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/ps.json b/domains/ps.json
new file mode 100644
index 000000000..1a4a92db5
--- /dev/null
+++ b/domains/ps.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PrivacySecured",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ"
+ },
+ "record": {
+ "CNAME": "privacysecured.github.io"
+ }
+}
diff --git a/domains/ptero.phoenix.json b/domains/ptero.phoenix.json
deleted file mode 100644
index 37214625f..000000000
--- a/domains/ptero.phoenix.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "PhoenixOrigin",
- "email": "phoenixorigin171@gmail.com",
- "github_id": 85183285
- },
- "record": {
- "A": ["130.162.166.134"]
- }
-}
diff --git a/domains/q.json b/domains/q.json
new file mode 100644
index 000000000..26ddb97a0
--- /dev/null
+++ b/domains/q.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "syedtahseen",
+ "email": "itxtahseen@gmail.com"
+ },
+ "record": {
+ "CNAME": "xproject-xi.vercel.app"
+ }
+}
diff --git a/domains/qloha.json b/domains/qloha.json
new file mode 100644
index 000000000..91951a17f
--- /dev/null
+++ b/domains/qloha.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/qloha/qloha.github.io",
+ "owner": {
+ "username": "qloha",
+ "youtube": "https://youtube.com/@qloha",
+ "email": "sirfigaloha@gmail.com"
+ },
+ "record": {
+ "CNAME": "qloha.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/qui.json b/domains/qui.json
index 5b6c1f641..cb82f193a 100644
--- a/domains/qui.json
+++ b/domains/qui.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "quiww",
- "mastodon": "qui@bsd.cafe"
- },
- "record": {
- "CNAME": "quiww.github.io"
- }
+ "owner": {
+ "username": "quiww",
+ "mastodon": "qui@bsd.cafe"
+ },
+ "record": {
+ "CNAME": "quiww.github.io"
+ }
}
diff --git a/domains/qxb3.json b/domains/qxb3.json
new file mode 100644
index 000000000..261baea2e
--- /dev/null
+++ b/domains/qxb3.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "qxb3",
+ "email": "qxbthree@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/r00t3d.json b/domains/r00t3d.json
new file mode 100644
index 000000000..59c07423e
--- /dev/null
+++ b/domains/r00t3d.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "percioandrade",
+ "email": "",
+ "discord": "521918790951501843",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Z4DxbZ0HkguwBNihF_uYcYo6F90LU8_TxIWyvfSaynKVyfIULpKkPpKppLgxlDlTbnog7UqK1L5Q78CwzFZmIve_-rK3T7jmQSoXLVi9eZsnRj9DgVLjM3tWwiHdNnP-A_hIzW4A9zUwU6kSzo0yqI1XCgxadcm_O6YXUWVJ7hWjRHEMe_KQsiyd8EJCIEuG1mb5vHpSGueIpdchmNfK42chf8gWhl267t6H4fXg--HlSxbCTdD0a6IS5dfg8FdZFmhjhSUsPMFDcqBObtm1-As6lbVmLYfnQdJv4bV_YJkdYetGZ2B1edMLP99dRN1-kgmn3dzu40EIHJrjJgApdg.lqR4yiVU5IkKqRPkzJPSiA.EhOlPjq7MutxeLsxjNz5R3yuNP5gnZ2vIKz8v9gc8OC1g0RtEwXDLsbD2tjVkgn5wIsC2oG4lOUAKX1OVpO7n2HECDSil6gD3UF_t4bp_-I.P-A-L2t0f6vu2o-dn5M_XQ"
+ },
+ "record": {
+ "A": [
+ "144.126.135.27"
+ ]
+ }
+}
diff --git a/domains/rahul-rabari.json b/domains/rahul-rabari.json
index 5a171c90d..f22a6d963 100644
--- a/domains/rahul-rabari.json
+++ b/domains/rahul-rabari.json
@@ -2,8 +2,7 @@
"description": "This is personal website",
"repo": "https://github.com/rahul-rabari/rahul-rabari.github.io",
"owner": {
- "username": "rahul-rabari",
- "email": ""
+ "username": "rahul-rabari"
},
"record": {
"CNAME": "rahul-rabari.github.io"
diff --git a/domains/rahulps.json b/domains/rahulps.json
index 8955123b8..e73bfb4b2 100644
--- a/domains/rahulps.json
+++ b/domains/rahulps.json
@@ -4,6 +4,7 @@
"email": "rahulps1000@gmail.com"
},
"record": {
- "URL": "https://myfolio-rahulps.netlify.app"
- }
+ "A": ["75.2.60.5"]
+ },
+ "proxied": false
}
diff --git a/domains/ramakant.json b/domains/ramakant.json
new file mode 100644
index 000000000..d9524acd3
--- /dev/null
+++ b/domains/ramakant.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ramakantbot",
+ "email": "ramakantbot@duck.com"
+ },
+ "record": {
+ "CNAME": "ramakantbot.github.io"
+ }
+}
diff --git a/domains/rammeghe.json b/domains/rammeghe.json
new file mode 100644
index 000000000..1c6deff23
--- /dev/null
+++ b/domains/rammeghe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kartikshriwas",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "rammeghe.github.io"
+ }
+}
diff --git a/domains/random.json b/domains/random.json
index b14fc31dc..0b0d32b26 100644
--- a/domains/random.json
+++ b/domains/random.json
@@ -1,14 +1,11 @@
{
+ "description": "Redirects to a random .is-a.dev site",
+ "repo": "https://github.com/gusruben/random-is-a-dev",
"owner": {
- "username": "EducatedSuddenBucket",
- "email": "educatedsuddenbucket@gmail.com"
+ "username": "gusruben",
+ "email": "gusruben@protonmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["173.255.236.153"]
}
}
diff --git a/domains/ravi-pate.json b/domains/ravi-pate.json
index b723207c6..ae51c37e2 100644
--- a/domains/ravi-pate.json
+++ b/domains/ravi-pate.json
@@ -2,8 +2,7 @@
"description": "Portfolio site.",
"repo": "https://github.com/ravi-pate/ravi-pate.github.io",
"owner": {
- "username": "ravi-pate",
- "email": ""
+ "username": "ravi-pate"
},
"record": {
"CNAME": "ravi-pate.github.io"
diff --git a/domains/realmzersdomain.json b/domains/realmzersdomain.json
new file mode 100644
index 000000000..41956e605
--- /dev/null
+++ b/domains/realmzersdomain.json
@@ -0,0 +1,11 @@
+{
+ "description": "Realmzers Page",
+ "repo": "https://github.com/Realmzer/realmzer.github.io",
+ "owner": {
+ "username": "Realmzer",
+ "email": "therealm4mc@gmail.com"
+ },
+ "record": {
+ "URL": "https://realmzer.github.io"
+ }
+}
diff --git a/domains/realzzy.json b/domains/realzzy.json
new file mode 100644
index 000000000..210343370
--- /dev/null
+++ b/domains/realzzy.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "then77",
+ "email": "me@realzzy.my.id",
+ "discord": "realzzy",
+ "twitter": "realzzydev"
+ },
+ "description": "Used for alternative shortcut to my website (also for easy redirection)",
+ "record": {
+ "URL": "https://realzzy.my.id"
+ }
+}
diff --git a/domains/rededge.json b/domains/rededge.json
index 8e02b7c87..99fc4a0dd 100644
--- a/domains/rededge.json
+++ b/domains/rededge.json
@@ -6,6 +6,6 @@
"email": "janithc967@gmail.com"
},
"record": {
- "CNAME": "RedEdge967.github.io"
+ "CNAME": "rededge967.github.io"
}
}
diff --git a/domains/redirect.akk1to.json b/domains/redirect.akk1to.json
new file mode 100644
index 000000000..2b819373c
--- /dev/null
+++ b/domains/redirect.akk1to.json
@@ -0,0 +1,12 @@
+{
+ "description": "This website is for redirect server",
+ "repo": "https://github.com/akk1to/redirect",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/redolent.json b/domains/redolent.json
new file mode 100644
index 000000000..009222c74
--- /dev/null
+++ b/domains/redolent.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "RedolentHalo",
+ "discord": "755718159641608202",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.c0d7ul7E-LX1qEJeFPuXgcpGJvLDeqnotDBs20mJdeqQzpzoMFTGzEYQ3QExt5XVjdX9SzRFpdgGaY04gN_c_Nrx7WaG47ZJL1rNAapJYCUGmysp3W6g2Trwi45_cIaWUEwKGnjBIgp3BTLKO6yentnHJXKjMb5AUkDcZVj69Nly4sCpdUTSjj1Xw6hVtmapS-lGaIlm6iaftk1pEJm1q1uIuDSsrufH2oRF3lVwkmjJDIwD_tf7PXuHRUGgxvt0FK_bLZKnoqbFtpTh9nNg_RBf8H1YnzHhOc6dkjf6ikBBzcQDutiKxelMupFmatlU5eAGCBmKkEUwxtSKsp5jQQ.R8WtRKhJLz0P5qUPEEdXZg.oEOJF1FocJn0FqQ1P0RaKVK4G1RoQT6E3oyRUpMg_lv0UXDwn16BlIUcKowUWxiObofg1YKRgB1OM4uIZPjxbAYJwkS-Q4Hf0CTmeZCjCaVpaeNc20Z9dREuphe4He30.jP6ZbMY8WRHngmBV6kRBsg"
+ },
+
+ "record": {
+ "CNAME": "redolent.pages.dev"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/reefsalty.json b/domains/reefsalty.json
index cb967f686..fcc66f28a 100644
--- a/domains/reefsalty.json
+++ b/domains/reefsalty.json
@@ -7,6 +7,6 @@
"twitter": "ReefSalty"
},
"record": {
- "CNAME": "ReefSalty.github.io"
+ "CNAME": "reefsalty.github.io"
}
}
diff --git a/domains/refat.json b/domains/refat.json
index 537de405b..c715035aa 100644
--- a/domains/refat.json
+++ b/domains/refat.json
@@ -1,8 +1,7 @@
{
"description": "Personal Site",
"owner": {
- "username": "refatc25",
- "email": ""
+ "username": "refatc25"
},
"record": {
"URL": "https://www.refatchowdhury.com"
diff --git a/domains/region.json b/domains/region.json
new file mode 100644
index 000000000..b28fa3c47
--- /dev/null
+++ b/domains/region.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "regioniosvn",
+ "discord": "1264096408395317289",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.WNRBeRSr5EzISmqLUQ2fxgAxern45vcHBcO0OhY8NGPm-MnxKCTOc6yWhmDfS3Mu28S9xI_WG3uQ46SYdVfIQKKoY8kGvirmXpftzJ3we_IqMgEH-7MyG35R0fnxQm6LMVKY41LncduwA1jh9sKmGk30oYcWU1u410j_ZxNGr2yzE17vZjJVBUxGFpRR2Rz3QyKTkHeBLWdTEfCSAYIv7JgJ0IH-iYN7DtqCjn2GGJPEMJYNVpivfUKPCNEqr29_f7clFJHifnmDKLG1BjQFitpO0YOyVTeqYwK0lcig5klf0QNTbJ7irj5uWokMkgKeTcQ1yYsKV4-Io0lTGW0ACA.FBJGaklyR9Ew9uB3rumREQ.tiWkr-YgRATVbC7ZHY6iAzEkcSPA8xCI4nYgQ9m-4k9JZ0hM8FgM7YpZW3Nuv7fl0S4s-QyHX8bilZQnQuQvTZ0AMMI7swTarwu4mvAXkr4.RAYWmatCs8lPwxLir16DVA"
+ },
+
+ "record": {
+ "CNAME": "regioniosvn.github.io"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/register-bot.json b/domains/register-bot.json
index 00eb3c451..c1ee8caa7 100644
--- a/domains/register-bot.json
+++ b/domains/register-bot.json
@@ -4,6 +4,7 @@
"email": "admin@is-a.dev"
},
"record": {
- "CNAME": "p2pb.dev"
- }
+ "CNAME": "wdh.app"
+ },
+ "proxied": true
}
diff --git a/domains/relicrb.json b/domains/relicrb.json
index e0e64b01e..1ace4d4fe 100644
--- a/domains/relicrb.json
+++ b/domains/relicrb.json
@@ -6,6 +6,6 @@
"email": "relicrb@gmail.com"
},
"record": {
- "CNAME": "RelicRB.github.io"
+ "CNAME": "relicrb.github.io"
}
}
diff --git a/domains/rhythm.json b/domains/rhythm.json
new file mode 100644
index 000000000..7218cb504
--- /dev/null
+++ b/domains/rhythm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ms7ru",
+ "email": "rhythm.upa@gmail.com"
+ },
+ "record": {
+ "CNAME": "ms7ru.github.io"
+ }
+}
diff --git a/domains/ririn.json b/domains/ririn.json
new file mode 100644
index 000000000..f278d785d
--- /dev/null
+++ b/domains/ririn.json
@@ -0,0 +1,13 @@
+{
+ "description": "ririn-hq",
+ "repo": "https://github.com/ririn-hq/ririn-hq.github.io",
+ "owner": {
+ "username": "ririn-hq",
+ "email": "ririnvieux@gmail.com",
+ "twitter": "ririnvieux_hq",
+ "discord": "ririn_hq"
+ },
+ "record": {
+ "CNAME": "ririn-hq.github.io"
+ }
+}
diff --git a/domains/riskybotredirect.json b/domains/riskybotredirect.json
index 639440253..35e65bcda 100644
--- a/domains/riskybotredirect.json
+++ b/domains/riskybotredirect.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/RiskyMH/RiskyBOT",
"owner": {
"username": "RiskyMH",
- "discord": "RiskyMH#0182",
- "email": ""
+ "discord": "RiskyMH#0182"
},
"record": {
"URL": "https://riskymh.github.io/RiskyBOT"
diff --git a/domains/riskymh.json b/domains/riskymh.json
index a61ee3948..da084693b 100644
--- a/domains/riskymh.json
+++ b/domains/riskymh.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/RiskyMH/RiskyMH.github.io",
"owner": {
"username": "RiskyMH",
- "discord": "RiskyMH#0182",
- "email": ""
+ "discord": "RiskyMH#0182"
},
"record": {
"URL": "https://riskymh.github.io",
diff --git a/domains/riskymhredirect.json b/domains/riskymhredirect.json
index 3668e3cc0..127f7c69e 100644
--- a/domains/riskymhredirect.json
+++ b/domains/riskymhredirect.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/RiskyMH/RiskyMH.github.io",
"owner": {
"username": "RiskyMH",
- "discord": "RiskyMH#0182",
- "email": ""
+ "discord": "RiskyMH#0182"
},
"record": {
"URL": "https://riskymh.github.io"
diff --git a/domains/riskyprsty.json b/domains/riskyprsty.json
new file mode 100644
index 000000000..a79f3f3e4
--- /dev/null
+++ b/domains/riskyprsty.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "riskyprsty"
+ },
+ "record": {
+ "CNAME": "riskyprsty.github.io"
+ }
+}
diff --git a/domains/risshi.json b/domains/risshi.json
index ee9a901b8..6866fe692 100644
--- a/domains/risshi.json
+++ b/domains/risshi.json
@@ -6,6 +6,6 @@
"email": "risshirajsen@gmail.com"
},
"record": {
- "CNAME": "codeRisshi25.github.io"
+ "CNAME": "coderisshi25.github.io"
}
}
diff --git a/domains/ritam.json b/domains/ritam.json
new file mode 100644
index 000000000..d2875cf07
--- /dev/null
+++ b/domains/ritam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nxrmqlly",
+ "email": "ritam@duck.com"
+ },
+ "record": {
+ "CNAME": "ritams-website.vercel.app"
+ }
+}
diff --git a/domains/rithinjose.json b/domains/rithinjose.json
index 0e7931c3c..04cf0f931 100644
--- a/domains/rithinjose.json
+++ b/domains/rithinjose.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/rithin-jose/rithin-jose.github.io",
"owner": {
"username": "rithin-jose",
- "twitter": "rithinja",
- "email": ""
+ "twitter": "rithinja"
},
"record": {
"CNAME": "rithin-jose.github.io"
diff --git a/domains/rizvan.json b/domains/rizvan.json
index e3d7c24bd..f156e0e1d 100644
--- a/domains/rizvan.json
+++ b/domains/rizvan.json
@@ -4,6 +4,6 @@
"email": "rizvankurungattil@gmail.com"
},
"record": {
- "CNAME": "Mrizvank.github.io"
+ "CNAME": "mrizvank.github.io"
}
}
diff --git a/domains/rohit-sony.json b/domains/rohit-sony.json
index 4335a1c2c..34157977f 100644
--- a/domains/rohit-sony.json
+++ b/domains/rohit-sony.json
@@ -2,8 +2,7 @@
"description": "Rohit Profile.",
"repo": "https://github.com/rohit-sony/rohit-sony.github.io",
"owner": {
- "username": "rohit-sony",
- "email": ""
+ "username": "rohit-sony"
},
"record": {
"CNAME": "rohit-sony.github.io"
diff --git a/domains/rohith-jv.json b/domains/rohith-jv.json
new file mode 100644
index 000000000..4ba84944c
--- /dev/null
+++ b/domains/rohith-jv.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "0mnichan"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
+}
diff --git a/domains/royalty.json b/domains/royalty.json
index ba1a103bd..8976d0857 100644
--- a/domains/royalty.json
+++ b/domains/royalty.json
@@ -6,6 +6,6 @@
"email": "hisroyal.baguette@gmail.com"
},
"record": {
- "CNAME": "hisRoyalty.github.io"
+ "CNAME": "hisroyalty.github.io"
}
}
diff --git a/domains/rvc11.json b/domains/rvc11.json
new file mode 100644
index 000000000..1059afc61
--- /dev/null
+++ b/domains/rvc11.json
@@ -0,0 +1,11 @@
+{
+ "description": "RedVelvetCake11's website",
+ "repo": "https://github.com/redvelvetcake11/redvelvetcake11.github.io",
+ "owner": {
+ "username": "redvelvetcake11",
+ "email": "membermadde.insiddev25120@hotmail.com"
+ },
+ "record": {
+ "CNAME": "redvelvetcake11.github.io"
+ }
+}
diff --git a/domains/ryan.ginut.json b/domains/ryan.ginut.json
deleted file mode 100644
index 690f2d10a..000000000
--- a/domains/ryan.ginut.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "rtb523",
- "email": "ryan.ginut@gmail.com"
- },
- "record": {
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
- }
-}
diff --git a/domains/ryanzam.json b/domains/ryanzam.json
index 460e43d37..3c79f866c 100644
--- a/domains/ryanzam.json
+++ b/domains/ryanzam.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ryanzam",
- "email": "ryanzam2005@yahoo.com"
- },
- "record": {
- "CNAME": "icy-coast-0d7690d03.3.azurestaticapps.net"
- }
+ "owner": {
+ "username": "ryanzam",
+ "email": "ryanzam2005@yahoo.com"
+ },
+ "record": {
+ "CNAME": "orange-island-07b3bb803.5.azurestaticapps.net"
+ }
}
diff --git a/domains/ryz.json b/domains/ryz.json
index 2ebca8f0b..709827766 100644
--- a/domains/ryz.json
+++ b/domains/ryz.json
@@ -1,11 +1,11 @@
{
- "description": "This subdomain is for my personal projects and mail forwarding.",
- "owner": {
- "username": "0ryz",
- "email": "j6qt9x5sj@mozmail.com",
- "discord": "4ryz"
- },
- "record": {
- "NS": ["betty.ns.cloudflare.com", "cody.ns.cloudflare.com"]
- }
+ "description": "This subdomain is for my personal projects and mail forwarding.",
+ "owner": {
+ "username": "0ryz",
+ "email": "j6qt9x5sj@mozmail.com",
+ "discord": "4ryz"
+ },
+ "record": {
+ "NS": ["betty.ns.cloudflare.com", "cody.ns.cloudflare.com"]
+ }
}
diff --git a/domains/s-kunjan.json b/domains/s-kunjan.json
index cdbac5b37..013d07412 100644
--- a/domains/s-kunjan.json
+++ b/domains/s-kunjan.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/s-kunjan/s-kunjan.github.io",
"owner": {
- "username": "s-kunjan",
- "email": ""
+ "username": "s-kunjan"
},
"record": {
"CNAME": "s-kunjan.github.io"
diff --git a/domains/s-nishit.json b/domains/s-nishit.json
index e9ad50a08..14457dac2 100644
--- a/domains/s-nishit.json
+++ b/domains/s-nishit.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/s-nishit/s-nishit.github.io",
"owner": {
- "username": "s-nishit",
- "email": ""
+ "username": "s-nishit"
},
"record": {
"CNAME": "s-nishit.github.io"
diff --git a/domains/s.drpleaserespect.json b/domains/s.drpleaserespect.json
deleted file mode 100644
index ee0613c67..000000000
--- a/domains/s.drpleaserespect.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DrPleaseRespect",
- "email": "juliannayr2007@gmail.com"
- },
- "record": {
- "A": ["146.19.100.135"],
- "AAAA": ["2a05:dfc1:4400:6c00::a"]
- }
-}
diff --git a/domains/s.json b/domains/s.json
index 0f1ab48d5..e079a7e08 100644
--- a/domains/s.json
+++ b/domains/s.json
@@ -5,6 +5,6 @@
"discord": "987972818341888021"
},
"record": {
- "CNAME": "proxytwo.smartlinux.xyz"
+ "CNAME": "proxy.smart.is-a.dev"
}
}
diff --git a/domains/s697376._domainkey.yxz.json b/domains/s697376._domainkey.yxz.json
new file mode 100644
index 000000000..ce2fbe673
--- /dev/null
+++ b/domains/s697376._domainkey.yxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yz9551",
+ "discord": "yz9551"
+ },
+ "record": {
+ "CNAME": "dkim.smtp2go.net"
+ }
+}
diff --git a/domains/sabbir.json b/domains/sabbir.json
index 9f02d817e..2c4dd5094 100644
--- a/domains/sabbir.json
+++ b/domains/sabbir.json
@@ -4,6 +4,6 @@
"email": "sabbir.apbn.edu@gmail.com"
},
"record": {
- "CNAME": "sabbir1.pages.dev"
+ "NS": ["clarissa.ns.cloudflare.com", "harley.ns.cloudflare.com"]
}
}
diff --git a/domains/safety.json b/domains/safety.json
new file mode 100644
index 000000000..2973f4f65
--- /dev/null
+++ b/domains/safety.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "HackingYZ",
+ "email": "sifed@qq.com"
+ },
+
+ "record": {
+ "CNAME": "safety22w413a.github.io"
+ }
+ }
\ No newline at end of file
diff --git a/domains/saftec.json b/domains/saftec.json
new file mode 100644
index 000000000..1b5d366c3
--- /dev/null
+++ b/domains/saftec.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Samuraiflamesf",
+ "email": "Samuraiflamesf@gmail.com"
+ },
+ "record": {
+ "A": [
+ "100.42.189.124"
+ ]
+ }
+}
diff --git a/domains/sahil.json b/domains/sahil.json
index cae970746..724b9c4a9 100644
--- a/domains/sahil.json
+++ b/domains/sahil.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/SahilShidruk/My-Portfolio",
"owner": {
"username": "SahilShidruk",
- "discord": "1095900069095555133",
- "email": ""
+ "discord": "1095900069095555133"
},
"record": {
"CNAME": "sahilshidruk.github.io"
diff --git a/domains/saizuo.json b/domains/saizuo.json
index a5fe7e9e4..b9f099d8a 100644
--- a/domains/saizuo.json
+++ b/domains/saizuo.json
@@ -7,6 +7,6 @@
"twitter": "SaizyWaizy"
},
"record": {
- "CNAME": "Saizuo.github.io"
+ "CNAME": "saizuo.github.io"
}
}
diff --git a/domains/samia-islam-sua.json b/domains/samia-islam-sua.json
index 951bad237..cc0e5c76f 100644
--- a/domains/samia-islam-sua.json
+++ b/domains/samia-islam-sua.json
@@ -6,6 +6,6 @@
"email": "SamiaIslamSua@gmail.com"
},
"record": {
- "CNAME": "SamiaIslamSua.github.io"
+ "CNAME": "samiaislamsua.github.io"
}
}
diff --git a/domains/samirp.json b/domains/samirp.json
index 5841d5845..b0444d937 100644
--- a/domains/samirp.json
+++ b/domains/samirp.json
@@ -7,6 +7,6 @@
"twitter": "SamirPaulb"
},
"record": {
- "CNAME": "SamirPaul1.github.io"
+ "CNAME": "samirpaul1.github.io"
}
}
diff --git a/domains/sangelo.json b/domains/sangelo.json
index 52d216dbb..aa398a0c4 100644
--- a/domains/sangelo.json
+++ b/domains/sangelo.json
@@ -1,12 +1,10 @@
{
"description": "Redirect to personal homepage",
-
"owner": {
"username": "SangeloDev",
"email": "contact@sangelo.space"
},
"repo": "https://github.com/SangeloDev",
-
"record": {
"URL": "https://sangelo.space"
}
diff --git a/domains/sanjay-suryavanshi.json b/domains/sanjay-suryavanshi.json
index f3c7960f7..bdafc95b4 100644
--- a/domains/sanjay-suryavanshi.json
+++ b/domains/sanjay-suryavanshi.json
@@ -2,10 +2,9 @@
"description": "Sanjay Suryavanshi Profile.",
"repo": "https://github.com/Sanjay-Suryavanshi/Sanjay-Suryavanshi.github.io",
"owner": {
- "username": "Sanjay-Suryavanshi",
- "email": ""
+ "username": "Sanjay-Suryavanshi"
},
"record": {
- "CNAME": "Sanjay-Suryavanshi.github.io"
+ "CNAME": "sanjay-suryavanshi.github.io"
}
}
diff --git a/domains/sathish.json b/domains/sathish.json
index fbd4cccc9..804567dd4 100644
--- a/domains/sathish.json
+++ b/domains/sathish.json
@@ -6,6 +6,6 @@
"email": "muppidathi00@gmail.com"
},
"record": {
- "CNAME": "Muppidathi-sys.github.io"
+ "CNAME": "muppidathi-sys.github.io"
}
}
diff --git a/domains/satindar.json b/domains/satindar.json
index a819dd1fa..cb46edd97 100644
--- a/domains/satindar.json
+++ b/domains/satindar.json
@@ -7,6 +7,6 @@
"twitter": "satindar31"
},
"record": {
- "CNAME": "satindar31.github.io"
+ "NS": ["brodie.ns.cloudflare.com", "jamie.ns.cloudflare.com"]
}
}
diff --git a/domains/satyamv7.json b/domains/satyamv7.json
index 9aef9da6d..4fb2c2b47 100644
--- a/domains/satyamv7.json
+++ b/domains/satyamv7.json
@@ -6,6 +6,6 @@
"email": "satyamverma46@outlook.com"
},
"record": {
- "CNAME": "SatyamV7.github.io"
+ "CNAME": "satyamv7.github.io"
}
}
diff --git a/domains/saumon.json b/domains/saumon.json
index 89e77e457..2982bfea6 100644
--- a/domains/saumon.json
+++ b/domains/saumon.json
@@ -1,10 +1,10 @@
{
"owner": {
"username": "saumonarcenciel",
- "email": "viala38000@gmail.com",
+ "email": "saumon@duck.com",
"discord": "823623660743950416"
},
"record": {
- "A": ["163.5.143.4"]
+ "A": ["109.234.166.168"]
}
}
diff --git a/domains/saurabhkirve.json b/domains/saurabhkirve.json
index 798888ff5..e54cd907e 100644
--- a/domains/saurabhkirve.json
+++ b/domains/saurabhkirve.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "BerzCode",
+ "username": "Sxurabh",
"email": "saurabhkirve@gmail.com"
},
"record": {
- "CNAME": "berzcode.github.io"
+ "CNAME": "sxurabh.github.io"
}
}
diff --git a/domains/savan-makawana.json b/domains/savan-makawana.json
index 41227e3d9..a60cef5ff 100644
--- a/domains/savan-makawana.json
+++ b/domains/savan-makawana.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/savan-makawana/savan-makawana.github.io",
"owner": {
- "username": "savan-makawana",
- "email": ""
+ "username": "savan-makawana"
},
"record": {
"CNAME": "savan-makawana.github.io"
diff --git a/domains/saxophone.json b/domains/saxophone.json
index c9248c33d..09300ddff 100644
--- a/domains/saxophone.json
+++ b/domains/saxophone.json
@@ -1,5 +1,5 @@
{
- "description": "my website's ipfs stuff + email forwarding. (basically web3 -> web2 connection). using dweb.link!!",
+ "description": "my website",
"owner": {
"username": "saxophone-guy",
"email": "itsarchit@keemail.me"
@@ -7,6 +7,6 @@
"record": {
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
"TXT": "forward-email=itsarchit@keemail.me",
- "URL": "https://me.saxophone.is-a.dev/"
+ "A": ["216.24.57.1"]
}
}
diff --git a/domains/saya.json b/domains/saya.json
index 1fa51a57e..11363cc07 100644
--- a/domains/saya.json
+++ b/domains/saya.json
@@ -7,6 +7,6 @@
"twitter": "AayanTDE"
},
"record": {
- "CNAME": "yanNotDev.github.io"
+ "CNAME": "yannotdev.github.io"
}
}
diff --git a/domains/schumerism.json b/domains/schumerism.json
index 403d90c01..90c4b59f9 100644
--- a/domains/schumerism.json
+++ b/domains/schumerism.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "homosapiensapien",
- "email": "nathanielswoo@gmail.com"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ]
- }
+ "owner": {
+ "username": "homosapiensapien",
+ "email": "nathanielswoo@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
}
diff --git a/domains/sdheeraj.json b/domains/sdheeraj.json
index 9c66a9281..73e3dfcb2 100644
--- a/domains/sdheeraj.json
+++ b/domains/sdheeraj.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "17sdheeraj",
- "email": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVzZXJfaWQiOiIxMzE4NDk3NjUiLCJ1c2VybmFtZSI6IjE3c2RoZWVyYWoiLCJlbWFpbCI6IjE3c2RoZWVyYWpAd2luZ2Fyci5ldS5vcmcifSwiZXhwaXJlc0luIjoiOTk5OXkiLCJpYXQiOjE3MjE1MzM2ODJ9.7wMG7oM75_RVLS7uWP0b0gqJOP_v9jsfxRq-UcqPlgM"
+ "OWL": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVzZXJfaWQiOiIxMzE4NDk3NjUiLCJ1c2VybmFtZSI6IjE3c2RoZWVyYWoiLCJlbWFpbCI6IjE3c2RoZWVyYWpAd2luZ2Fyci5ldS5vcmcifSwiZXhwaXJlc0luIjoiOTk5OXkiLCJpYXQiOjE3MjE1MzM2ODJ9.7wMG7oM75_RVLS7uWP0b0gqJOP_v9jsfxRq-UcqPlgM"
},
"record": {
"CNAME": "17sdheeraj.github.io"
diff --git a/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json b/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json
index 171d71f46..e0fb239cf 100644
--- a/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json
+++ b/domains/sea-horse-with-really-long-neck-and-fabulous-legs.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "sea-horse-with-really-long-neck-and-fabulous-legs.pages.dev"
diff --git a/domains/semant.json b/domains/semant.json
index 34f6dd658..a5e64f98c 100644
--- a/domains/semant.json
+++ b/domains/semant.json
@@ -3,7 +3,7 @@
"owner": {
"username": "ihacksemant",
"email": "contact@semant.is-a.dev",
- "discord": "@semant"
+ "discord": "semant"
},
"record": {
"A": ["69.30.249.53"],
diff --git a/domains/seqyu.json b/domains/seqyu.json
new file mode 100644
index 000000000..1276538d5
--- /dev/null
+++ b/domains/seqyu.json
@@ -0,0 +1,12 @@
+{
+ "description": "I'm just some guy who enjoys Linux a bit too much",
+ "repo": "https://github.com/nvct-website/nvct-website.github.io",
+ "owner": {
+ "username": "nvct-website",
+ "email": "",
+ "discord": "@seqyu."
+ },
+ "record": {
+ "CNAME": "nvct-website.github.io"
+ }
+}
diff --git a/domains/serhii-koba.json b/domains/serhii-koba.json
new file mode 100644
index 000000000..4027c1e6b
--- /dev/null
+++ b/domains/serhii-koba.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal blog website",
+ "repo": "https://github.com/sergey-koba-mobidev/static_blog",
+ "owner": {
+ "username": "sergey-koba-mobidev",
+ "email": "desgnkiss@gmail.com"
+ },
+ "record": {
+ "CNAME": "static-blog-o3omu.ondigitalocean.app"
+ }
+}
diff --git a/domains/server.drpleaserespect.json b/domains/server.drpleaserespect.json
deleted file mode 100644
index ee0613c67..000000000
--- a/domains/server.drpleaserespect.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DrPleaseRespect",
- "email": "juliannayr2007@gmail.com"
- },
- "record": {
- "A": ["146.19.100.135"],
- "AAAA": ["2a05:dfc1:4400:6c00::a"]
- }
-}
diff --git a/domains/seven.json b/domains/seven.json
index 98d3fcb35..5762d7f61 100644
--- a/domains/seven.json
+++ b/domains/seven.json
@@ -11,9 +11,7 @@
"185.199.111.153",
"185.199.109.153"
],
-
"MX": ["mx1.simplelogin.co", "mx2.simplelogin.co"],
-
"TXT": [
"sl-verification=ivfyrhmrpfrkrgrkywcghobxqkhynw",
"v=spf1 include:simplelogin.co ~all"
diff --git a/domains/sfinxv.json b/domains/sfinxv.json
index fed2af103..5c29889b4 100644
--- a/domains/sfinxv.json
+++ b/domains/sfinxv.json
@@ -3,7 +3,6 @@
"username": "sfinxv",
"discord": "sfinxv"
},
-
"repo": "https://github.com/SFINXVC/sfinxvc.github.io",
"record": {
"CNAME": "sfinxvc.github.io"
diff --git a/domains/shahjenish.json b/domains/shahjenish.json
index db616b5d2..5f8335df6 100644
--- a/domains/shahjenish.json
+++ b/domains/shahjenish.json
@@ -2,8 +2,7 @@
"description": "Jenish Profile.",
"repo": "https://github.com/shahjenish/shahjenish.github.io",
"owner": {
- "username": "shahjenish",
- "email": ""
+ "username": "shahjenish"
},
"record": {
"CNAME": "shahjenish.github.io"
diff --git a/domains/shakeel-ahamad.json b/domains/shakeel-ahamad.json
index 4f07efa68..7286b3c3d 100644
--- a/domains/shakeel-ahamad.json
+++ b/domains/shakeel-ahamad.json
@@ -2,8 +2,7 @@
"description": "Shakeel profile.",
"repo": "https://github.com/shakeel-ahamad/shakeel-ahamad.github.io",
"owner": {
- "username": "shakeel-ahamad",
- "email": ""
+ "username": "shakeel-ahamad"
},
"record": {
"CNAME": "shakeel-ahamad.github.io"
diff --git a/domains/shakera-vora.json b/domains/shakera-vora.json
index ee9ac8afc..845a8cbff 100644
--- a/domains/shakera-vora.json
+++ b/domains/shakera-vora.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/shakera-vora/shakera-vora.github.io",
"owner": {
- "username": "shakera-vora",
- "email": ""
+ "username": "shakera-vora"
},
"record": {
"CNAME": "shakera-vora.github.io"
diff --git a/domains/shanise.json b/domains/shanise.json
new file mode 100644
index 000000000..efb646a25
--- /dev/null
+++ b/domains/shanise.json
@@ -0,0 +1,11 @@
+{
+ "description": "Domain registration for shanise.is.a.dev",
+ "repo": "https://github.com/shanise02/register",
+ "owner": {
+ "username": "shanise02",
+ "email": "shanise.smith2001@gmail.com"
+ },
+ "record": {
+ "URL": "https://shanisesmith.vercel.app"
+ }
+}
diff --git a/domains/sharad-rajyaguru.json b/domains/sharad-rajyaguru.json
index 9ecf96b7c..985501e8f 100644
--- a/domains/sharad-rajyaguru.json
+++ b/domains/sharad-rajyaguru.json
@@ -2,8 +2,7 @@
"description": "Sharad Profile.",
"repo": "https://github.com/sharad-rajyaguru/sharad-rajyaguru.github.io",
"owner": {
- "username": "sharad-rajyaguru",
- "email": ""
+ "username": "sharad-rajyaguru"
},
"record": {
"CNAME": "sharad-rajyaguru.github.io"
diff --git a/domains/sharex.phoenix.json b/domains/sharex.phoenix.json
deleted file mode 100644
index 4d74122a1..000000000
--- a/domains/sharex.phoenix.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "PhoenixOrigin",
- "email": "phoenixorigin171@gmail.com"
- },
- "record": {
- "A": ["130.162.166.134"]
- }
-}
diff --git a/domains/shivang.json b/domains/shivang.json
index 4c0f54aa6..fc69e5f55 100644
--- a/domains/shivang.json
+++ b/domains/shivang.json
@@ -7,6 +7,6 @@
"telegram": "ShivangKakkar88"
},
"record": {
- "CNAME": "ShivangKakkar.github.io"
+ "CNAME": "shivangkakkar.github.io"
}
}
diff --git a/domains/shomy.json b/domains/shomy.json
index bd15e711f..cd117b45d 100644
--- a/domains/shomy.json
+++ b/domains/shomy.json
@@ -12,6 +12,9 @@
"185.199.111.153"
],
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA=="
+ "TXT": [
+ "forward-email=MzBmYTJhZTc2Y2UyM2IzZS1jOGZmZDMwNWQzZjc2ZmIzMWIzZDQwOGZlNjNjZmMwMmQ5OTZhZTU2YTAxMGI1MGQ2ODk1MDFkYTEyMjM4OTk1Y2UyMWU3M2Y5NDc3YTk3NWQzN2NlYWVmMTY5ZGYyNzJmODljZGJlY2JiNmNmNWZkZmQyMTUxMzMxOGY5ZjExOA==",
+ "google-site-verification=86zZ55mR4x8nTO3sV5iWvq92pg8sikARK7f1Q_Gw7pI"
+ ]
}
}
diff --git a/domains/shork.json b/domains/shork.json
index 0af2bdf46..47fc31021 100644
--- a/domains/shork.json
+++ b/domains/shork.json
@@ -2,7 +2,7 @@
"owner": {
"username": "shorkdev",
"email": "shork_d3v@proton.me",
- "telegram": "@shorko_owo"
+ "telegram": "shorko_owo"
},
"record": {
"URL": "https://shork.one"
diff --git a/domains/shubh.json b/domains/shubh.json
index 2b950ba61..b4321f5ef 100644
--- a/domains/shubh.json
+++ b/domains/shubh.json
@@ -1,12 +1,8 @@
{
- "description": "personal portfolio website",
- "repo": "https://github.com/R3tr0LastKnight/Portfoio_v2.git",
"owner": {
- "username": "R3tr0LastKnight",
- "email": "r3tr0lastknight@gmail.com",
- "twitter": "R3tr0LastKnight"
+ "username": "R3tr0LastKnight"
},
"record": {
- "CNAME": "r3tr0lastknight.github.io"
+ "CNAME": "portfoio-v2.vercel.app"
}
}
diff --git a/domains/shuhaab.json b/domains/shuhaab.json
new file mode 100644
index 000000000..6db00e090
--- /dev/null
+++ b/domains/shuhaab.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Shuhaab-coder"
+ },
+ "record": {
+ "CNAME": "shuhaab.vercel.app"
+ }
+ }
+
diff --git a/domains/shweta-gotecha.json b/domains/shweta-gotecha.json
index 6d120df81..ddde7523c 100644
--- a/domains/shweta-gotecha.json
+++ b/domains/shweta-gotecha.json
@@ -2,8 +2,7 @@
"description": "site.",
"repo": "https://github.com/shweta-gotecha/shweta-gotecha.github.io",
"owner": {
- "username": "shweta-gotecha",
- "email": ""
+ "username": "shweta-gotecha"
},
"record": {
"CNAME": "shweta-gotecha.github.io"
diff --git a/domains/singh-jitendar.json b/domains/singh-jitendar.json
index 6522d2811..a48f23d6f 100644
--- a/domains/singh-jitendar.json
+++ b/domains/singh-jitendar.json
@@ -2,8 +2,7 @@
"description": "My new website",
"repo": "https://github.com/singh-jitendar/singh-jitendar.github.io",
"owner": {
- "username": "singh-jitendar",
- "email": ""
+ "username": "singh-jitendar"
},
"record": {
"CNAME": "singh-jitendar.github.io"
diff --git a/domains/sirmacr0.json b/domains/sirmacr0.json
index 4762d7782..8ebb66f94 100644
--- a/domains/sirmacr0.json
+++ b/domains/sirmacr0.json
@@ -6,6 +6,6 @@
"email": "tunagunduz03@gmail.com"
},
"record": {
- "CNAME": "SirMacr0.github.io"
+ "CNAME": "sirmacr0.github.io"
}
}
diff --git a/domains/skarwuuu.json b/domains/skarwuuu.json
new file mode 100644
index 000000000..e7035720e
--- /dev/null
+++ b/domains/skarwuuu.json
@@ -0,0 +1,10 @@
+{
+ "description": "skarwuuu.is-a.dev",
+ "owner": {
+ "username": "skarwuuu",
+ "email": "sakshrwt@gmail.com"
+ },
+ "record": {
+ "CNAME": "skarwuuu.vercel.app"
+ }
+}
diff --git a/domains/skibidi.json b/domains/skibidi.json
index bb9114e0e..e8446824e 100644
--- a/domains/skibidi.json
+++ b/domains/skibidi.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "bananaking6",
- "discord": "skibidibagel",
- "email": ""
+ "discord": "skibidibagel"
},
"record": {
"CNAME": "bananaking6.github.io"
diff --git a/domains/smeagol.json b/domains/smeagol.json
index 12879432a..c3779955f 100644
--- a/domains/smeagol.json
+++ b/domains/smeagol.json
@@ -1,11 +1,11 @@
{
"description": "Smeagol's github pages site, currently a work in progress",
- "repo": "https://github.com/Smeagol2069/smeagol2069.github.io",
+ "repo": "https://github.com/IamSmeagol/IamSmeagol.github.io",
"owner": {
- "username": "Smeagol2069",
- "discord": "Smeagol#2069"
+ "username": "IamSmeagol",
+ "discord": "iamsmeagol"
},
"record": {
- "CNAME": "smeagol2069.github.io"
+ "CNAME": "iamsmeagol.github.io"
}
}
diff --git a/domains/smilos.json b/domains/smilos.json
new file mode 100644
index 000000000..0a4f8dffa
--- /dev/null
+++ b/domains/smilos.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "smilos71"
+ },
+ "record": {
+ "CNAME": "smilos71.github.io"
+ }
+}
diff --git a/domains/solarskripts.json b/domains/solarskripts.json
index 099617c21..bf4bcc296 100644
--- a/domains/solarskripts.json
+++ b/domains/solarskripts.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "SolarSkripts",
- "email": "0hexius0@gmail.com"
- },
- "record": {
- "CNAME": "solarskripts.github.io"
- }
+ "owner": {
+ "username": "SolarSkripts",
+ "email": "0hexius0@gmail.com"
+ },
+ "record": {
+ "CNAME": "solarskripts.net"
+ }
}
diff --git a/domains/somaiyalbakhet.json b/domains/somaiyalbakhet.json
new file mode 100644
index 000000000..2e4f4b519
--- /dev/null
+++ b/domains/somaiyalbakhet.json
@@ -0,0 +1,10 @@
+{
+ "description": "my portfolio website on Netlify",
+ "owner": {
+ "username": "Somaiya-XI",
+ "discord": "Sen!#0577"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/sono.json b/domains/sono.json
index be2a6bf45..18f3e021d 100644
--- a/domains/sono.json
+++ b/domains/sono.json
@@ -1,19 +1,12 @@
{
- "owner": {
- "username": "getSono",
- "email": "sono.arbeit@gmail.com"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": [
- "v=spf1 include:spf.improvmx.com ~all",
- "google-site-verification=F90R7qQ2_fVCwUljDPq9iPlyzzKs7-4XovZLDeNAvns"
- ]
- }
+ "owner": {
+ "username": "getSono",
+ "email": "sono.arbeit@gmail.com"
+ },
+ "record": {
+ "NS": [
+ "jasmine.ns.cloudflare.com",
+ "trace.ns.cloudflare.com"
+ ]
+ }
}
diff --git a/domains/sora-os.json b/domains/sora-os.json
new file mode 100644
index 000000000..4ca1b2332
--- /dev/null
+++ b/domains/sora-os.json
@@ -0,0 +1,12 @@
+{
+ "description": "Cloud operating system",
+ "repo": "https://github.com/qloha/Sora-OS",
+ "owner": {
+ "username": "qloha",
+ "email": "",
+ "youtube": "https://youtube.com/@qloha"
+ },
+ "record": {
+ "CNAME": "sora-os.up.railway.app"
+ }
+}
diff --git a/domains/soraishiro.json b/domains/soraishiro.json
new file mode 100644
index 000000000..6c9db0df6
--- /dev/null
+++ b/domains/soraishiro.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "Soraishiro"
+ },
+ "record": {
+ "CNAME": "soraishiro.github.io"
+ }
+}
diff --git a/domains/soumya-das.json b/domains/soumya-das.json
index 959de54e6..77d7f34c7 100644
--- a/domains/soumya-das.json
+++ b/domains/soumya-das.json
@@ -2,8 +2,7 @@
"description": "soumyah Profile.",
"repo": "https://github.com/soumyah-das/soumyah-das.github.io",
"owner": {
- "username": "soumyah-das",
- "email": ""
+ "username": "soumyah-das"
},
"record": {
"CNAME": "soumyah-das.github.io"
diff --git a/domains/sourav-parida.json b/domains/sourav-parida.json
index 5e0fb91df..94766d715 100644
--- a/domains/sourav-parida.json
+++ b/domains/sourav-parida.json
@@ -6,6 +6,6 @@
"email": "souravparida170@gmail.com"
},
"record": {
- "CNAME": "Sourav-Parida.github.io"
+ "CNAME": "sourav-parida.github.io"
}
}
diff --git a/domains/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json
index 2acefc029..d1b707373 100644
--- a/domains/sourov-khan-nahid.json
+++ b/domains/sourov-khan-nahid.json
@@ -4,6 +4,6 @@
"email": "SourovKhanNahid@gmail.com"
},
"record": {
- "CNAME": "SOUROVKHANNAHID.github.io"
+ "CNAME": "sourovkhannahid.github.io"
}
}
diff --git a/domains/spacecraft.hexaa.json b/domains/spacecraft.hexaa.json
deleted file mode 100644
index b12456c77..000000000
--- a/domains/spacecraft.hexaa.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "hexaaagon",
- "email": "me@hexagonn.my.id",
- "discord": "scoooolzs",
- "twitter": "Scoooolzs"
- },
- "record": {
- "URL": "https://spacecraft.hexagonn.my.id"
- }
-}
diff --git a/domains/spaxly.json b/domains/spaxly.json
index 6e1da3f96..e78e6d9eb 100644
--- a/domains/spaxly.json
+++ b/domains/spaxly.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
-
"TXT": "forward-email=ohmrc2545@gmail.com"
}
}
diff --git a/domains/spechide.json b/domains/spechide.json
index 533b534a5..0e09c60f0 100644
--- a/domains/spechide.json
+++ b/domains/spechide.json
@@ -6,6 +6,6 @@
"twitter": "SpEcHiDe"
},
"record": {
- "CNAME": "SpEcHiDe.github.io"
+ "CNAME": "spechide.github.io"
}
}
diff --git a/domains/spoozy.json b/domains/spoozy.json
index d9e7d42e9..d1f16fd34 100644
--- a/domains/spoozy.json
+++ b/domains/spoozy.json
@@ -6,6 +6,6 @@
"email": "gaspardlebreton@outlook.com"
},
"record": {
- "CNAME": "Spoozy.github.io"
+ "CNAME": "spoozy.github.io"
}
}
diff --git a/domains/spotify.vornexx.json b/domains/spotify.vornexx.json
index 7f05cd5ff..d8566e12d 100644
--- a/domains/spotify.vornexx.json
+++ b/domains/spotify.vornexx.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "vornex-gh",
+ "username": "vornexx",
"discord": "1149438819834269856",
"twitter": "vornexx_"
},
diff --git a/domains/sq.json b/domains/sq.json
index 038ca396c..5f34dd820 100644
--- a/domains/sq.json
+++ b/domains/sq.json
@@ -3,8 +3,7 @@
"owner": {
"username": "SquareScreamYT",
"repo": "https://github.com/SquareScreamYT",
- "discord": "918475812884344852",
- "email": ""
+ "discord": "918475812884344852"
},
"record": {
"CNAME": "squarescreamyt.github.io"
diff --git a/domains/srlbel.json b/domains/srlbel.json
index e080925ae..f1c3e46ea 100644
--- a/domains/srlbel.json
+++ b/domains/srlbel.json
@@ -4,6 +4,6 @@
"email": "dev.juansimancas@proton.me"
},
"record": {
- "A": ["72.2.60.5"]
+ "CNAME": "srlbel.netlify.app"
}
}
diff --git a/domains/ss.xcyth.json b/domains/ss.xcyth.json
deleted file mode 100644
index b729a82f2..000000000
--- a/domains/ss.xcyth.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Xcyth",
- "email": "ritam.choudhuri@gmail.com"
- },
- "record": {
- "CNAME": "proxy.private.danbot.host"
- }
-}
diff --git a/domains/stargate.json b/domains/stargate.json
new file mode 100644
index 000000000..0e1638ab1
--- /dev/null
+++ b/domains/stargate.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "r0ckmix",
+ "email": "mix155@yandex.ru"
+ },
+ "record": {
+ "A": [
+ "193.178.210.179"
+ ]
+ }
+}
diff --git a/domains/status.vulcanocraft.json b/domains/status.vulcanocraft.json
new file mode 100644
index 000000000..d22f89082
--- /dev/null
+++ b/domains/status.vulcanocraft.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.mpPL9XXteeODNSJOnZAXl9g5kus0xQEGYMYgUHCkJGr5nRcIN1KNwQYV_wxyGiWdT1bo5Yy-HyK3vMh50g2ECLKdltfbJbOsSJkyOJewtKmvwkSVuZNl2rQ8KMNZ46se3LLHrOjEpRB-1ijmSnuXYuiYZ1AeEqaUfQSCRMY_yTlvMm_OdUj9VK97bjHliB6NHffuX93AtVSK5-OwxZyJsEpICevJd6YHbJiFzKTmUXEUtVM90LBI-BqlblawDq8cLyB1D1eXzNiTFT9JdEmTqalPusePWT8RO2knz9wkb2f4BeGJSGCCai7n9f-hO8X41pWS9UzP2qfutkinveBX4g.qPPdM2OBmIURG_QSgCiZvA.IVp2jGQA6Y0ZEcAuBeyKntWmnF2Y_1jCMJnJ8f-PQ6ceVooVM2r-ZzVnIN7khw5gou4Sc--VGnARlJRaXV5ma-vPZqr_4x1qQs-eYiPq_y5TcD_7qoDjmK3g5MwOMXbS.r-gr82Miw4q6KqKxSdZQDg"
+ },
+ "record": {
+ "CNAME": "vulcanostatus.pages.dev"
+ }
+}
diff --git a/domains/steake.json b/domains/steake.json
index 6097bc2e2..fb19248c3 100644
--- a/domains/steake.json
+++ b/domains/steake.json
@@ -1,12 +1,12 @@
{
- "description": "Steake",
- "repo": "https://github.com/Steake/about/",
- "owner": {
- "username": "steake",
- "email": "ollie.steake@gmail.com",
- "twitter": "officialELTCOIN"
- },
- "record": {
- "CNAME": "steake.github.io"
- }
+ "description": "Steake",
+ "repo": "https://github.com/Steake/about/",
+ "owner": {
+ "username": "steake",
+ "email": "ollie.steake@gmail.com",
+ "twitter": "officialELTCOIN"
+ },
+ "record": {
+ "CNAME": "steake.github.io"
+ }
}
diff --git a/domains/steven.json b/domains/steven.json
index c01c15f36..daefda47f 100644
--- a/domains/steven.json
+++ b/domains/steven.json
@@ -6,6 +6,6 @@
"email": "steve.r.frohlich@gmail.com"
},
"record": {
- "CNAME": "StevenRonnyFrohlich.github.io"
+ "CNAME": "stevenronnyfrohlich.github.io"
}
}
diff --git a/domains/sua.json b/domains/sua.json
index 5f5084bdd..2b34ee5b3 100644
--- a/domains/sua.json
+++ b/domains/sua.json
@@ -4,6 +4,6 @@
"email": "SamiaIslamSua@gmail.com"
},
"record": {
- "CNAME": "SamiaIslamSua.github.io"
+ "CNAME": "samiaislamsua.github.io"
}
}
diff --git a/domains/suctrebinhthuan.json b/domains/suctrebinhthuan.json
new file mode 100644
index 000000000..5c36bc453
--- /dev/null
+++ b/domains/suctrebinhthuan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "suctrebth",
+ "email": "web.insuctre@gmail.com"
+ },
+ "record": {
+ "CNAME": "suctrebinhthuan.com"
+ }
+}
diff --git a/domains/sunny.json b/domains/sunny.json
index e3cae088b..0d18a9400 100644
--- a/domains/sunny.json
+++ b/domains/sunny.json
@@ -4,6 +4,6 @@
"email": "sunnygandhwani027@gmail.com"
},
"record": {
- "CNAME": "Sunny-unik.github.io"
+ "CNAME": "sunny-unik.github.io"
}
}
diff --git a/domains/sunnyychi.json b/domains/sunnyychi.json
new file mode 100644
index 000000000..a313e75b1
--- /dev/null
+++ b/domains/sunnyychi.json
@@ -0,0 +1,11 @@
+{
+ "description": "A personal portfolio website",
+ "repo": "https://github.com/sunnyychi/Website",
+ "owner": {
+ "username": "sunnyychi",
+ "email": "sunnyychi@lona-development.org"
+ },
+ "record": {
+ "CNAME": "sunnyychi.github.io"
+ }
+}
diff --git a/domains/surajh-patel.json b/domains/surajh-patel.json
index 7502c1f13..e8cf877f4 100644
--- a/domains/surajh-patel.json
+++ b/domains/surajh-patel.json
@@ -2,8 +2,7 @@
"description": "surajh-patel Profile.",
"repo": "https://github.com/surajh-patel/surajh-patel.github.io",
"owner": {
- "username": "surajh-patel",
- "email": ""
+ "username": "surajh-patel"
},
"record": {
"CNAME": "surajh-patel.github.io"
diff --git a/domains/surendran-soumya.json b/domains/surendran-soumya.json
index 93c0ff8aa..770959983 100644
--- a/domains/surendran-soumya.json
+++ b/domains/surendran-soumya.json
@@ -2,8 +2,7 @@
"description": "surendran-soumya Profile.",
"repo": "https://github.com/surendran-soumya/surendran-soumya.github.io",
"owner": {
- "username": "surendran-soumya",
- "email": ""
+ "username": "surendran-soumya"
},
"record": {
"CNAME": "surendran-soumya.github.io"
diff --git a/domains/swapnil.json b/domains/swapnil.json
index f23fddfd6..692bfc0ce 100644
--- a/domains/swapnil.json
+++ b/domains/swapnil.json
@@ -6,6 +6,6 @@
"email": "swapnilchand51@gmail.com"
},
"record": {
- "CNAME": "SwapnilChand.github.io"
+ "CNAME": "swapnilchand.github.io"
}
}
diff --git a/domains/sxi.json b/domains/sxi.json
index 66f6a92ad..c87b4f43a 100644
--- a/domains/sxi.json
+++ b/domains/sxi.json
@@ -5,6 +5,6 @@
"discord": "1247896918957490198"
},
"record": {
- "CNAME": "sxi.digitalpress.blog"
+ "URL": "https://sxi.com.tr"
}
}
diff --git a/domains/tahseen.json b/domains/tahseen.json
new file mode 100644
index 000000000..7d65647be
--- /dev/null
+++ b/domains/tahseen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tahseen",
+ "email": "itxtahseen@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
+}
diff --git a/domains/tak.json b/domains/tak.json
new file mode 100644
index 000000000..8a647b45f
--- /dev/null
+++ b/domains/tak.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "tak-gamingYT",
+ "email": "tak@tak.io.vn"
+ },
+ "record": {
+ "CNAME": "tak-gamingyt.github.io"
+ },
+ "proxied": true
+}
diff --git a/domains/tallerthanshort.json b/domains/tallerthanshort.json
index c97bfac10..41e7f061a 100644
--- a/domains/tallerthanshort.json
+++ b/domains/tallerthanshort.json
@@ -6,6 +6,6 @@
"email": "TallerThanShort@duck.com"
},
"record": {
- "CNAME": "TallerThanShort.github.io"
+ "CNAME": "tallerthanshort.github.io"
}
}
diff --git a/domains/tan.json b/domains/tan.json
new file mode 100644
index 000000000..85ecae11e
--- /dev/null
+++ b/domains/tan.json
@@ -0,0 +1,10 @@
+{
+ "description": "tan.is-a.dev",
+ "owner": {
+ "username": "cuno92",
+ "email": "hoangvannhattan@gmail.com"
+ },
+ "record": {
+ "CNAME": "white-hill-030c00b00.4.azurestaticapps.net"
+ }
+}
diff --git a/domains/tanish-poddar.json b/domains/tanish-poddar.json
new file mode 100644
index 000000000..4c64749fe
--- /dev/null
+++ b/domains/tanish-poddar.json
@@ -0,0 +1,11 @@
+{
+ "description": "Documentation website for is-a.dev",
+ "repo": "https://github.com/tanishpoddar/tanishpoddar.github.io",
+ "owner": {
+ "username": "tanishpoddar",
+ "email": "tanishpoddar.18@gmail.com"
+ },
+ "record": {
+ "CNAME": "tanishpoddar.github.io"
+ }
+}
diff --git a/domains/tanos.json b/domains/tanos.json
index 2cb30df04..8fbfaeb3c 100644
--- a/domains/tanos.json
+++ b/domains/tanos.json
@@ -6,6 +6,6 @@
"email": "opmijloly@gmail.com"
},
"record": {
- "CNAME": "TacoGit.github.io"
+ "CNAME": "tacogit.github.io"
}
}
diff --git a/domains/tanquang.json b/domains/tanquang.json
new file mode 100644
index 000000000..778eff53f
--- /dev/null
+++ b/domains/tanquang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "quangnlt",
+ "email": "tanquang2k3@gmail.com"
+ },
+ "record": {
+ "CNAME": "quangnlt.github.io"
+ }
+}
diff --git a/domains/team.json b/domains/team.json
index 31c79da96..993cade10 100644
--- a/domains/team.json
+++ b/domains/team.json
@@ -1,11 +1,11 @@
{
- "description": "The Maintainer Docs For The Is-A.Dev Website!",
- "repo": "github.com/is-a-dev/maintainer-docs",
+ "repo": "https://github.com/is-a-dev/team-docs",
"owner": {
"username": "is-a-dev",
"email": "admin@is-a.dev"
},
"record": {
"CNAME": "is-a.dev"
- }
+ },
+ "proxied": true
}
diff --git a/domains/teamfive.sono.json b/domains/teamfive.sono.json
deleted file mode 100644
index 0cafc4127..000000000
--- a/domains/teamfive.sono.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "getSono",
- "email": "julianwolf2013@outlook.de",
- "discord": "1222250424309121145"
- },
- "record": {
- "CNAME": "getsono.github.io"
- }
-}
diff --git a/domains/techadv.json b/domains/techadv.json
new file mode 100644
index 000000000..35f2e64b9
--- /dev/null
+++ b/domains/techadv.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "techadvyt",
+ "discord": "1250701051812642887",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.Vp8rCwhz4V1J-S7XGZRX3yIV-uuvxLHg_j1MB64d-i_xDZdl9mVIrln2zdw8R7Aeh80rTEgAKdJG7ihGxigBUpQvMOFktvm_ronxXv3HGQMSvHqm_YyxbMIO4oMb7eIzV4U6XtC_GJBz6jVDzn1a7o1ZhBwkACtLfkoSWyCFMevXGq2QJLKSCvl1LuM5dgBGfsMC67-qOJ0NKjucTXXvYU4jzC-aGN64QIfBg0Q3S52B6asw8M4oc8NPVSplJwP86n8wlhXRV9hK5gNUp9VhZXgjkcifnw2yTIezz4f8jax3_W7hpvdTdAiiHlAKt5DNESROD4QbSnN1nb6rPqgUhA.DtsV7hiKsdEv3RblcTjgHQ.c38vZ7MeCA5NjcY2jZj7eq7Jdd8HCqFFYNXBzR3LxtJc_zCtQvzWM-Fs2u-UV8mrl7GJTr0A8PpGc6WuFJPVrReyQl6dQllir9HnGiTVNCQ.g5lJmjLEqEq6jfkocwxJ3w"
+ },
+ "record": {
+ "CNAME": "usest1.netro.host"
+ }
+}
diff --git a/domains/tentomasne.json b/domains/tentomasne.json
index 8974a9512..1e20af687 100644
--- a/domains/tentomasne.json
+++ b/domains/tentomasne.json
@@ -1,8 +1,8 @@
{
- "owner": {
- "username": "jasomtubratu"
- },
- "record": {
- "CNAME": "tomasdavidik.sk"
- }
+ "owner": {
+ "username": "jasomtubratu"
+ },
+ "record": {
+ "CNAME": "tomasdavidik.sk"
+ }
}
diff --git a/domains/teobouvard.json b/domains/teobouvard.json
index ac0bc8287..1b9060b9c 100644
--- a/domains/teobouvard.json
+++ b/domains/teobouvard.json
@@ -2,8 +2,7 @@
"description": "Personal github page",
"repo": "https://github.com/teobouvard/teobouvard.github.io",
"owner": {
- "username": "teobouvard",
- "email": ""
+ "username": "teobouvard"
},
"record": {
"CNAME": "teobouvard.github.io"
diff --git a/domains/thaihung.json b/domains/thaihung.json
index f9602ed3f..043acd391 100644
--- a/domains/thaihung.json
+++ b/domains/thaihung.json
@@ -11,9 +11,7 @@
"185.199.110.153",
"185.199.111.153"
],
-
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
-
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/thamizh.json b/domains/thamizh.json
index e4d2b7a94..cc46ef255 100644
--- a/domains/thamizh.json
+++ b/domains/thamizh.json
@@ -7,6 +7,6 @@
"twitter": "k_thamizhventhu"
},
"record": {
- "CNAME": "ThisisThamizh.github.io"
+ "CNAME": "thisisthamizh.github.io"
}
}
diff --git a/domains/thehackerdude1083.json b/domains/thehackerdude1083.json
index 965bd6e5d..02b75fbd7 100644
--- a/domains/thehackerdude1083.json
+++ b/domains/thehackerdude1083.json
@@ -6,6 +6,6 @@
"email": "shaheeransari57@gmail.com"
},
"record": {
- "CNAME": "TheHackerDude1083.github.io"
+ "CNAME": "thehackerdude1083.github.io"
}
}
diff --git a/domains/thehcj.json b/domains/thehcj.json
new file mode 100644
index 000000000..8f312d4f1
--- /dev/null
+++ b/domains/thehcj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thehcj",
+ "bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
+ },
+ "record": {
+ "CNAME": "thehcj.github.io"
+ }
+}
diff --git a/domains/theveryheavy.json b/domains/theveryheavy.json
new file mode 100644
index 000000000..17a1cc7e7
--- /dev/null
+++ b/domains/theveryheavy.json
@@ -0,0 +1,24 @@
+{
+ "owner": {
+ "username": "theveryheavy",
+ "discord": "1266113644643614803",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.suIFFV54UOL9Uwa0noRId59uf3EFtDxH9ExQfDv0RMETAGRUfXgK5h68nPm94oBHBVdTrgqlxB1prBpZsoDRhNJnowBjtJL8NP6i40uChltcaAUMsL76kHFlx9I-HojhoHAg6BY3Kt3iQRkMuwHFmJLFwNBCEgK45IlxiBQQ_Of_LW_C7jfp_kqQhrXggqdZYLwKUvsp-JPXCwPmny7IlYF5T6OIhEmjkj2QWEjyqPj8MhvZOpB5WI5nxsxwXKVDvdQysWDm8UuvKThgoY73yoOsKMV6-8RLSIPzSA--hSz8OOzao-YOXMlropqHx9SSQKF2gbg8Jt0la-0o77OYOw._JRnIF_by82ZehfCV5YDgg.O8_d7esMCv2vadIOAxU3oP2njMeEUmuHn7Ud46KZakXuzA8WBZntj3rYa7PZYYDf4sAFwvVCE3O5sdBJsb27Pfbx4G2NjUd04t2tGVKvI6U.U3UdmUku7uVh1MQkFfHOyg"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.simplelogin.co",
+ "mx2.simplelogin.co"
+ ],
+ "TXT": [
+ "sl-verification=annotwbbqjhagomrimwzthorstvzhw",
+ "v=spf1 include:simplelogin.co ~all",
+ "v=DMARC1; p=quarantine; pct=100; adkim=s; aspf=s"
+ ]
+ }
+}
diff --git a/domains/thiaguinho.json b/domains/thiaguinho.json
new file mode 100644
index 000000000..fdd2af922
--- /dev/null
+++ b/domains/thiaguinho.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HomeamdAfK",
+ "email": "homeamd@hotmail.com"
+ },
+ "record": {
+ "CNAME": "umbrel.minotaur-enigmatic.ts.net"
+ }
+}
diff --git a/domains/this-guy.json b/domains/this-guy.json
index a270af88d..935395343 100644
--- a/domains/this-guy.json
+++ b/domains/this-guy.json
@@ -1,6 +1,5 @@
{
"description": "This Guy is a Dev.",
-
"owner": {
"username": "ochotadariusz",
"email": "ochota.dariusz@gmail.com"
diff --git a/domains/tien.json b/domains/tien.json
index 995e7055d..30d5db640 100644
--- a/domains/tien.json
+++ b/domains/tien.json
@@ -6,6 +6,6 @@
"email": "tientonybest2006@gmail.com"
},
"record": {
- "CNAME": "TonyN678.github.io"
+ "CNAME": "tonyn678.github.io"
}
}
diff --git a/domains/tilak.json b/domains/tilak.json
index f3b8ca7f6..fd0ed1d11 100644
--- a/domains/tilak.json
+++ b/domains/tilak.json
@@ -1,11 +1,9 @@
{
- "description": "Tilak's personal developer website",
- "repo": "https://github.com/Perry-xD/Perry-xD.github.io",
"owner": {
- "username": "Perry-xD",
- "email": "heyahelloji@gmail.com"
+ "username": "YourTilak",
+ "email": "rj05tilak@gmail.com"
},
"record": {
- "CNAME": "Perry-xD.github.io"
+ "CNAME": "yourtilak.github.io"
}
}
diff --git a/domains/tim.json b/domains/tim.json
index a0eb45dbb..3c170dbad 100644
--- a/domains/tim.json
+++ b/domains/tim.json
@@ -1,8 +1,7 @@
{
"description": "Tim is a Dev",
"owner": {
- "username": "xorob0",
- "email": "xorob0@toum"
+ "username": "xorob0"
},
"repo": "https://github.com/xorob0/register",
"record": {
diff --git a/domains/toantran.json b/domains/toantran.json
new file mode 100644
index 000000000..77cb243d7
--- /dev/null
+++ b/domains/toantran.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/toantranct94/toantran.github.io",
+ "owner": {
+ "username": "toantranct94",
+ "email": "toantranct94@gmail.com"
+ },
+ "record": {
+ "CNAME": "toantran.github.io"
+ }
+}
diff --git a/domains/tong09.json b/domains/tong09.json
new file mode 100644
index 000000000..dd9bcb161
--- /dev/null
+++ b/domains/tong09.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tong09",
+ "email": "mdrochana93@gmail.com"
+ },
+ "record": {
+ "CNAME": "383zyrozcr38d.ahost.marscode.site"
+ }
+}
diff --git a/domains/tortilla.json b/domains/tortilla.json
new file mode 100644
index 000000000..977c39694
--- /dev/null
+++ b/domains/tortilla.json
@@ -0,0 +1,11 @@
+{
+ "description": "tortilla.is-a.dev",
+ "owner": {
+ "username": "Colbster937",
+ "email": "colbster937@colbster937.dev"
+ },
+ "record": {
+ "CNAME": "dns.tortillagames.org"
+ },
+ "proxied": true
+}
diff --git a/domains/toster.json b/domains/toster.json
index c8b4f3c38..5bb5b5341 100644
--- a/domains/toster.json
+++ b/domains/toster.json
@@ -4,6 +4,6 @@
"email": "matiz.rafal@gmail.com"
},
"record": {
- "CNAME": "Rafau04.github.io"
+ "CNAME": "rafau04.github.io"
}
}
diff --git a/domains/transfer.creeperita104.json b/domains/transfer.creeperita104.json
deleted file mode 100644
index 66df526f1..000000000
--- a/domains/transfer.creeperita104.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "creeperita09",
- "email": "creeperita.09@gmail.com"
- },
- "record": {
- "CNAME": "icahomesvr2022.freeddns.org"
- }
-}
diff --git a/domains/trix.json b/domains/trix.json
index 94dff565e..13a85cc35 100644
--- a/domains/trix.json
+++ b/domains/trix.json
@@ -1,9 +1,18 @@
{
- "owner": {
- "username": "tr1xem",
- "email": "admin@trixsly.xyz"
- },
- "record": {
- "CNAME": "superuser-l.github.io"
- }
+ "owner": {
+ "username": "tr1xem",
+ "email": "admin@trixsly.xyz"
+ },
+ "record": {
+ "A": [
+ "185.199.110.153",
+ "185.199.109.153",
+ "185.199.111.153",
+ "185.199.108.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ]
+ }
}
diff --git a/domains/trungz.json b/domains/trungz.json
new file mode 100644
index 000000000..911383c15
--- /dev/null
+++ b/domains/trungz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lehuutrung1412",
+ "email": "me@lehuutrung.dev"
+ },
+ "record": {
+ "URL": "https://lehuutrung.dev"
+ }
+}
diff --git a/domains/tsu.json b/domains/tsu.json
new file mode 100644
index 000000000..29c62defb
--- /dev/null
+++ b/domains/tsu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dot-tsu",
+ "email": "lucanahtsu@gmail.com"
+ },
+ "record": {
+ "CNAME": "dot-tsu.github.io"
+ }
+}
diff --git a/domains/ttkt.json b/domains/ttkt.json
new file mode 100644
index 000000000..a71f767a9
--- /dev/null
+++ b/domains/ttkt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/tuankiet.json b/domains/tuankiet.json
new file mode 100644
index 000000000..17a92e331
--- /dev/null
+++ b/domains/tuankiet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "harrytien107",
+ "email": "sigmatien@duck.com"
+ },
+ "record": {
+ "CNAME": "harrytien107.github.io"
+ }
+}
diff --git a/domains/tuantestdashboard.json b/domains/tuantestdashboard.json
new file mode 100644
index 000000000..d0254f2bf
--- /dev/null
+++ b/domains/tuantestdashboard.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "latuan2710",
+ "email": "tuan.la.cit19@eiu.edu.vn"
+ },
+ "record": {
+ "CNAME": "admin-dashboard-latuan.vercel.app"
+ }
+}
diff --git a/domains/tunnel.vulcanocraft.json b/domains/tunnel.vulcanocraft.json
new file mode 100644
index 000000000..e038d3c7d
--- /dev/null
+++ b/domains/tunnel.vulcanocraft.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "email": "",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.JPhn4mFGL270NVjNvcLw1eYMU_-BAJ7GiIPBlijkSzPPJsByxT2CJErVgHV3K_QjLQRPMGeQE0jjYHOWFLhlZc2mjav7vcAYrcWjnSa-QKbQho_ppnebX1E8OfLtsKWtvqxfGm3O-ii7Eh4XYo7ozm49gTKed_Ypc1svCFp7SePt5DXzhuDoeJ7Ob-vd8zkmhuIoIBXBERWWnfQgaDDfUwCtkmziOmKGYECzpxK6y1z_jhHcjcftLSXn0S7730nODGhidOB9x-YSCkG-O3e72ECu0KH3SRg-HwJz4pQlmeYXGDZClDe9YG1GSHiW4xa9iT36PE8Q0zBLMvS8UWQh4g.LL602nYC1Zm6b1Rjv_5OGQ.QJymDzTupny-bEtQy-G8hZI1Ey49IDr3ZzhhBwE3Qtg7XQnsDf63q3nAGVX3zEHtK8GWQ-dnDg2FStiBRSihFczry1fYk1BOEbtwDQ-PYnphLeLhZuDz3BzVshnqVavw.1I4mHnmNjPVv4AwJvcUPKA"
+ },
+ "record": {
+ "A": ["147.185.221.23"]
+ },
+ "proxied": true
+}
diff --git a/domains/tunzankies.json b/domains/tunzankies.json
new file mode 100644
index 000000000..519c87449
--- /dev/null
+++ b/domains/tunzankies.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "description": "tunzankies.is-a.dev",
+ "username": "Tuan-Dang05",
+ "discord": "703136026595426305"
+ },
+ "record": {
+ "CNAME": "portfolio-3-d-nu.vercel.app"
+ }
+}
diff --git a/domains/tweets.clyron.json b/domains/tweets.clyron.json
new file mode 100644
index 000000000..284409427
--- /dev/null
+++ b/domains/tweets.clyron.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal website of Clyron",
+ "repo": "https://github.com/theclyron/theclyron.github.io",
+ "owner": {
+ "username": "theclyron",
+ "email": "onenonlyclyron@gmail.com"
+ },
+ "record": {
+ "CNAME": "theclyron.github.io"
+ }
+}
diff --git a/domains/ujalakhasiya.json b/domains/ujalakhasiya.json
index 63dbce92d..c1abafdcf 100644
--- a/domains/ujalakhasiya.json
+++ b/domains/ujalakhasiya.json
@@ -2,8 +2,7 @@
"description": "Portfolio site.",
"repo": "https://github.com/ujalakhasiya/ujalakhasiya.github.io",
"owner": {
- "username": "ujalakhasiya",
- "email": ""
+ "username": "ujalakhasiya"
},
"record": {
"CNAME": "ujalakhasiya.github.io"
diff --git a/domains/ukino.json b/domains/ukino.json
new file mode 100644
index 000000000..cf8775b36
--- /dev/null
+++ b/domains/ukino.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "ukinon"
+ },
+ "record": {
+ "CNAME": "ukino.vercel.app"
+ }
+}
diff --git a/domains/untitled.json b/domains/untitled.json
index 81b800ddc..d5342d887 100644
--- a/domains/untitled.json
+++ b/domains/untitled.json
@@ -6,6 +6,6 @@
"email": "macos14sonoma@gmail.com"
},
"record": {
- "CNAME": "VihaanAnand.github.io"
+ "CNAME": "vihaananand.github.io"
}
}
diff --git a/domains/upload.cdn.akk1to.json b/domains/upload.cdn.akk1to.json
new file mode 100644
index 000000000..ea77451e4
--- /dev/null
+++ b/domains/upload.cdn.akk1to.json
@@ -0,0 +1,12 @@
+{
+ "description": "file uploader of akk1to.dev",
+ "repo": "https://github.com/akk1to/upload.cdn",
+ "owner": {
+ "username": "akk1to",
+ "email": "akk1to.dev@gmail.com",
+ "discord": "727497287777124414"
+ },
+ "record": {
+ "CNAME": "akk1to.github.io"
+ }
+}
diff --git a/domains/utsabadhikari.json b/domains/utsabadhikari.json
new file mode 100644
index 000000000..136a2dd1f
--- /dev/null
+++ b/domains/utsabadhikari.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "utsab1231",
+ "email": "",
+ "discord": "573163740309094413",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.J8Zs7sfsirMCXNl8iuUK7xdq5hrLgPvMdrbhp1XfqXBrego8HGcVBEaKNzqZu16DXgMlcJUFJylKY6C7TUPYheXfPDP0Wh66NT6o7wFUsWFuQ6g5NSiU8ctXlI1K7f1_PXwO0iLw5rQOmgh4iw7NCOYti3rF1RXuae3OtNWWQnxgVEv9jieBwtsDhmhjgY2LZxPNJmqvoYCsR9-ytJoNgKYnjxwFqd_bCOKsBBRUAFGKMY031aNZRQTO5EoLOilDOfpznb_DtVmQCZZ_FI56mkKgJhupqIOxJ_bJgKNF6GbvAjSElMdWoVq_YsLU1ivao7sFdXjecje9yOzcBkOuPA.papQF2Ih2vL7uZ8R2B0Dug.2QknjUZW3VXKfWNhnEG5x7GBXEMg1cowfgNMQYmdyPZ64cc5hq6xtB_ENmlpEu7_QzddxpAqxqeKUGTgxwP2ksbAsDFoV02SUMjyiGlYADE.ljIgAJ8-syYcHV1cKeLziA"
+ },
+ "record": {
+ "CNAME": "personportfolio-e25d4.web.app"
+ }
+}
diff --git a/domains/uwu.json b/domains/uwu.json
index da3053a49..cef1c4605 100644
--- a/domains/uwu.json
+++ b/domains/uwu.json
@@ -1,10 +1,9 @@
{
"owner": {
- "username": "orxngc",
- "discord": "orangc",
- "email": "orangc@proton.me"
+ "username": "orangci",
+ "discord": "orangc"
},
"record": {
- "CNAME": "edge.redirect.pizza"
+ "URL": "https://orangc.xyz"
}
}
diff --git a/domains/uwunotislove.json b/domains/uwunotislove.json
index ed9b30cfc..abccaf63c 100644
--- a/domains/uwunotislove.json
+++ b/domains/uwunotislove.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "@uwunotislove",
+ "username": "uwunotislove",
"email": "moody761@hotmail.com"
},
"record": {
diff --git a/domains/v.json b/domains/v.json
new file mode 100644
index 000000000..e3cb8bea1
--- /dev/null
+++ b/domains/v.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "leofelix908",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "xproject-xi.vercel.app"
+ }
+}
diff --git a/domains/v3x.json b/domains/v3x.json
index c03de000b..0ab34cda2 100644
--- a/domains/v3x.json
+++ b/domains/v3x.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "v3vishal",
- "discord": "v3xg",
- "email": ""
+ "discord": "v3xg"
},
"record": {
"CNAME": "v3vishal.github.io"
diff --git a/domains/vanmanh.json b/domains/vanmanh.json
new file mode 100644
index 000000000..84c017a28
--- /dev/null
+++ b/domains/vanmanh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vanmanhdev",
+ "email": "vanmanh2763@gmail.com"
+ },
+ "record": {
+ "CNAME": "vanmanhdev.github.io"
+ }
+}
diff --git a/domains/vansh.json b/domains/vansh.json
index 99919fe4e..233743bc4 100644
--- a/domains/vansh.json
+++ b/domains/vansh.json
@@ -4,7 +4,7 @@
"email": "goelvansh2@gmail.com"
},
"record": {
- "CNAME": "vansh-goel.github.io"
+ "CNAME": "portfolio-mu-three-49.vercel.app"
},
"description": "Personal Portfolio"
}
diff --git a/domains/vantage.json b/domains/vantage.json
new file mode 100644
index 000000000..78848c6a7
--- /dev/null
+++ b/domains/vantage.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "blaze-099",
+ "email": "",
+ "discord": "1186691290759434350",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.QLo89mhM4fE7MyI0fwTOoE1gwfqgTROR4XPtssSWrCFKdjAMxwFLRxSVKfTTk47ZdvtFcNQ-9i6zANMmvnKWqb4lk-A_IYDgCTI-rzfl7lIAsff092nh30jydQF4TCaaPwer3yrDZs-cHqnPJe1M9tVGLROeCpH5ndmRFCFCTp0SF5fIlyed9zElmsvmVm1In-pKSTFghIOm7W5A0Y_TGgGRz1GnCd7rUL0y_2Pww__W_JmiPYaqnIaas5YfHZSeSv68f4u6TicVOUFMCmRCAeF17ajRHB8NJJmAZ_5o0pvPs-YTFttOGRRp0MV7AMObacFMFpYufgvFM6amMBuKFA.nFT85dthPK_PLwebqK3zVw.w_dE_O8xeNrfXjtiPx_VM3hBR_p0i8huGEZfvGafCIBBtWm42cuIYAZ_kNh_qai31o3i7oRRi7UXOBGeShlvXW7znEXB9nx6Xy81QrbL878.l30yta1ym3dOqtn8MC7dZA"
+ },
+ "record": {
+ "CNAME": "valorant-overlay-phi.vercel.app"
+ }
+}
diff --git a/domains/vasanth.json b/domains/vasanth.json
new file mode 100644
index 000000000..07f5aa342
--- /dev/null
+++ b/domains/vasanth.json
@@ -0,0 +1,13 @@
+{
+ "description": "Vasanth personal Blog",
+ "repo": "https://github.com/itsparser",
+ "owner": {
+ "username": "62d2",
+ "email": "itsparser@gmail.com",
+ "twitter": "itsparser",
+ "discord": "itsparser"
+ },
+ "record": {
+ "CNAME": "itsparser.github.io"
+ }
+}
diff --git a/domains/vault.server.drpleaserespect.json b/domains/vault.server.drpleaserespect.json
deleted file mode 100644
index ee0613c67..000000000
--- a/domains/vault.server.drpleaserespect.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DrPleaseRespect",
- "email": "juliannayr2007@gmail.com"
- },
- "record": {
- "A": ["146.19.100.135"],
- "AAAA": ["2a05:dfc1:4400:6c00::a"]
- }
-}
diff --git a/domains/vdevanarayan.json b/domains/vdevanarayan.json
new file mode 100644
index 000000000..91adbc61a
--- /dev/null
+++ b/domains/vdevanarayan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CodeTitan7",
+ "email": "octavius1983bc@gmail.com"
+ },
+ "record": {
+ "URL": "https://vdevanarayan.vercel.app"
+ }
+}
diff --git a/domains/veen.json b/domains/veen.json
index 396e7563a..c7826462d 100644
--- a/domains/veen.json
+++ b/domains/veen.json
@@ -4,6 +4,6 @@
"email": "vmikki7207@gmail.com"
},
"record": {
- "CNAME": "Vihaan7207.github.io"
+ "CNAME": "vihaan7207.github.io"
}
}
diff --git a/domains/vela.json b/domains/vela.json
new file mode 100644
index 000000000..c46c8660c
--- /dev/null
+++ b/domains/vela.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "v3laDev",
+ "email": "27khero@proton.me"
+ },
+ "record": {
+ "CNAME": "v3laDev.github.io"
+ }
+}
diff --git a/domains/vendors.syntaxloopers.json b/domains/vendors.syntaxloopers.json
deleted file mode 100644
index 726befd50..000000000
--- a/domains/vendors.syntaxloopers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "chiragnahata",
- "email": "chiragnahata05@gmail.com"
- },
- "record": {
- "A": ["129.213.151.29"]
- }
-}
diff --git a/domains/vercel.uwu.json b/domains/vercel.uwu.json
index 304ea2a5c..c76f22995 100644
--- a/domains/vercel.uwu.json
+++ b/domains/vercel.uwu.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "orxngc",
+ "username": "orangci",
"discord": "orangc",
"email": "orangc@proton.me"
},
diff --git a/domains/verma-sanjeet.json b/domains/verma-sanjeet.json
index 642ad4408..9a14a09a4 100644
--- a/domains/verma-sanjeet.json
+++ b/domains/verma-sanjeet.json
@@ -2,8 +2,7 @@
"description": "Sanjeet Verma.",
"repo": "https://github.com/verma-sanjeet/verma-sanjeet.github.io",
"owner": {
- "username": "verma-sanjeet",
- "email": ""
+ "username": "verma-sanjeet"
},
"record": {
"CNAME": "verma-sanjeet.github.io"
diff --git a/domains/vgwarden.json b/domains/vgwarden.json
new file mode 100644
index 000000000..cb2b3886e
--- /dev/null
+++ b/domains/vgwarden.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "VGWARDEN"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/victoria.json b/domains/victoria.json
new file mode 100644
index 000000000..42888f702
--- /dev/null
+++ b/domains/victoria.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itahseen",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "viktoriaa.vercel.app"
+ }
+}
diff --git a/domains/vikrant.json b/domains/vikrant.json
new file mode 100644
index 000000000..bddc18231
--- /dev/null
+++ b/domains/vikrant.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "diluteoxygen",
+ "email": "diluteoxygen@gmail.com"
+ },
+ "record": {
+ "CNAME": "diluteoxygen.github.io"
+ }
+}
diff --git a/domains/vinceale7082.json b/domains/vinceale7082.json
index d64b795b3..9635dd504 100644
--- a/domains/vinceale7082.json
+++ b/domains/vinceale7082.json
@@ -6,6 +6,6 @@
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.gJMoU3q_oUV1HkwQ_iqc9c5A-CrQpYDBcbv825Y26CHrUZZwrSb6oRfqqsEqiClcCyKMoFW3jbUdCEk3OsjldrgQOzY0xIvLuchXu1VCbSkkDXeSJCxS7lTpTJ_2TQe9zPs1nanuUf8k3zVxvpis_DIs4ON9vqyW-D9iXgCLJEqF6ILJla4aMSvya2yEWzz56Rdh242J5F3HMQwqEEQpYTJPdM-XN3NuQxsu9f6dfhBNd-QMKqc7nPDqDYSpKCABdWphikCjMEyYQHXXVnlLmXOYjaATE-ZvWyb-1aHTpqZwRxjB77AdrfPgwEpUVstCMYGuXehjz_VqZ5ihPGefRw.Hyqa9XTdQZexcwDXH6wcSw.ygPBwgZujpLGVzWFsjlHla6y14-6E7lL-ifYaFZ40jbXj-ukWpL4eXaXx6P-4yNYSjoNIXcaToQxvDVHbQkClZJiu5XDJ7ahzTnlCQ3ngqg.1LRgjc8WbrkWVnqpHBBQIw"
},
"record": {
- "A": ["37.183.129.150"]
+ "A": ["5.94.2.75"]
}
}
diff --git a/domains/vintheweirdass.json b/domains/vintheweirdass.json
new file mode 100644
index 000000000..f001e5992
--- /dev/null
+++ b/domains/vintheweirdass.json
@@ -0,0 +1,13 @@
+{
+ "description": "My base website. Very epik tbh 💥💥",
+ "repo": "https://github.com/vintheweirdass/vintheweirdass.github.io",
+ "owner": {
+ "username": "vintheweirdass",
+ "twitter": "vintheweirdass",
+ "discord": "vintheweirdass",
+ "lahelu": "https://lahelu.com/user/cupglassdev"
+ },
+ "record": {
+ "NS": ["christina.ns.cloudflare.com", "mustafa.ns.cloudflare.com"]
+ }
+}
diff --git a/domains/viplav-mistry.json b/domains/viplav-mistry.json
index 3c752af87..df3269860 100644
--- a/domains/viplav-mistry.json
+++ b/domains/viplav-mistry.json
@@ -2,8 +2,7 @@
"description": "Persona dev website",
"repo": "https://github.com/viplav-mistry/viplav-mistry.github.io",
"owner": {
- "username": "viplav-mistry",
- "email": ""
+ "username": "viplav-mistry"
},
"record": {
"CNAME": "viplav-mistry.github.io"
diff --git a/domains/vipul.json b/domains/vipul.json
index 645e0f455..b6e147d96 100644
--- a/domains/vipul.json
+++ b/domains/vipul.json
@@ -5,6 +5,6 @@
"email": "vipultyagi386+github@gmail.com"
},
"record": {
- "CNAME": "VipulOG.github.io"
+ "CNAME": "vipulog.github.io"
}
}
diff --git a/domains/viral-gadhiya.json b/domains/viral-gadhiya.json
index 5154666e0..f491c65cf 100644
--- a/domains/viral-gadhiya.json
+++ b/domains/viral-gadhiya.json
@@ -2,8 +2,7 @@
"description": "Viral Gadhiya Profile.",
"repo": "https://github.com/viral-gadhiya/viral-gadhiya.github.io",
"owner": {
- "username": "viral-gadhiya",
- "email": ""
+ "username": "viral-gadhiya"
},
"record": {
"CNAME": "viral-gadhiya.github.io"
diff --git a/domains/viren-trivedi.json b/domains/viren-trivedi.json
index 91eee4984..d04c634ed 100644
--- a/domains/viren-trivedi.json
+++ b/domains/viren-trivedi.json
@@ -2,8 +2,7 @@
"description": "Viren Profile.",
"repo": "https://github.com/viren-trivedi/viren-trivedi.github.io",
"owner": {
- "username": "viren-trivedi",
- "email": ""
+ "username": "viren-trivedi"
},
"record": {
"CNAME": "viren-trivedi.github.io"
diff --git a/domains/vivekkumar.json b/domains/vivekkumar.json
index 6721f848f..55ee2bb09 100644
--- a/domains/vivekkumar.json
+++ b/domains/vivekkumar.json
@@ -6,6 +6,6 @@
"email": "vivek-kumar@live.in"
},
"record": {
- "CNAME": "VivekKumarNeu.github.io"
+ "CNAME": "vivekkumarneu.github.io"
}
}
diff --git a/domains/voided.json b/domains/voided.json
new file mode 100644
index 000000000..5473e25b8
--- /dev/null
+++ b/domains/voided.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VoidedGorilla",
+ "discord": "999697070288027800"
+ },
+ "record": {
+ "CNAME": "voidedgorilla.github.io"
+ }
+}
diff --git a/domains/vornexx.json b/domains/vornexx.json
index 1fba37111..4a7f7f58a 100644
--- a/domains/vornexx.json
+++ b/domains/vornexx.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "vornex-gh",
+ "username": "vornexx",
"discord": "1149438819834269856",
"twitter": "vornexx_"
},
diff --git a/domains/votiendung.json b/domains/votiendung.json
new file mode 100644
index 000000000..03111a07b
--- /dev/null
+++ b/domains/votiendung.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dungxibo123",
+ "email": "votiendung0805@gmail.com"
+ },
+ "record": {
+ "CNAME": "dungxibo123.github.io"
+ }
+}
diff --git a/domains/vra.json b/domains/vra.json
new file mode 100644
index 000000000..144d40066
--- /dev/null
+++ b/domains/vra.json
@@ -0,0 +1,18 @@
+{
+ "owner": {
+ "username": "vra-thenix",
+ "email": "rawatsiddhant25@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.110.153",
+ "185.199.109.153",
+ "185.199.111.153",
+ "185.199.108.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ]
+ }
+}
diff --git a/domains/vrbz.json b/domains/vrbz.json
new file mode 100644
index 000000000..a7c54de98
--- /dev/null
+++ b/domains/vrbz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vrbz",
+ "email": "vrbzzz@proton.me"
+ },
+ "record": {
+ "CNAME": "vrbz.rf.gd"
+ }
+}
diff --git a/domains/vuri.json b/domains/vuri.json
new file mode 100644
index 000000000..fc7d3838f
--- /dev/null
+++ b/domains/vuri.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vurihuang",
+ "email": "vengeancehuang@gmail.com"
+ },
+ "record": {
+ "CNAME": "vurihuang.github.io"
+ }
+}
diff --git a/domains/vurihuang.json b/domains/vurihuang.json
new file mode 100644
index 000000000..fc7d3838f
--- /dev/null
+++ b/domains/vurihuang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vurihuang",
+ "email": "vengeancehuang@gmail.com"
+ },
+ "record": {
+ "CNAME": "vurihuang.github.io"
+ }
+}
diff --git a/domains/w.json b/domains/w.json
index 159f1b048..e576dac37 100644
--- a/domains/w.json
+++ b/domains/w.json
@@ -4,6 +4,6 @@
"email": "william@is-a.dev"
},
"record": {
- "URL": "https://william.is-a.dev"
+ "URL": "https://hrsn.dev"
}
}
diff --git a/domains/wasi.json b/domains/wasi.json
new file mode 100644
index 000000000..f46f7e635
--- /dev/null
+++ b/domains/wasi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "WasiTC",
+ "email": "",
+ "discord": "802128241280286761",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VfdMN3KkHv14UEuHSosP1YXOQh38Re1VEsdiCZFNaOYSQNgJrEVseI4eaY5gIUbR8tyN6IUDDjxYBe8JtgvTYVABOJfEYtNN-IWfErm5kSm_AhBXrqorhc5wIIuC1iBjlJX86x2iZPy0QUMUWvMcommb_enf4V8IfPkU4ByMqWmjgpLD26gKdoBcWbWprsI-_J_TdZIAeksbnaW0fhu_dqVD8H0Jc-o_DdMkdGOqIZBw49ThqiOTn9_ykXcFS7E5FPOcaPawNgH74ztkuMQEiuO2gLp-ibiILiNTniLoMRGJBB9YppR3o1dIWbg1AaPaUU4q0Hd8WBhIHgCbvQBlmw.FPAyefTCWSW9Cn4Re6vGBQ.xfrpDjbf0Gb63fo5C5zJTA5pM5aur7a-Ue6sEaEhskpEdMHWzOJETtyjSnyl6n9APyhOudlvWwFIXRmp7CNvx_hGMtMXNDj8XhRE5W1YXXU.3tdoXncw4wvTz5QDGvN4FA"
+ },
+ "record": {
+ "A": ["59.152.96.163"]
+ }
+}
diff --git a/domains/web.vulcanocraft.json b/domains/web.vulcanocraft.json
new file mode 100644
index 000000000..75126b879
--- /dev/null
+++ b/domains/web.vulcanocraft.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "VulcanoSoftware",
+ "email": "",
+ "discord": "814891541205876767",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.OSN3PUPj-tyBSww7jRiLu3F9KJHZLnuunCHNQKcFiZF_qRsPd9uVTMBljFhRUAAzBM9lfFsRtBQnEUYqEyuWUq8e_fYYopTTJ2eoMj4tjkBAYbwRJG4FiT1LFDpDR0YtuSk-XgUFSi4HVBHAMnaAJ92Ez3_APNRBfspLSeSWRrr-aVYej5z_GusGjujgt1RnGX13HZTy7sQZSdGB6fztcxJEwMtAdAvc_GPA7t6oY1GJaVkl9JP0_s7VYkUDkA_msvFfPO2bT_aRi3CL1LwjRMzsS3hzhOK-qBc2mRD8Ea0F64wNaLYcYQINexXnxgF6toTHl9ZXiyKbOGVPuH1Ufw.2NmlL0bO_wxEmb-6eWlCyQ._ewSj4Dp8XIIfDqlriYtXKqrlYv70uhnEX0_pvFNsZ_L3AM4yGHw1aCFiAZkgOB3rCEEKEX2m4sMmApEhvmgh7rm2Y615R1QuJdwiDU332Z7NTtoTSb8LfYKN8Z-sX66.nQYEU4bu7Mrtfg4u57iRcQ"
+ },
+ "record": {
+ "CNAME": "vulcanoweb.pages.dev"
+ }
+}
diff --git a/domains/whitekj.json b/domains/whitekj.json
index 9a259cd9e..6471cd07f 100644
--- a/domains/whitekj.json
+++ b/domains/whitekj.json
@@ -6,6 +6,6 @@
"email": "whitekj1221@gmail.com"
},
"record": {
- "CNAME": "CwhiteKJ.github.io"
+ "CNAME": "cwhitekj.github.io"
}
}
diff --git a/domains/whxyu.json b/domains/whxyu.json
index 146ff5817..0876c328b 100644
--- a/domains/whxyu.json
+++ b/domains/whxyu.json
@@ -1,7 +1,6 @@
{
"owner": {
- "username": "yxu6fingers",
- "email": ""
+ "username": "yxu6fingers"
},
"record": {
"CNAME": "yxu6fingers.github.io"
diff --git a/domains/william.json b/domains/william.json
index 390bdf838..db5f9b71a 100644
--- a/domains/william.json
+++ b/domains/william.json
@@ -5,8 +5,23 @@
},
"record": {
"NS": [
- "bingo.ns.cloudflare.com",
- "matias.ns.cloudflare.com"
+ "ns1.william.net.au",
+ "ns0045.secondary.cloudflare.com",
+ "ns0199.secondary.cloudflare.com"
+ ],
+ "DS": [
+ {
+ "key_tag": 18485,
+ "algorithm": 8,
+ "digest_type": 2,
+ "digest": "ABFE96B99A05BD94A867C9A10820DF8DCBD5F8B6033C989B547CA06BA1052943"
+ },
+ {
+ "key_tag": 18485,
+ "algorithm": 8,
+ "digest_type": 4,
+ "digest": "8B50C488B31136F19AAE237B093EAD6CE8180EF4CFEA3A74E4C0D6FF7837AA3527C54CEA00F0283C7174C5DC30A9F6D8"
+ }
]
}
}
diff --git a/domains/win11-tutorial.notaperson535.json b/domains/win11-tutorial.notaperson535.json
index b4219735a..a50968197 100644
--- a/domains/win11-tutorial.notaperson535.json
+++ b/domains/win11-tutorial.notaperson535.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/win11.notaperson535.json b/domains/win11.notaperson535.json
index f27c20197..573710bc3 100644
--- a/domains/win11.notaperson535.json
+++ b/domains/win11.notaperson535.json
@@ -6,6 +6,6 @@
"email": "notAperson939@gmail.com"
},
"record": {
- "CNAME": "notAperson535.github.io"
+ "CNAME": "notaperson535.github.io"
}
}
diff --git a/domains/wipad.json b/domains/wipad.json
new file mode 100644
index 000000000..a63a5a642
--- /dev/null
+++ b/domains/wipad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wipad0310",
+ "email": "nguyenlab2007@gmail.com"
+ },
+ "record": {
+ "CNAME": "wipad0310.github.io"
+ }
+}
diff --git a/domains/wizardsword.json b/domains/wizardsword.json
index 2d669e7e2..a8bf76bee 100644
--- a/domains/wizardsword.json
+++ b/domains/wizardsword.json
@@ -4,6 +4,6 @@
"discord": "1115658967012626542"
},
"record": {
- "A": ["216.24.57.1"]
+ "A": ["76.76.21.21"]
}
}
diff --git a/domains/wizcann.json b/domains/wizcann.json
new file mode 100644
index 000000000..cc4df51b5
--- /dev/null
+++ b/domains/wizcann.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "wizcann"
+ },
+ "record": {
+ "CNAME": "wizcann.github.io"
+ }
+}
diff --git a/domains/works.arnxv.json b/domains/works.arnxv.json
new file mode 100644
index 000000000..2e23bf9fd
--- /dev/null
+++ b/domains/works.arnxv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ArnavBarway",
+ "email": "arnav@sagaraga.com"
+ },
+ "record": {
+ "CNAME": "cname.vercel-dns.com"
+ }
+}
diff --git a/domains/www.bteamapp.json b/domains/www.bteamapp.json
new file mode 100644
index 000000000..a71f767a9
--- /dev/null
+++ b/domains/www.bteamapp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/www.chat.alvin.json b/domains/www.chat.alvin.json
new file mode 100644
index 000000000..810c13865
--- /dev/null
+++ b/domains/www.chat.alvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alvinsjoy",
+ "discord": "825382504353234954"
+ },
+ "record": {
+ "A": ["76.76.21.21"]
+ }
+}
diff --git a/domains/www.dhlcgd.json b/domains/www.dhlcgd.json
new file mode 100644
index 000000000..0f61df0fe
--- /dev/null
+++ b/domains/www.dhlcgd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dhlcgd",
+ "email": "dhlcgdofficial@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/www.jamied132.json b/domains/www.jamied132.json
deleted file mode 100644
index eaec72ecf..000000000
--- a/domains/www.jamied132.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "personal portfolio",
- "repo": "github.com/jamied132/jamied132.github.io",
- "owner": {
- "username": "jamied132",
- "email": "jamied132.email@gmail.com",
- "wasteof.money": "jamied132",
- "darflen": "jamied132"
- },
- "record": {
- "URL": "https://jamied132.is-a.dev"
- }
-}
diff --git a/domains/www.joe50097.json b/domains/www.joe50097.json
index 469cdaf61..544b87710 100644
--- a/domains/www.joe50097.json
+++ b/domains/www.joe50097.json
@@ -1,10 +1,11 @@
{
- "owner": {
- "username": "Joe50097",
- "email": "zcell9500@gmail.com"
- },
- "record": {
- "CNAME": "joe50097.netlify.app"
- },
- "proxied":false
+ "owner": {
+ "username": "Joe50097",
+ "email": "zcell9500@gmail.com"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
}
diff --git a/domains/www.json b/domains/www.json
index b8d2e61c5..708e00ecc 100644
--- a/domains/www.json
+++ b/domains/www.json
@@ -5,5 +5,6 @@
},
"record": {
"CNAME": "is-a.dev"
- }
+ },
+ "proxied": true
}
diff --git a/domains/www.myforum.json b/domains/www.myforum.json
new file mode 100644
index 000000000..72a2fee0a
--- /dev/null
+++ b/domains/www.myforum.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "myforum.mydiscussion.net"
+ }
+}
diff --git a/domains/www.schumerism.json b/domains/www.schumerism.json
index 403d90c01..90c4b59f9 100644
--- a/domains/www.schumerism.json
+++ b/domains/www.schumerism.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "homosapiensapien",
- "email": "nathanielswoo@gmail.com"
- },
- "record": {
- "A": [
- "75.2.60.5"
- ]
- }
+ "owner": {
+ "username": "homosapiensapien",
+ "email": "nathanielswoo@gmail.com"
+ },
+ "record": {
+ "A": ["75.2.60.5"]
+ }
}
diff --git a/domains/www.ttkt.json b/domains/www.ttkt.json
new file mode 100644
index 000000000..a71f767a9
--- /dev/null
+++ b/domains/www.ttkt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bteamapp",
+ "email": "helpapp.bta@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/www.yourthoughts.catrin.json b/domains/www.yourthoughts.catrin.json
index f9f19f044..f761e3ed4 100644
--- a/domains/www.yourthoughts.catrin.json
+++ b/domains/www.yourthoughts.catrin.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "winter&eaf",
+ "username": "catrinlam",
"discord": "614054830360494100"
},
"record": {
diff --git a/domains/xabdoat.json b/domains/xabdoat.json
index daedb1078..6d862b66e 100644
--- a/domains/xabdoat.json
+++ b/domains/xabdoat.json
@@ -3,7 +3,6 @@
"repo": "https://github.com/xAbdoAT/xAbdoAT.github.io",
"owner": {
"username": "xAbdoAT",
- "email": "email@address",
"twitter": "xAbdoAT"
},
"record": {
diff --git a/domains/xiaoxi-tw.json b/domains/xiaoxi-tw.json
index b0ed3594a..e84042a04 100644
--- a/domains/xiaoxi-tw.json
+++ b/domains/xiaoxi-tw.json
@@ -4,7 +4,7 @@
"owner": {
"username": "jimmy20180130",
"email": "jimmy20180130@gmail.com",
- "twitter": "@jimmyyo45639462"
+ "twitter": "jimmyyo45639462"
},
"record": {
"CNAME": "jimmy20180130.github.io"
diff --git a/domains/xpugno.json b/domains/xpugno.json
new file mode 100644
index 000000000..19148b752
--- /dev/null
+++ b/domains/xpugno.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal website for xPugno, hosted on Netlify at https://xpugno.netlify.app",
+ "repo": "https://github.com/xPugnocode/sillywebsite",
+ "owner": {
+ "username": "xPugnocode",
+ "discord": "567924760370085899"
+ },
+ "record": {
+ "A": [
+ "75.2.60.5"
+ ]
+ }
+}
diff --git a/domains/xrcs.json b/domains/xrcs.json
index 949f65e4d..5483fe9fd 100644
--- a/domains/xrcs.json
+++ b/domains/xrcs.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/xrcss/xrcss.github.io",
"owner": {
"username": "xrcss",
- "discord": "xrcs#0001",
- "email": ""
+ "discord": "xrcs#0001"
},
"record": {
"CNAME": "xrcss.github.io"
diff --git a/domains/xvrtech.json b/domains/xvrtech.json
new file mode 100644
index 000000000..516612771
--- /dev/null
+++ b/domains/xvrtech.json
@@ -0,0 +1,12 @@
+{
+ "description": "Toy website xvrtech.is-a.dev",
+ "repo": "https://github.com/FullStackedRVC/Agency.git",
+ "owner": {
+ "username": "FullStackedRVC",
+ "email": "robertocarov2@gmail.com"
+ },
+ "record": {
+ "CNAME": "fullstackedrvc.github.io"
+
+ }
+ }
\ No newline at end of file
diff --git a/domains/y.json b/domains/y.json
index 1a06bbbaf..0ab726729 100644
--- a/domains/y.json
+++ b/domains/y.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "yunexiz.github.io"
diff --git a/domains/yakate.json b/domains/yakate.json
index aceacfc2d..941169dd5 100644
--- a/domains/yakate.json
+++ b/domains/yakate.json
@@ -7,6 +7,6 @@
"discord": "842070971669544982"
},
"record": {
- "CNAME": "oYakate.github.io"
+ "CNAME": "oyakate.github.io"
}
}
diff --git a/domains/yash-poojara.json b/domains/yash-poojara.json
index 050133ef1..7c5bd7e25 100644
--- a/domains/yash-poojara.json
+++ b/domains/yash-poojara.json
@@ -2,8 +2,7 @@
"description": "Yash Poojara Profile.",
"repo": "https://github.com/yash-poojara/yash-poojara.github.io",
"owner": {
- "username": "yash-poojara",
- "email": ""
+ "username": "yash-poojara"
},
"record": {
"CNAME": "yash-poojara.github.io"
diff --git a/domains/yashasviallen.json b/domains/yashasviallen.json
index b06667a77..8932b058f 100644
--- a/domains/yashasviallen.json
+++ b/domains/yashasviallen.json
@@ -4,6 +4,6 @@
"email": "yashasviallen@gmail.com"
},
"record": {
- "CNAME": "yashasviallen.dynv6.net"
+ "NS": ["bethany.ns.cloudflare.com", "miles.ns.cloudflare.com"]
}
}
diff --git a/domains/yashh-chauhan.json b/domains/yashh-chauhan.json
index f43b94471..dc5b7a0a0 100644
--- a/domains/yashh-chauhan.json
+++ b/domains/yashh-chauhan.json
@@ -2,8 +2,7 @@
"description": "Yash Chauhan Profile.",
"repo": "https://github.com/yashh-chauhan/yashh-chauhan.github.io",
"owner": {
- "username": "yashh-chauhan",
- "email": ""
+ "username": "yashh-chauhan"
},
"record": {
"CNAME": "yashh-chauhan.github.io"
diff --git a/domains/yedu.json b/domains/yedu.json
index 0d7d0b4ee..dd7837db0 100644
--- a/domains/yedu.json
+++ b/domains/yedu.json
@@ -6,6 +6,6 @@
"discord": "Chandler._bing__#8780"
},
"record": {
- "CNAME": "YeduKrishnanTY.github.io"
+ "CNAME": "yedukrishnanty.github.io"
}
}
diff --git a/domains/yfa.json b/domains/yfa.json
index 15957ae73..97d460533 100644
--- a/domains/yfa.json
+++ b/domains/yfa.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"URL": "https://github.com/YouFoundAlpha"
diff --git a/domains/yfadev.json b/domains/yfadev.json
index de728ae0b..b8fb29fda 100644
--- a/domains/yfadev.json
+++ b/domains/yfadev.json
@@ -1,11 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
-
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"URL": "https://github.com/yfadev"
diff --git a/domains/yigit.json b/domains/yigit.json
index 3ad236f3b..7054ab487 100644
--- a/domains/yigit.json
+++ b/domains/yigit.json
@@ -1,12 +1,12 @@
{
"description": "My Portfolio",
- "repo": "https://github.com/yigitdev05/yigitdev05.github.io",
+ "repo": "https://github.com/devyigit/devyigit.github.io",
"owner": {
- "username": "yigitdev05",
- "email": "yigitkabak@proton.me",
+ "username": "devyigit",
+ "email": "yigitkabak05@hotmail.com",
"discord": "yigit.dev"
},
"record": {
- "CNAME": "yigitdev05.github.io"
+ "CNAME": "devyigit.github.io"
}
}
diff --git a/domains/yosuke.json b/domains/yosuke.json
index 559c675c1..b39c4b0a1 100644
--- a/domains/yosuke.json
+++ b/domains/yosuke.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"CNAME": "yunexiz.pages.dev"
diff --git a/domains/youfoundalpha.json b/domains/youfoundalpha.json
index 567d3dba5..0d0a81148 100644
--- a/domains/youfoundalpha.json
+++ b/domains/youfoundalpha.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"URL": "https://github.com/YouFoundAlpha",
diff --git a/domains/youfoundalpha.youfoundalpha.json b/domains/youfoundalpha.youfoundalpha.json
index 291af052a..17b87a959 100644
--- a/domains/youfoundalpha.youfoundalpha.json
+++ b/domains/youfoundalpha.youfoundalpha.json
@@ -1,10 +1,9 @@
{
"owner": {
"username": "YouFoundAlpha",
- "Discord": "661121998830960651",
- "GitHub": "YouFoundAlpha",
- "GitLab": "YouFoundAlpha",
- "Mastodon": "@YouFoundAlpha@mastodon.social"
+ "discord": "661121998830960651",
+ "gitlab": "YouFoundAlpha",
+ "mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"URL": "https://youfoundalpha.is-a.dev"
diff --git a/domains/yourthoughts.catrin.json b/domains/yourthoughts.catrin.json
index f9f19f044..f761e3ed4 100644
--- a/domains/yourthoughts.catrin.json
+++ b/domains/yourthoughts.catrin.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "winter&eaf",
+ "username": "catrinlam",
"discord": "614054830360494100"
},
"record": {
diff --git a/domains/youssef-lmouden.json b/domains/youssef-lmouden.json
new file mode 100644
index 000000000..62c8bf2dc
--- /dev/null
+++ b/domains/youssef-lmouden.json
@@ -0,0 +1,8 @@
+{
+ "owner": {
+ "username": "YoussefDevPro"
+ },
+ "record": {
+ "CNAME": "youssefdevpro.github.io"
+ }
+}
diff --git a/domains/youssef.json b/domains/youssef.json
index 424b4a6f1..c27748e3d 100644
--- a/domains/youssef.json
+++ b/domains/youssef.json
@@ -4,6 +4,6 @@
"email": "youssef1yasser38@gmail.com"
},
"record": {
- "URL": "https://www.linkedin.com/in/youssefsiam38"
+ "CNAME": "youssefsiam38.github.io"
}
}
diff --git a/domains/yug.json b/domains/yug.json
index 2bca5cd47..799dbdc19 100644
--- a/domains/yug.json
+++ b/domains/yug.json
@@ -1,12 +1,12 @@
{
- "description": "Personal website!",
- "repo": "N/A",
- "owner": {
- "username": "YUG38",
- "email": "4yugpatel123@gmail.com",
- "discord": "name_yug"
- },
- "record": {
- "CNAME": "name-yug.pages.dev"
- }
+ "description": "Personal website!",
+ "repo": "N/A",
+ "owner": {
+ "username": "YUG38",
+ "email": "4yugpatel123@gmail.com",
+ "discord": "name_yug"
+ },
+ "record": {
+ "CNAME": "name-yug.pages.dev"
+ }
}
diff --git a/domains/yujia.json b/domains/yujia.json
index 515025c08..9eabe930a 100644
--- a/domains/yujia.json
+++ b/domains/yujia.json
@@ -6,6 +6,6 @@
"email": "aujackyuan@gmail.com"
},
"record": {
- "CNAME": "YujiaY.github.io"
+ "CNAME": "yujiay.github.io"
}
}
diff --git a/domains/yunexiz.json b/domains/yunexiz.json
index abad1c603..f7ee5f81c 100644
--- a/domains/yunexiz.json
+++ b/domains/yunexiz.json
@@ -1,8 +1,7 @@
{
"owner": {
"username": "yunexiz",
- "discord": "1040303561847881729",
- "email": ""
+ "discord": "1040303561847881729"
},
"record": {
"A": [
diff --git a/domains/yxz.json b/domains/yxz.json
index 1e964a44c..87095b3fe 100644
--- a/domains/yxz.json
+++ b/domains/yxz.json
@@ -1,10 +1,28 @@
{
- "repo": "https://github.com/yz9551/blog",
- "owner": {
- "username": "yz9551",
- "email": "yixuan0808@gmail.com"
- },
- "record": {
- "CNAME": "yz9551.github.io"
- }
+ "repo": "https://github.com/yz9551/blog",
+ "owner": {
+ "username": "yz9551",
+ "email": "",
+ "discord": "yz9551"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "AAAA": [
+ "2606:50c0:8000::153",
+ "2606:50c0:8001::153",
+ "2606:50c0:8002::153",
+ "2606:50c0:8003::153"
+ ],
+ "MX": [
+ "tourmaline.uksouth.cloudapp.azure.com"
+ ],
+ "TXT": [
+ "v=spf1 mx -all"
+ ]
+ }
}
diff --git a/domains/z.json b/domains/z.json
new file mode 100644
index 000000000..2d0965374
--- /dev/null
+++ b/domains/z.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jakeharrison90",
+ "email": "overtonmarke@gmail.com"
+ },
+ "record": {
+ "CNAME": "excelcommunity.vercel.app"
+ }
+}
diff --git a/domains/zaid-kadri.json b/domains/zaid-kadri.json
index 3783cd1c9..1fbd94d9e 100644
--- a/domains/zaid-kadri.json
+++ b/domains/zaid-kadri.json
@@ -2,8 +2,7 @@
"description": "This is my website",
"repo": "https://github.com/zaid-kadri/zaid-kadri.github.io",
"owner": {
- "username": "zaid-kadri",
- "email": ""
+ "username": "zaid-kadri"
},
"record": {
"URL": "https://zaid-kadri.github.io"
diff --git a/domains/zaid.json b/domains/zaid.json
index 76668dabd..728d4240e 100644
--- a/domains/zaid.json
+++ b/domains/zaid.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/zaidmukaddam/zaidmukaddam.github.io",
"owner": {
"username": "zaidmukaddam",
- "email": "zaidlunatic1@gmail",
+ "email": "zaidlunatic1@gmail.com",
"twitter": "Zaid08079154"
},
"record": {
diff --git a/domains/zalex.json b/domains/zalex.json
new file mode 100644
index 000000000..1fafd707a
--- /dev/null
+++ b/domains/zalex.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Orange-Figure",
+ "discord": "1212435420776890368",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.N0_TVOrIKQHS-dgU5KDDcREwJDAtW1AfGLARAqAZyT-UjrmJz8IUFHg8zYxe6Spa4faQVR_emyVZKwqwlFvdIZZr4yQrWQSED-2WZJ5Z5DXpti6930sHO4CVgszWKjc5LqPW1764QP39iQrC7VtNSFxEmZTWJnmK0i8X_2AOSgu8BTH45vjMVKU4oBRzHjvoBZ-Z_17DCk0Awy2FxWSscZPDVF1-_1ETfQ60Ahcv8gYcMt3ZVs2vrUZR_sopt8LaPf6AQQ9zSgDtRiwBHogpiYWsAZVN_5EHTKosomGhUcxuHfUjhaHFauscXQjHZM6kDOEAEvY8MryV7jRy_gm7fQ.sZCseMTkxIHnGcrpk7SARA.SHzeybFf2FVb38kuLc62-X3zAK2SMpZiL2FlnaU77-UR5bsGoINyEnbJNdvCRd4nLItafWpWtCqu0NyvjBh8BWCNrCUhYMmmLRzg6sBgolI.kE2nsD9RtiZGMS-KFaXmZw"
+ },
+
+ "record": {
+ "CNAME": "zalex.betteruptime.com"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/zenpai.json b/domains/zenpai.json
index 94baaf6a8..2fee81ec6 100644
--- a/domains/zenpai.json
+++ b/domains/zenpai.json
@@ -7,6 +7,6 @@
"discord": "zenpaiang"
},
"record": {
- "CNAME": "ZenpaiAng.github.io"
+ "CNAME": "zenpaiang.github.io"
}
}
diff --git a/domains/zer0.json b/domains/zer0.json
index 46ac812f8..a998a613b 100644
--- a/domains/zer0.json
+++ b/domains/zer0.json
@@ -1,7 +1,6 @@
{
"owner": {
"username": "Zer0Dev-exe",
- "email": "zero",
"discord": "817515739711406140"
},
"record": {
diff --git a/domains/zerotwo.json b/domains/zerotwo.json
index 191503615..d89b36127 100644
--- a/domains/zerotwo.json
+++ b/domains/zerotwo.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/ZeroTwoDiscord/zerotwodiscord.github.io",
"owner": {
"username": "ConnorDoesDev",
- "email": "connordoesdev@gmail.com / connor@zerotwo.sytes.net"
+ "email": "connordoesdev@gmail.com"
},
"record": {
"CNAME": "zerotwodiscord.github.io"
diff --git a/domains/ziyn.json b/domains/ziyn.json
index 46eb37803..7851a9219 100644
--- a/domains/ziyn.json
+++ b/domains/ziyn.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "ziyndev",
- "email": "is-a-dev@ziyn.us.kg"
- },
- "record": {
- "CNAME": "ziyn.pages.dev"
- }
+ "owner": {
+ "username": "254thheli",
+ "email": "is-a-dev@ziyn.us.kg"
+ },
+ "record": {
+ "CNAME": "ziyn.pages.dev"
+ }
}
diff --git a/domains/zmail._domainkey.devarnav.json b/domains/zmail._domainkey.devarnav.json
new file mode 100644
index 000000000..336d7eb0e
--- /dev/null
+++ b/domains/zmail._domainkey.devarnav.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ArnavBarway",
+ "email": "playnav.yt@gmail.com"
+ },
+ "record": {
+ "TXT": [
+ "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDSshIz5JRWquCDisgpRtbtWwMhzi2asXOamXxO6G80r4cNYll2/7AWSIxEKGV8t/eoGo9xiryfUXi0W5P5jHY6TWcdawPE/xBoBySt58dQtOElHEplukCYxyTotrvdQp1nH9w2jmexZfjXzOS97sGwUXHDWxNZjwT7hYf5Kzif+QIDAQAB"
+ ]
+ }
+}
diff --git a/domains/zmail._domainkey.esb.json b/domains/zmail._domainkey.esb.json
deleted file mode 100644
index 7ec91a761..000000000
--- a/domains/zmail._domainkey.esb.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "EducatedsuddenBucket",
- "email": "educatedsuddenbucket@gmail.com"
- },
- "record": {
- "TXT": [
- "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCOCPIlvAEZxJibdx9OiUyJHoj63GUkBafTzg5XI4kfG7LFcONNdJwjxbOipmriktgDwyltEM4ZC1kw+Vf3mSYwIqtfuMmFZXBawYW9nU7KbNqH2xLZF+7z0SkHdyB0ODm78ouiQLdr6IPc+ZSjyZD0M3eOMlXnwsBrCzhM+itKowIDAQAB"
- ]
- }
-}
diff --git a/domains/zmail._domainkey.m.ps.json b/domains/zmail._domainkey.m.ps.json
new file mode 100644
index 000000000..ef878b082
--- /dev/null
+++ b/domains/zmail._domainkey.m.ps.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PrivacySecured",
+ "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.VoJDQtbSUW3kYsQ0IuIE4CTIomV-e8GVUO2wS0fZp_-DkO6QltgcnKL_mAqMH5Salut7IGMZy48HExbambDrl11jQWwYHBAqqyAuAlxsqnUh83KGY3UKYfQzA8eRkdCPTth1pxvyXfUFnAnjEtmJLMNTSCds-J8fmcIkNEu-xT2UMEjxPQkoN8sJ7EA8YTHn4t3078D8tMr3AV5DJ1rg0QnuFwjra5FbjuJGHeYenEzS-Tdha7LTUyTEbKrdqdxYNpN4pv45sNrVpsDZPt3sR1CgOnXNSsfVwjUm-5DRweNquJHUxSpNZblJnbWBErWyg9_NZvISrClpJZ4We48oDg.YdsO9C1ulWhtaJYei-z-Zg.8p4HE12styyP4JSTFrlLWMmfIUAOw1kDQWrAcqSOlqbbtujr4Ww-QyBuUBIQojGvuFKs3jflF5tuvIjOgU8hTOWxB2uS4KItHwpIsFeQo9i1OHSTzj0glP2ly-XMY1Wi.99kVL134lF7knduFKnqfGQ",
+ "notes": "I rarely go on my emails. If I do its because I needed a verification code."
+ },
+ "record": {
+ "TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCJ+VFtI0MbKtqwscVOmrqxUWdUDP0e1sMefD/t/AW5YhlGZVkMWGtJ8f/AMx3wIdZXZbvxORpwip1V6wTC45+NbuIToOArp+S4Su9Z0uKF5IyC/3y07XchKFePXpp0gCAjMuLby+gOGlaXp61Uxfcnt1ZyUR7hydVppAwXSoYrrwIDAQAB"
+ }
+}
diff --git a/domains/zmail._domainkey.mail.gs.json b/domains/zmail._domainkey.mail.gs.json
index 412aa40e8..2356e433b 100644
--- a/domains/zmail._domainkey.mail.gs.json
+++ b/domains/zmail._domainkey.mail.gs.json
@@ -9,4 +9,3 @@
"TXT": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCIBTe8Y/UeDzWD6h6UcnIbE9+hQrVo1V/s4tBlINTsI0uLLqGrdOMjnkXAXljqm5HBx5L+qNOw5s7d+LLUMtUKLY01nttqhaiPsP1KdzJdoCwQR38VwzVDMIHyNVKxd4YY99MIkVCoR7KoWds6pLvYKYOB+EGucZJWs8VjWrK8UQIDAQAB"
}
}
-
diff --git a/domains/zuhair.json b/domains/zuhair.json
index 98f8a7368..1b1596be4 100644
--- a/domains/zuhair.json
+++ b/domains/zuhair.json
@@ -4,6 +4,6 @@
"email": "20-42115-1@student.aiub.edu"
},
"record": {
- "CNAME": "ZuhairTarif.github.io"
+ "CNAME": "zuhairtarif.github.io"
}
}
diff --git a/domains/zvdxc.json b/domains/zvdxc.json
index 2d357bd7c..977b7c3b9 100644
--- a/domains/zvdxc.json
+++ b/domains/zvdxc.json
@@ -4,6 +4,6 @@
"email": "zvdxc11@gmail.com"
},
"record": {
- "CNAME": "mysite-e7j.pages.dev"
+ "NS": ["armfazh.ns.cloudflare.com", "stella.ns.cloudflare.com"]
}
}
diff --git a/domains/zxlbni.json b/domains/zxlbni.json
new file mode 100644
index 000000000..78ad5c23b
--- /dev/null
+++ b/domains/zxlbni.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ZxLbni",
+ "email": "dolabani46@gmail.com"
+ },
+ "record": {
+ "CNAME": "zxlbni.github.io"
+ }
+}
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 000000000..b471fdeb1
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,2437 @@
+{
+ "name": "register",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "devDependencies": {
+ "ava": "^6.2.0",
+ "fs-extra": "^11.2.0"
+ }
+ },
+ "node_modules/@mapbox/node-pre-gyp": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz",
+ "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "detect-libc": "^2.0.0",
+ "https-proxy-agent": "^5.0.0",
+ "make-dir": "^3.1.0",
+ "node-fetch": "^2.6.7",
+ "nopt": "^5.0.0",
+ "npmlog": "^5.0.1",
+ "rimraf": "^3.0.2",
+ "semver": "^7.3.5",
+ "tar": "^6.1.11"
+ },
+ "bin": {
+ "node-pre-gyp": "bin/node-pre-gyp"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@rollup/pluginutils": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz",
+ "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "estree-walker": "^2.0.1",
+ "picomatch": "^2.2.2"
+ },
+ "engines": {
+ "node": ">= 8.0.0"
+ }
+ },
+ "node_modules/@rollup/pluginutils/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/@sindresorhus/merge-streams": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz",
+ "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@vercel/nft": {
+ "version": "0.27.6",
+ "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.6.tgz",
+ "integrity": "sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@mapbox/node-pre-gyp": "^1.0.11",
+ "@rollup/pluginutils": "^4.0.0",
+ "acorn": "^8.6.0",
+ "acorn-import-attributes": "^1.9.5",
+ "async-sema": "^3.1.1",
+ "bindings": "^1.4.0",
+ "estree-walker": "2.0.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.8",
+ "node-gyp-build": "^4.2.2",
+ "resolve-from": "^5.0.0"
+ },
+ "bin": {
+ "nft": "out/cli.js"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/abbrev": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/acorn": {
+ "version": "8.14.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
+ "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-import-attributes": {
+ "version": "1.9.5",
+ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz",
+ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^8"
+ }
+ },
+ "node_modules/acorn-walk": {
+ "version": "8.3.4",
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
+ "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.11.0"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/aproba": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/are-we-there-yet": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
+ "deprecated": "This package is no longer supported.",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^3.6.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/array-find-index": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
+ "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/arrgv": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz",
+ "integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/arrify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz",
+ "integrity": "sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/async-sema": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz",
+ "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ava": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/ava/-/ava-6.2.0.tgz",
+ "integrity": "sha512-+GZk5PbyepjiO/68hzCZCUepQOQauKfNnI7sA4JukBTg97jD7E+tDKEA7OhGOGr6EorNNMM9+jqvgHVOTOzG4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@vercel/nft": "^0.27.5",
+ "acorn": "^8.13.0",
+ "acorn-walk": "^8.3.4",
+ "ansi-styles": "^6.2.1",
+ "arrgv": "^1.0.2",
+ "arrify": "^3.0.0",
+ "callsites": "^4.2.0",
+ "cbor": "^9.0.2",
+ "chalk": "^5.3.0",
+ "chunkd": "^2.0.1",
+ "ci-info": "^4.0.0",
+ "ci-parallel-vars": "^1.0.1",
+ "cli-truncate": "^4.0.0",
+ "code-excerpt": "^4.0.0",
+ "common-path-prefix": "^3.0.0",
+ "concordance": "^5.0.4",
+ "currently-unhandled": "^0.4.1",
+ "debug": "^4.3.7",
+ "emittery": "^1.0.3",
+ "figures": "^6.1.0",
+ "globby": "^14.0.2",
+ "ignore-by-default": "^2.1.0",
+ "indent-string": "^5.0.0",
+ "is-plain-object": "^5.0.0",
+ "is-promise": "^4.0.0",
+ "matcher": "^5.0.0",
+ "memoize": "^10.0.0",
+ "ms": "^2.1.3",
+ "p-map": "^7.0.2",
+ "package-config": "^5.0.0",
+ "picomatch": "^4.0.2",
+ "plur": "^5.1.0",
+ "pretty-ms": "^9.1.0",
+ "resolve-cwd": "^3.0.0",
+ "stack-utils": "^2.0.6",
+ "strip-ansi": "^7.1.0",
+ "supertap": "^3.0.1",
+ "temp-dir": "^3.0.0",
+ "write-file-atomic": "^6.0.0",
+ "yargs": "^17.7.2"
+ },
+ "bin": {
+ "ava": "entrypoints/cli.mjs"
+ },
+ "engines": {
+ "node": "^18.18 || ^20.8 || ^22 || >=23"
+ },
+ "peerDependencies": {
+ "@ava/typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "@ava/typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "node_modules/blueimp-md5": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz",
+ "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-4.2.0.tgz",
+ "integrity": "sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cbor": {
+ "version": "9.0.2",
+ "resolved": "https://registry.npmjs.org/cbor/-/cbor-9.0.2.tgz",
+ "integrity": "sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "nofilter": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/chalk": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
+ "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/chunkd": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz",
+ "integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ci-info": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz",
+ "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ci-parallel-vars": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.1.tgz",
+ "integrity": "sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cli-truncate": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz",
+ "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "slice-ansi": "^5.0.0",
+ "string-width": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/cliui/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cliui/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/code-excerpt": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-4.0.0.tgz",
+ "integrity": "sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "convert-to-spaces": "^2.0.1"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "color-support": "bin.js"
+ }
+ },
+ "node_modules/common-path-prefix": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
+ "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/concordance": {
+ "version": "5.0.4",
+ "resolved": "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz",
+ "integrity": "sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "date-time": "^3.1.0",
+ "esutils": "^2.0.3",
+ "fast-diff": "^1.2.0",
+ "js-string-escape": "^1.0.1",
+ "lodash": "^4.17.15",
+ "md5-hex": "^3.0.1",
+ "semver": "^7.3.2",
+ "well-known-symbols": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14"
+ }
+ },
+ "node_modules/console-control-strings": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/convert-to-spaces": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz",
+ "integrity": "sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ }
+ },
+ "node_modules/currently-unhandled": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
+ "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-find-index": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/date-time": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz",
+ "integrity": "sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "time-zone": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/delegates": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/detect-libc": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/emittery": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.3.tgz",
+ "integrity": "sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
+ }
+ },
+ "node_modules/emoji-regex": {
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
+ "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fast-diff": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
+ "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fastq": {
+ "version": "1.17.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
+ "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/figures": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz",
+ "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-unicode-supported": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-up-simple": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz",
+ "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/fs-extra": {
+ "version": "11.2.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
+ "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/fs-minipass/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/gauge": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
+ "deprecated": "This package is no longer supported.",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
+ "signal-exit": "^3.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/gauge/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/gauge/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/gauge/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/gauge/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/gauge/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-east-asian-width": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
+ "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "deprecated": "Glob versions prior to v9 are no longer supported",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/globby": {
+ "version": "14.0.2",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz",
+ "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@sindresorhus/merge-streams": "^2.1.0",
+ "fast-glob": "^3.3.2",
+ "ignore": "^5.2.4",
+ "path-type": "^5.0.0",
+ "slash": "^5.1.0",
+ "unicorn-magic": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/has-unicode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/ignore-by-default": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-2.1.0.tgz",
+ "integrity": "sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10 <11 || >=12 <13 || >=14"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/indent-string": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz",
+ "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/irregular-plurals": {
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz",
+ "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz",
+ "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-plain-object": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-promise": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/is-unicode-supported": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
+ "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/js-string-escape": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz",
+ "integrity": "sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/load-json-file": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz",
+ "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/make-dir/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/matcher": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/matcher/-/matcher-5.0.0.tgz",
+ "integrity": "sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^5.0.0"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/md5-hex": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz",
+ "integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "blueimp-md5": "^2.10.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/memoize": {
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/memoize/-/memoize-10.0.0.tgz",
+ "integrity": "sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mimic-function": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/memoize?sponsor=1"
+ }
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/micromatch/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/mimic-function": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
+ "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/minizlib/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/node-fetch": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ },
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/node-gyp-build": {
+ "version": "4.8.2",
+ "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz",
+ "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "node-gyp-build": "bin.js",
+ "node-gyp-build-optional": "optional.js",
+ "node-gyp-build-test": "build-test.js"
+ }
+ },
+ "node_modules/nofilter": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz",
+ "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.19"
+ }
+ },
+ "node_modules/nopt": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
+ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "abbrev": "1"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/npmlog": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
+ "deprecated": "This package is no longer supported.",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
+ "node_modules/p-map": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.2.tgz",
+ "integrity": "sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/package-config": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/package-config/-/package-config-5.0.0.tgz",
+ "integrity": "sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "find-up-simple": "^1.0.0",
+ "load-json-file": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parse-ms": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz",
+ "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-type": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz",
+ "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/plur": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/plur/-/plur-5.1.0.tgz",
+ "integrity": "sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "irregular-plurals": "^3.3.0"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/pretty-ms": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.1.0.tgz",
+ "integrity": "sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "parse-ms": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/readable-stream": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/resolve-cwd": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "resolve-from": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/serialize-error": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz",
+ "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.13.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/slash": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
+ "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/slice-ansi": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz",
+ "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.0.0",
+ "is-fullwidth-code-point": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
+ }
+ },
+ "node_modules/sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/stack-utils": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
+ "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/stack-utils/node_modules/escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/supertap": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz",
+ "integrity": "sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "indent-string": "^5.0.0",
+ "js-yaml": "^3.14.1",
+ "serialize-error": "^7.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ }
+ },
+ "node_modules/tar": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
+ "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^5.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/temp-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz",
+ "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.16"
+ }
+ },
+ "node_modules/time-zone": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz",
+ "integrity": "sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/type-fest": {
+ "version": "0.13.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz",
+ "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/unicorn-magic": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
+ "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "dev": true,
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/well-known-symbols": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz",
+ "integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/wide-align": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^1.0.2 || 2 || 3 || 4"
+ }
+ },
+ "node_modules/wide-align/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wide-align/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/wide-align/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wide-align/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wide-align/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/write-file-atomic": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-6.0.0.tgz",
+ "integrity": "sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/write-file-atomic/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yargs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/yargs/node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 000000000..858f3ddd5
--- /dev/null
+++ b/package.json
@@ -0,0 +1,9 @@
+{
+ "devDependencies": {
+ "ava": "^6.2.0",
+ "fs-extra": "^11.2.0"
+ },
+ "scripts": {
+ "test": "npx ava tests/*.test.js"
+ }
+}
diff --git a/tests/domains.test.js b/tests/domains.test.js
new file mode 100644
index 000000000..071f2c534
--- /dev/null
+++ b/tests/domains.test.js
@@ -0,0 +1,77 @@
+const t = require("ava");
+const fs = require("fs-extra");
+const path = require("path");
+
+const domainsPath = path.resolve("domains");
+const files = fs.readdirSync(domainsPath);
+
+function getParentSubdomain(subdomain) {
+ const parts = subdomain.split(".");
+
+ if (parts.length <= 1) return null; // No parent for top-level subdomains
+
+ // Attempt to find the parent subdomain by removing the last part
+ for (let i = parts.length - 1; i > 0; i--) {
+ const potentialParent = parts.slice(i - 1).join(".");
+ if (files.includes(`${potentialParent}.json`)) {
+ return potentialParent; // Return the parent subdomain if it exists
+ }
+ }
+
+ return null; // Return null if no valid parent is found
+}
+
+
+function getDomainData(subdomain) {
+ try {
+ return fs.readJsonSync(path.join(domainsPath, `${subdomain}.json`));
+ } catch (error) {
+ throw new Error(`Failed to read JSON for ${subdomain}: ${error.message}`);
+ }
+}
+
+t("Nested subdomains should not exist without a parent subdomain", (t) => {
+ for (const file of files) {
+ const subdomain = file.replace(/\.json$/, "");
+
+ if (subdomain.split(".").length > 1) {
+ const parentSubdomain = getParentSubdomain(subdomain);
+ t.true(files.includes(`${parentSubdomain}.json`), `${file}: Parent subdomain does not exist`);
+ }
+ }
+
+ t.pass();
+});
+
+t("Nested subdomains should not exist if the parent subdomain has NS records", (t) => {
+ for (const file of files) {
+ const subdomain = file.replace(/\.json$/, "");
+
+ if (subdomain.split(".").length > 1) {
+ const parentSubdomain = getParentSubdomain(subdomain);
+ const parentDomain = getDomainData(parentSubdomain);
+
+ t.true(!parentDomain.record.NS, `${file}: Parent subdomain has NS records`);
+ }
+ }
+
+ t.pass();
+});
+
+t("Nested subdomains should be owned by the parent subdomain's owner", (t) => {
+ for (const file of files) {
+ const subdomain = file.replace(/\.json$/, "");
+
+ if (subdomain.split(".").length > 1) {
+ const data = getDomainData(subdomain);
+
+ const parentSubdomain = getParentSubdomain(subdomain);
+ const parentDomain = getDomainData(parentSubdomain);
+
+ t.true(
+ data.owner.username.toLowerCase() === parentDomain.owner.username.toLowerCase(),
+ `${file}: Owner does not match the parent subdomain`
+ );
+ }
+ }
+});
diff --git a/tests/json.test.js b/tests/json.test.js
new file mode 100644
index 000000000..1bf3e3f3d
--- /dev/null
+++ b/tests/json.test.js
@@ -0,0 +1,113 @@
+const t = require("ava");
+const fs = require("fs-extra");
+const path = require("path");
+
+const requiredFields = {
+ owner: "object",
+ record: "object"
+};
+
+const optionalFields = {
+ proxied: "boolean",
+ reserved: "boolean"
+};
+
+const requiredOwnerFields = {
+ username: "string"
+};
+
+const optionalOwnerFields = {
+ email: "string"
+};
+
+const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
+const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/;
+
+const domainsPath = path.resolve("domains");
+const files = fs.readdirSync(domainsPath);
+
+function validateRequiredFields(t, obj, requiredFields, file) {
+ Object.keys(requiredFields).forEach((key) => {
+ t.true(obj.hasOwnProperty(key), `${file}: Missing required field: ${key}`);
+ t.is(typeof obj[key], requiredFields[key], `${file}: Field ${key} should be of type ${requiredFields[key]}`);
+ });
+}
+
+function validateOptionalFields(t, obj, optionalFields, file) {
+ Object.keys(optionalFields).forEach((key) => {
+ if (obj.hasOwnProperty(key)) {
+ t.is(
+ typeof obj[key],
+ optionalFields[key],
+ `${file}: Field ${key} should be of type ${optionalFields[key]}`
+ );
+ }
+ });
+}
+
+t("All files should be valid JSON", (t) => {
+ files.forEach((file) => {
+ t.notThrows(() => fs.readJsonSync(path.join(domainsPath, file)), `${file}: Invalid JSON file`);
+ });
+});
+
+t("All files should have valid file names", (t) => {
+ files.forEach((file) => {
+ t.true(file.endsWith(".json"), `${file}: File does not have .json extension`);
+ t.false(file.includes(".is-a.dev"), `${file}: File name should not contain .is-a.dev`);
+ t.true(file === file.toLowerCase(), `${file}: File name should be lowercase`);
+
+ // Ignore root domain
+ if (file !== "@.json") {
+ const subdomain = file.replace(/\.json$/, "");
+ t.regex(
+ subdomain + ".is-a.dev",
+ hostnameRegex,
+ `${file}: FQDN must be 1-253 characters, use letters, numbers, dots, or hyphens, and not start or end with a hyphen.`
+ );
+ }
+ });
+});
+
+t("All files should have the required fields", (t) => {
+ files.forEach((file) => {
+ const data = fs.readJsonSync(path.join(domainsPath, file));
+
+ // Validate top-level required fields
+ validateRequiredFields(t, data, requiredFields, file);
+
+ // Validate owner object fields
+ validateRequiredFields(t, data.owner, requiredOwnerFields, file);
+
+ // Ensure 'record' field is not empty unless reserved
+ if (!data.reserved) {
+ t.true(Object.keys(data.record).length > 0, `${file}: No record types found`);
+ }
+ });
+});
+
+t("All files should have valid optional fields", (t) => {
+ files.forEach((file) => {
+ const data = fs.readJsonSync(path.join(domainsPath, file));
+
+ // Validate optional fields at top level
+ validateOptionalFields(t, data, optionalFields, file);
+
+ // Validate optional fields for owner object
+ validateOptionalFields(t, data.owner, optionalOwnerFields, file);
+
+ // Email validation (if provided)
+ if (data.owner.email) {
+ t.regex(data.owner.email, emailRegex, `${file}: Owner email should be a valid email address`);
+ }
+ });
+});
+
+const ignoredJSONFiles = ["package-lock.json", "package.json"];
+
+t("JSON files should not be in the root directory", (t) => {
+ const rootFiles = fs
+ .readdirSync(path.resolve())
+ .filter((file) => file.endsWith(".json") && !ignoredJSONFiles.includes(file));
+ t.is(rootFiles.length, 0, "JSON files should not be in the root directory");
+});
diff --git a/tests/proxy.test.js b/tests/proxy.test.js
new file mode 100644
index 000000000..2bb64b48c
--- /dev/null
+++ b/tests/proxy.test.js
@@ -0,0 +1,31 @@
+const t = require("ava");
+const fs = require("fs-extra");
+const path = require("path");
+
+const requiredRecordsToProxy = new Set(["A", "AAAA", "CNAME"]);
+// URL records are not listed here because they are proxied by default, so they don't need the proxied flag
+
+function validateProxiedRecords(t, data, file) {
+ // Convert the Set to an array for message display
+ const recordTypes = Array.from(requiredRecordsToProxy).join(", ");
+
+ if (data.proxied) {
+ const hasProxiedRecord = Object.keys(data.record).some((key) => requiredRecordsToProxy.has(key));
+
+ t.true(
+ hasProxiedRecord,
+ `${file}: Proxied is true but there are no records that can be proxied (${recordTypes} expected)`
+ );
+ }
+}
+
+const domainsPath = path.resolve("domains");
+const files = fs.readdirSync(domainsPath).filter((file) => file.endsWith(".json"));
+
+t("Domains with proxy enabled should have at least one record that can be proxied", (t) => {
+ files.forEach((file) => {
+ const domain = fs.readJsonSync(path.join(domainsPath, file));
+
+ validateProxiedRecords(t, domain, file);
+ });
+});
diff --git a/tests/records.test.js b/tests/records.test.js
new file mode 100644
index 000000000..d819fa9b9
--- /dev/null
+++ b/tests/records.test.js
@@ -0,0 +1,213 @@
+const t = require("ava");
+const fs = require("fs-extra");
+const path = require("path");
+
+const validRecordTypes = new Set(["A", "AAAA", "CAA", "CNAME", "DS", "MX", "NS", "SRV", "TXT", "URL"]);
+
+const hostnameRegex = /^(?=.{1,253}$)(?:(?:[_a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)\.)+[a-zA-Z]{2,63}$/;
+const ipv4Regex = /^(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}$/;
+const ipv6Regex =
+ /^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$|^::(?:[0-9a-fA-F]{1,4}:){0,6}[0-9a-fA-F]{1,4}$|^(?:[0-9a-fA-F]{1,4}:){1,7}:$|^(?:[0-9a-fA-F]{1,4}:){0,6}::(?:[0-9a-fA-F]{1,4}:){0,5}[0-9a-fA-F]{1,4}$/;
+
+const domainsPath = path.resolve("domains");
+const files = fs.readdirSync(domainsPath);
+
+function expandIPv6(ip) {
+ let segments = ip.split(":");
+
+ const emptyIndex = segments.indexOf("");
+
+ if (emptyIndex !== -1) {
+ const nonEmptySegments = segments.filter((seg) => seg !== "");
+ const missingSegments = 8 - nonEmptySegments.length;
+
+ segments = [
+ ...nonEmptySegments.slice(0, emptyIndex),
+ ...Array(missingSegments).fill("0000"),
+ ...nonEmptySegments.slice(emptyIndex)
+ ];
+ }
+
+ return segments.map((segment) => segment.padStart(4, "0")).join(":");
+}
+
+function validateIPv4(ip, proxied, file, index) {
+ const parts = ip.split(".").map(Number);
+
+ if (parts.length !== 4 || parts.some((part) => isNaN(part) || part < 0 || part > 255)) return false;
+ if (ip === "192.0.2.1" && proxied) return true;
+
+ return !(
+ parts[0] === 10 ||
+ (parts[0] === 172 && parts[1] >= 16 && parts[1] <= 31) ||
+ (parts[0] === 192 && parts[1] === 168) ||
+ (parts[0] === 100 && parts[1] >= 64 && parts[1] <= 127) ||
+ (parts[0] === 169 && parts[1] === 254) ||
+ (parts[0] === 192 && parts[1] === 0 && parts[2] === 0) ||
+ (parts[0] === 192 && parts[1] === 0 && parts[2] === 2) ||
+ (parts[0] === 198 && parts[1] === 18) ||
+ (parts[0] === 198 && parts[1] === 51 && parts[2] === 100) ||
+ (parts[0] === 203 && parts[1] === 0 && parts[2] === 113) ||
+ parts[0] >= 224
+ );
+}
+
+function validateIPv6(ip) {
+ return !(
+ ip.toLowerCase().startsWith("fc") ||
+ ip.toLowerCase().startsWith("fd") ||
+ ip.toLowerCase().startsWith("fe80") ||
+ ip.toLowerCase().startsWith("::1") ||
+ ip.toLowerCase().startsWith("2001:db8")
+ );
+}
+
+function validateRecordType(recordType) {
+ return validRecordTypes.has(recordType);
+}
+
+function isValidHostname(hostname) {
+ return hostnameRegex.test(hostname);
+}
+
+function isValidHexadecimal(value) {
+ return /^[0-9a-fA-F]+$/.test(value);
+}
+
+t("All files should have valid record types", (t) => {
+ files.forEach((file) => {
+ const data = fs.readJsonSync(path.join(domainsPath, file));
+ const recordKeys = Object.keys(data.record);
+
+ recordKeys.forEach((key) => {
+ t.true(validateRecordType(key), `${file}: Invalid record type: ${key}`);
+ });
+
+ // Specific record rules for CNAME, NS, and DS
+ if (recordKeys.includes("CNAME") && !data.proxied) {
+ t.is(recordKeys.length, 1, `${file}: CNAME records cannot be combined with other records unless proxied`);
+ }
+
+ if (recordKeys.includes("NS")) {
+ t.true(
+ recordKeys.length === 1 || (recordKeys.length === 2 && recordKeys.includes("DS")),
+ `${file}: NS records cannot be combined with other records, except for DS records`
+ );
+ }
+
+ if (recordKeys.includes("DS")) {
+ t.true(recordKeys.includes("NS"), `${file}: DS records must be combined with NS records`);
+ }
+ });
+});
+
+t("All files should not have duplicate record keys", (t) => {
+ files.forEach((file) => {
+ const data = fs.readJsonSync(path.join(domainsPath, file));
+ const recordKeys = Object.keys(data.record);
+ const uniqueRecordKeys = new Set(recordKeys);
+
+ t.is(recordKeys.length, uniqueRecordKeys.size, `${file}: Duplicate record keys found`);
+ });
+});
+
+t("All files should have valid record values", (t) => {
+ files.forEach((file) => {
+ const data = fs.readJsonSync(path.join(domainsPath, file));
+
+ Object.keys(data.record).forEach((key) => {
+ const value = data.record[key];
+ const subdomain = file.replace(/\.json$/, ""); // Get the subdomain from the filename
+
+ // Validate A, AAAA, MX, NS records: Array of strings
+ if (["A", "AAAA", "MX", "NS"].includes(key)) {
+ t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`);
+
+ value.forEach((record, idx) => {
+ t.true(
+ typeof record === "string",
+ `${file}: Record value for ${key} should be a string at index ${idx}`
+ );
+
+ if (key === "A") {
+ t.regex(record, ipv4Regex, `${file}: Invalid IPv4 address for ${key} at index ${idx}`);
+ t.true(
+ validateIPv4(record, data.proxied, file, idx),
+ `${file}: Invalid IPv4 address for ${key} at index ${idx}`
+ );
+ }
+
+ if (key === "AAAA") {
+ t.regex(
+ expandIPv6(record),
+ ipv6Regex,
+ `${file}: Invalid IPv6 address for ${key} at index ${idx}`
+ );
+ t.true(validateIPv6(record), `${file}: Invalid IPv6 address for ${key} at index ${idx}`);
+ }
+
+ if (["MX", "NS"].includes(key)) {
+ t.true(isValidHostname(record), `${file}: Invalid hostname for ${key} at index ${idx}`);
+ }
+ });
+ }
+
+ // Validate CNAME and URL records: Single string
+ if (["CNAME", "URL"].includes(key)) {
+ t.true(typeof value === "string", `${file}: Record value for ${key} should be a string`);
+
+ if (key === "CNAME") {
+ t.true(isValidHostname(value), `${file}: Invalid hostname for ${key}`);
+ t.true(value !== file, `${file}: CNAME cannot point to itself`);
+ if (file === "@.json") {
+ t.true(value !== "is-a.dev", `${file}: CNAME cannot point to itself`);
+ }
+ }
+
+ if (key === "URL") {
+ t.notThrows(() => new URL(value), `${file}: Invalid URL for ${key}`);
+ try {
+ const urlObj = new URL(value);
+ t.true(urlObj.hostname !== subdomain, `${file}: URL cannot point to itself`);
+ } catch {
+ t.fail(`${file}: Invalid URL for ${key}`);
+ }
+ }
+ }
+
+ // Validate CAA, DS, SRV records: Array of objects
+ if (["CAA", "DS", "SRV"].includes(key)) {
+ t.true(Array.isArray(value), `${file}: Record value for ${key} should be an array`);
+
+ value.forEach((record, idx) => {
+ t.true(
+ typeof record === "object",
+ `${file}: Record value for ${key} should be an object at index ${idx}`
+ );
+
+ if (key === "DS") {
+ t.true(
+ Number.isInteger(record.key_tag) && record.key_tag >= 0 && record.key_tag <= 65535,
+ `${file}: Invalid key_tag for DS at index ${idx}`
+ );
+ t.true(isValidHexadecimal(record.digest), `${file}: Invalid digest for DS at index ${idx}`);
+ }
+ });
+ }
+
+ // TXT: Single string or array of strings
+ if (key === "TXT") {
+ if (Array.isArray(value)) {
+ value.forEach((record, idx) => {
+ t.true(
+ typeof record === "string",
+ `${file}: TXT record value should be a string at index ${idx}`
+ );
+ });
+ } else {
+ t.true(typeof value === "string", `${file}: TXT record value should be a string`);
+ }
+ }
+ });
+ });
+});