Compare commits

..

33 Commits

Author SHA1 Message Date
mononaut
76dd7cbd71
Merge pull request #43 from mempool/mononaut/add-noderunners
Some checks failed
SVG Check / Validate SVG logos (push) Has been cancelled
Add Noderunners
2026-04-09 11:34:15 +09:00
Mononaut
e710f6728d
Add Noderunners
Some checks failed
SVG Check / Validate SVG logos (push) Has been cancelled
2026-04-09 02:29:35 +00:00
mononaut
5d15c722c6
Merge pull request #42 from mempool/natsoni/add-light-theme-logos
Add logo variants for light background support
2026-03-30 12:13:24 +09:00
natsoni
4e1eca22ca
Add .light.svg logo variants for light background support
Some checks failed
SVG Check / Validate SVG logos (push) Has been cancelled
2026-03-27 17:04:03 +09:00
wiz
3d6973c73c
Merge pull request #41 from mempool/mononaut/add-solopool 2026-03-18 12:21:18 +09:00
Mononaut
0b80cc2b96
Add SoloPool
Some checks failed
SVG Check / Validate SVG logos (push) Has been cancelled
2026-03-16 02:29:52 +00:00
mononaut
946e497409
Merge pull request #40 from mempool/orangesurf/add-braiins-solo
Add braiins solo
2026-02-24 22:45:35 +09:00
orangesurf
ce1eb7aab2
Add braiins solo
Some checks failed
SVG Check / Validate SVG logos (push) Has been cancelled
2026-02-24 13:57:17 +01:00
wiz
01e01b6349
Merge pull request #39 from mempool/knorrium/block_external_links 2026-01-04 11:44:33 -10:00
Felipe Knorr Kuhn
291b629411
Block external links 2026-01-04 13:39:14 -08:00
wiz
89844ba6a4
Merge pull request #38 from mempool/knorrium/refactor_validator 2026-01-04 11:25:36 -10:00
Felipe Knorr Kuhn
15f9ca9388
Refactor validation script to use dompurify 2026-01-04 08:34:52 -08:00
wiz
537f5c71d4
Merge pull request #37 from mempool/orangesurf/auto-review-tag
Set review needed automatically
2025-12-10 01:01:07 +09:00
orangesurf
cde352c9d1
Set review needed automatically 2025-12-09 18:25:21 +09:00
softsimon
c024a122a4
Merge pull request #36 from mempool/simon/add-gdpool-logo
add GDPool logo
2025-11-26 11:43:30 +09:00
softsimon
631a6ac9d1
add GDPool logo 2025-11-26 11:28:27 +09:00
wiz
7232533ad1
Merge pull request #35 from mempool/mononaut/add-est3lar 2025-10-29 20:58:25 +08:00
Mononaut
b8c66d6839
Add Est3lar
Some checks failed
SVG Check / Validate SVG logos (push) Has been cancelled
2025-10-24 01:37:54 +00:00
wiz
4153860aa0
Merge pull request #33 from mempool/knorrium/validate_logos
Validate SVG logos
2025-09-04 18:17:02 +09:00
wiz
a98b1e1472
Merge pull request #32 from 7Wxcka7X/master
Add BTCLab
2025-09-04 18:16:37 +09:00
wiz
53972ebbd0
Merge pull request #34 from mempool/mononaut/parasite 2025-05-16 13:10:10 -10:00
Mononaut
1722882dd6
Add parasite 2025-05-16 19:50:50 +00:00
Felipe Knorr Kuhn
b684f4cc97
Switch to broader matching 2025-04-20 18:33:12 -07:00
Felipe Knorr Kuhn
805271a93d
Remove failing logo 2025-04-20 09:42:21 -07:00
Felipe Knorr Kuhn
eacf146f2b
Add a failing test 2025-04-20 09:41:41 -07:00
Felipe Knorr Kuhn
db9fea67aa
Change step name 2025-04-20 09:40:51 -07:00
Felipe Knorr Kuhn
557420075f
Validate SVG logos 2025-04-20 09:39:25 -07:00
7Wxcka7X
3ffb455e31
Add BTCLab 2025-04-10 19:34:18 +02:00
wiz
6ee38e6628
Merge pull request #31 from mempool/mononaut/innopolis
Add innopolis tech
2025-04-06 15:41:49 +09:00
Mononaut
89cc36e42e
Add innopolis tech 2025-04-06 06:20:01 +00:00
wiz
6902a36078
Merge pull request #30 from mempool/mononaut/b2pool-logo 2025-04-01 10:17:49 +09:00
Mononaut
4d4fbff818
Add b2pool 2025-04-01 01:10:48 +00:00
wiz
216c0452fa
Merge pull request #29 from mempool/mononaut/public-pool 2025-03-23 16:27:28 +09:00
21 changed files with 1669 additions and 0 deletions

View File

@ -0,0 +1,84 @@
# Workflow: Automatically set project status to "Review Needed" when a reviewer is requested
name: Set Project Status on Review Request
# Trigger: Runs whenever a reviewer is requested on a pull request
on:
pull_request:
types: [review_requested]
jobs:
update-project-status:
runs-on: ubuntu-latest
steps:
- name: Update Project Status to Review Needed
uses: actions/github-script@v7
with:
# Use the PAT stored in repository secrets (has project write access)
github-token: ${{ secrets.PROJECT_TOKEN }}
script: |
// GraphQL query to find the PR's project items
// This fetches all projects the PR is linked to
const query = `
query($owner: String!, $repo: String!, $pr: Int!) {
repository(owner: $owner, name: $repo) {
pullRequest(number: $pr) {
projectItems(first: 10) {
nodes {
id
project {
number
}
}
}
}
}
}
`;
// Execute the query with current repo/PR context
const result = await github.graphql(query, {
owner: context.repo.owner,
repo: context.repo.repo,
pr: context.payload.pull_request.number
});
// Find the project item that belongs to project #8
const projectItems = result.repository.pullRequest.projectItems.nodes;
const projectItem = projectItems.find(item => item.project.number === 8);
// Exit early if PR isn't in project #8
if (!projectItem) {
console.log('PR is not in project #8, skipping...');
return;
}
// GraphQL mutation to update the Status field
const mutation = `
mutation($projectId: ID!, $itemId: ID!, $fieldId: ID!, $optionId: String!) {
updateProjectV2ItemFieldValue(
input: {
projectId: $projectId
itemId: $itemId
fieldId: $fieldId
value: { singleSelectOptionId: $optionId }
}
) {
projectV2Item {
id
}
}
}
`;
// Execute the mutation using IDs stored in repository variables
// PROJECT_ID: The project's unique identifier
// STATUS_FIELD_ID: The "Status" field's unique identifier
// REVIEW_NEEDED_OPTION_ID: The "Review Needed" option's unique identifier
await github.graphql(mutation, {
projectId: "${{ secrets.PROJECT_ID }}",
itemId: projectItem.id,
fieldId: "${{ secrets.STATUS_FIELD_ID }}",
optionId: "${{ secrets.REVIEW_NEEDED_OPTION_ID }}"
});
console.log('Successfully updated project status to Review Needed');

27
.github/workflows/validate-logos.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: SVG Check
on:
push:
paths:
- "**.svg"
pull_request:
types: [opened, review_requested, synchronize]
jobs:
svg_validator:
name: Validate SVG logos
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check for unsafe content in SVG logos
run: node check_logos.js

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/

10
braiinssolo.svg Normal file
View File

@ -0,0 +1,10 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M489.391 179.802L488.38 334.998C488.152 370.111 469.208 402.435 438.685 419.793L303.774 496.517C273.25 513.876 235.784 513.632 205.49 495.876L71.5914 417.401C41.2952 399.647 22.7736 367.078 23.0021 331.965L24.0129 176.769C24.2414 141.656 43.1851 109.333 73.7098 91.9741L208.621 15.2504C239.145 -2.10867 276.611 -1.86514 306.905 15.8909L440.804 94.3661C471.098 112.12 489.62 144.688 489.39 179.802H489.391Z" fill="#009DA7"/>
<path d="M228.623 415.864C228.409 448.554 205.225 461.666 177.101 445.001L100.426 399.568C72.3011 382.903 49.4642 342.521 49.6778 309.832L50.2699 218.983C50.4834 186.293 73.6672 173.181 101.792 189.846L178.467 235.28C206.591 251.945 229.428 292.326 229.215 325.016L228.623 415.864Z" fill="#002A2D"/>
<path d="M308.917 201.892C279.965 218.51 232.787 218.174 204.073 201.144L125.536 154.559C96.8243 137.529 97.0199 109.998 125.972 93.3773L204.767 48.145C233.719 31.5265 280.897 31.8629 309.61 48.8927L388.148 95.478C416.859 112.508 416.664 140.039 387.712 156.659L308.917 201.892Z" fill="#002A2D"/>
<path d="M461.321 312.568C461.109 345.012 437.924 384.789 409.799 400.964L333.119 445.06C304.993 461.235 282.154 447.922 282.366 415.477L282.953 325.313C283.165 292.868 306.351 253.091 334.475 236.916L411.155 192.821C439.282 176.646 462.12 189.958 461.908 222.403L461.321 312.568Z" fill="#002A2D"/>
<path d="M300.086 155.657L315.017 164.363L298.935 173.555L284.005 164.85L269.386 173.207L173.067 117.046L187.685 108.689L172.755 99.9839L188.836 90.7915L203.767 99.4969L213.561 93.8973L198.631 85.1919L214.712 75.9995L230.083 84.9618C244.705 78.9703 261.09 80.0828 274.264 87.764C287.584 95.5303 287.299 102.286 276.192 110.496L277.071 111.008C291.107 103.83 306.903 102.574 321.981 111.366C336.766 119.987 338.683 132.752 325.964 140.867L340.894 149.572L324.813 158.765L309.883 150.059L300.088 155.659L300.086 155.657ZM258.493 113.85C264.049 110.674 264.482 107.045 258.92 103.802L254.089 100.986C248.526 97.7421 242.236 97.9573 236.68 101.133L211.681 115.423L233.492 128.14L258.491 113.85H258.493ZM301.085 134.634C306.64 131.458 307.075 127.66 301.512 124.417L296.682 121.601C291.119 118.357 284.535 118.571 278.981 121.747L250.474 138.043L272.577 150.93L301.085 134.634Z" fill="white"/>
<path d="M128.747 280.165C128.679 297.16 116.719 304.001 102.036 295.444C87.3506 286.887 75.5027 266.174 75.5711 249.178C75.6395 232.183 87.5992 225.342 102.283 233.899C116.968 242.456 128.816 263.17 128.747 280.165Z" fill="#009DA7"/>
<path d="M196.125 387.141C196.057 404.137 184.097 410.977 169.414 402.42C154.729 393.863 142.881 373.15 142.949 356.154C143.017 339.159 154.977 332.318 169.661 340.875C184.346 349.432 196.194 370.146 196.125 387.141Z" fill="#009DA7"/>
<path d="M399.028 303.652C398.96 320.659 386.938 341.291 372.176 349.734C357.414 358.178 345.503 351.237 345.572 334.232C345.64 317.225 357.661 296.593 372.423 288.149C387.185 279.706 399.097 286.647 399.028 303.652Z" fill="#009DA7"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

1
btclab.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="688" height="688" viewBox="0 0 688 688" version="1.1"><path d="" stroke="none" fill="#fc941c" fill-rule="evenodd"/><path d="M 220 19.922 C 210.249 21.904, 202.145 29.252, 199.437 38.569 C 195.999 50.396, 200.136 62.218, 210.196 69.309 C 215.461 73.021, 216.502 73.360, 223.968 73.792 L 232.045 74.260 231.773 134.380 L 231.500 194.500 220.106 212 C 204.490 235.983, 193.265 253.349, 165.808 296 C 152.885 316.075, 139.245 337.225, 135.498 343 C 131.750 348.775, 116.897 371.950, 102.491 394.500 C 88.084 417.050, 61.988 457.775, 44.500 485 C 27.011 512.225, 11.432 537.036, 9.880 540.136 C 8.327 543.236, 5.836 549.761, 4.343 554.636 C 1.890 562.644, 1.622 565.045, 1.564 579.500 C 1.509 593.249, 1.826 596.696, 3.818 604 C 7.895 618.952, 15.370 632.055, 26.639 644.001 C 41.387 659.634, 61.396 669.540, 83.285 672.044 C 89.580 672.764, 174.108 673.003, 350 672.799 L 607.500 672.500 615.500 670.249 C 634.370 664.938, 653.165 652.974, 664.954 638.769 C 672.314 629.900, 680.220 614.428, 683.232 603 C 685.098 595.921, 685.461 591.993, 685.403 579.500 C 685.341 566.215, 685.027 563.494, 682.657 555.703 C 679.531 545.424, 675.855 537.837, 668.561 526.612 C 665.663 522.150, 652.496 501.625, 639.303 481 C 626.110 460.375, 607.205 430.900, 597.292 415.500 C 562.588 361.586, 533.426 316.145, 506.485 274 C 491.542 250.625, 473.842 222.950, 467.151 212.500 L 454.985 193.500 455.242 134 L 455.500 74.500 462.573 73.949 C 473.845 73.070, 482.658 66.699, 486.493 56.658 C 488.644 51.024, 488.218 40.181, 485.635 34.850 C 483.236 29.898, 477.656 24.504, 472.100 21.767 L 467.500 19.500 345.500 19.355 C 278.400 19.276, 221.925 19.531, 220 19.922 M 287.992 133.250 C 287.985 193.954, 287.584 201.630, 284.003 209.726 C 282.166 213.878, 271.395 230.808, 251.860 260.250 L 242.073 275 343.556 275 L 445.039 275 437.186 263.250 C 422.055 240.612, 404.346 212.459, 402.432 208 C 400.599 203.732, 400.485 200.167, 400.215 138.750 L 399.931 74 343.965 74 L 288 74 287.992 133.250 M 288 335 L 288 357 256.061 357 L 224.123 357 223.441 361.542 C 222.947 364.840, 223.308 384.072, 223.971 389.750 C 223.987 389.887, 229.596 390, 236.435 390 C 243.274 390, 250.137 390.478, 251.685 391.061 C 256.712 392.957, 260.832 397.876, 262.029 403.412 C 262.786 406.911, 263.031 429.113, 262.815 474.500 C 262.463 548.337, 262.927 543.767, 255.233 549.046 C 252.025 551.247, 250.441 551.534, 239.889 551.832 L 228.123 552.165 227.542 557.332 C 226.933 562.745, 225.002 583.955, 225.001 585.250 C 225 585.663, 239.175 586, 256.500 586 L 288 586 288 608 L 288 630 303.750 630 L 319.500 630.001 319.500 608.250 L 319.500 586.500 332.250 586.220 L 345 585.940 345 607.970 L 345 630 361 630 L 377 630 377 607.580 L 377 585.159 383.750 584.550 C 410.321 582.150, 423.701 577.580, 438.700 565.784 C 458.966 549.844, 467.057 520.936, 458.015 496.769 C 452.842 482.942, 444.034 473.764, 429.250 466.794 C 424.712 464.654, 421.012 462.588, 421.026 462.202 C 421.040 461.816, 423.265 459.999, 425.971 458.164 C 434.809 452.169, 442.823 439.478, 444.992 428.040 C 450.511 398.941, 434.995 374.252, 404.102 362.978 C 397.499 360.568, 381.841 357, 377.869 357 C 377.391 357, 377 347.100, 377 335 L 377 313 361 313 L 345 313 345 335.030 L 345 357.060 332.250 356.780 L 319.500 356.500 319.657 334.750 L 319.813 313 303.907 313 L 288 313 288 335 M 316 422 C 316 437.950, 315.999 451.337, 315.998 451.750 C 315.996 452.963, 353.902 453.180, 361 452.007 C 369.711 450.568, 379.080 445.893, 383.424 440.817 C 392.569 430.133, 392.053 413.119, 382.287 403.353 C 374.049 395.116, 364.907 393.041, 336.750 393.017 L 316 393 316 422 M 316 518.500 L 316 552 339.750 551.983 C 366.078 551.963, 373.066 551.029, 383.536 546.130 C 399.693 538.569, 407.053 524.014, 402.551 508.526 C 400.251 500.617, 392.114 492.312, 383.493 489.076 C 374.159 485.572, 368.342 485.012, 341.250 485.006 L 316 485 316 518.500" stroke="none" fill="#f4941c" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

119
check_logos.js Executable file
View File

@ -0,0 +1,119 @@
#!/usr/bin/env node
import fs from 'fs';
import path from 'path';
import { JSDOM } from 'jsdom';
import createDOMPurify from 'dompurify';
let foundUnsafe = false;
const files = fs.readdirSync('.')
.filter(file => file.endsWith('.svg'))
.filter(file => fs.statSync(file).isFile());
if (files.length === 0) {
console.log('No SVG files found');
process.exit(0);
}
for (const file of files) {
try {
const svgContent = fs.readFileSync(file, 'utf8');
const dom = new JSDOM('<!DOCTYPE html>');
const DOMPurify = createDOMPurify(dom.window);
const cleanSVG = DOMPurify.sanitize(svgContent, {
USE_PROFILES: { svg: true },
KEEP_CONTENT: true
});
const issues = [];
const scriptMatches = svgContent.match(/<script[\s>][\s\S]*?<\/script>/gi);
if (scriptMatches) {
issues.push(`Found ${scriptMatches.length} script tag(s)`);
}
const eventHandlers = svgContent.match(/\s(on\w+)\s*=/gi);
if (eventHandlers) {
const uniqueHandlers = [...new Set(eventHandlers.map(h => h.trim().toLowerCase()))];
issues.push(`Found event handlers: ${uniqueHandlers.join(', ')}`);
}
if (/javascript:/gi.test(svgContent)) {
issues.push('Found javascript: URLs');
}
const originalDOM = new JSDOM(svgContent, { contentType: 'image/svg+xml' });
const sanitizedDOM = new JSDOM(cleanSVG, { contentType: 'image/svg+xml' });
const externalUrlPattern = /^(https?|ftp):\/\//i;
const imageElements = originalDOM.window.document.querySelectorAll('image');
const useElements = originalDOM.window.document.querySelectorAll('use');
imageElements.forEach((img, index) => {
const href = img.getAttribute('href') || img.getAttribute('xlink:href');
if (href && externalUrlPattern.test(href.trim())) {
issues.push(`Found external URL in image element: ${href}`);
}
});
useElements.forEach((use, index) => {
const href = use.getAttribute('href') || use.getAttribute('xlink:href');
if (href && externalUrlPattern.test(href.trim())) {
issues.push(`Found external URL in use element: ${href}`);
}
});
const originalScripts = originalDOM.window.document.querySelectorAll('script');
const sanitizedScripts = sanitizedDOM.window.document.querySelectorAll('script');
if (originalScripts.length > sanitizedScripts.length) {
issues.push(`DOMPurify removed ${originalScripts.length - sanitizedScripts.length} script element(s)`);
}
const allElements = originalDOM.window.document.querySelectorAll('*');
let eventHandlerCount = 0;
allElements.forEach(el => {
Array.from(el.attributes).forEach(attr => {
if (attr.name.toLowerCase().startsWith('on')) {
eventHandlerCount++;
}
});
});
if (eventHandlerCount > 0 && issues.length === 0) {
const sanitizedAllElements = sanitizedDOM.window.document.querySelectorAll('*');
let sanitizedEventHandlerCount = 0;
sanitizedAllElements.forEach(el => {
Array.from(el.attributes).forEach(attr => {
if (attr.name.toLowerCase().startsWith('on')) {
sanitizedEventHandlerCount++;
}
});
});
if (eventHandlerCount > sanitizedEventHandlerCount) {
issues.push(`DOMPurify removed ${eventHandlerCount - sanitizedEventHandlerCount} event handler attribute(s)`);
}
}
if (issues.length > 0) {
console.log(`Unsafe content found in: ${file}`);
issues.forEach(issue => console.log(` - ${issue}`));
foundUnsafe = true;
}
} catch (error) {
console.error(`Error processing ${file}: ${error.message}`);
foundUnsafe = true;
}
}
if (foundUnsafe) {
process.exit(1);
} else {
console.log('No unsafe content found in SVG files');
process.exit(0);
}

1
default.light.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="5.12 2.8 15.98 18.27"> <path d="M12.101 2.90055C12.2146 2.83225 12.3508 2.8119 12.4794 2.84399L15.8755 3.69071C16.1324 3.75477 16.2929 4.00688 16.2467 4.26372C18.6108 5.37088 20.3713 7.19467 21.0609 9.24662C21.1343 9.46479 21.0492 9.70483 20.8548 9.82812C20.6605 9.95141 20.4071 9.9261 20.2409 9.7668C19.0305 8.60617 17.4469 7.59561 15.5992 6.86542L15.5744 6.96513C15.5423 7.0938 15.4604 7.20446 15.3467 7.27276C15.2331 7.34106 15.0969 7.3614 14.9683 7.32932L14.4831 7.20836L13.5759 10.847C13.8439 10.9138 14.0069 11.1851 13.9401 11.4531L11.6418 20.6709C11.6098 20.7996 11.5279 20.9102 11.4142 20.9785C11.3005 21.0468 11.1644 21.0672 11.0357 21.0351L8.60999 20.4303C8.34205 20.3635 8.179 20.0921 8.24581 19.8242L10.5441 10.6064C10.5761 10.4777 10.658 10.367 10.7717 10.2987C10.8854 10.2304 11.0215 10.2101 11.1502 10.2422L12.0574 6.60356L11.5722 6.48259C11.3043 6.41579 11.1412 6.14443 11.208 5.87649L11.2329 5.77678C9.25866 5.55406 7.38598 5.70288 5.77237 6.15943C5.5509 6.22209 5.31527 6.12547 5.20155 5.92537C5.08782 5.72527 5.12539 5.47339 5.29255 5.31518C6.86478 3.82713 9.27548 3.04332 11.8826 3.17562C11.9196 3.06091 11.997 2.96302 12.101 2.90055Z" fill="#707070"></path> </svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

2
est3lar.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.8 KiB

1
foundryusa.light.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" id="b" data-name="Layer 2" style="zoom: 1;" viewBox="0 0 32 76"><defs><style>.d { fill: #000; } .e { fill: #ff8200; }</style></defs><g id="c" data-name="b"><circle class="e" cx="24" cy="32" r="8"/><circle class="e" cx="24" cy="56" r="8"/><circle class="e" cx="8" cy="68" r="8"/><g><circle class="d" cx="24" cy="8" r="8"/><circle class="d" cx="8" cy="20" r="8"/><circle class="d" cx="8" cy="44" r="8"/></g></g></svg>

After

Width:  |  Height:  |  Size: 455 B

13
gdpool.svg Normal file
View File

@ -0,0 +1,13 @@
<svg width="524" height="523" viewBox="0 0 524 523" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1499_2400)">
<rect x="0.667969" y="1.30664" width="521.693" height="521.693" rx="260.846" fill="#212939"/>
<path d="M117.307 211.847H190.409L261.516 178.906H405.726V131.406H117.307V211.847Z" fill="white"/>
<path d="M405.726 211.847H332.623L261.516 244.788H117.307V292.288L405.726 292.288V211.847Z" fill="white"/>
<path d="M332.623 312.465H405.726V392.906H117.307V345.406H261.516L332.623 312.465Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1499_2400">
<rect width="523" height="523" fill="white" transform="translate(0.667969)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 686 B

144
innopolistech.svg Normal file
View File

@ -0,0 +1,144 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="48.93285"
height="49.999092"
viewBox="0 0 48.93285 49.999092"
fill="none"
version="1.1"
id="svg32"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<path
d="m 36.1808,29.522768 c 4.4576,-4.5547 4.4576,-11.9399 0,-16.4931 L 32.4823,9.2505875 c -5.6847,-5.80869 -14.486,-6.48679 -20.9006,-2.04059 L 4.12155,14.831168 c -5.4954,5.6151 -5.4954,14.7199 0,20.3367 l 10.39335,10.6199 c 5.4954,5.6151 14.406,5.6151 19.9029,0 l 2.9348,-2.9988 c -6.4146,4.4478 -15.2159,3.7681 -20.9007,-2.0406 l -3.6985,-3.7791 c -4.45757,-4.5547 -4.45757,-11.9399 0,-16.4931 l 3.6431,-3.7224 c 4.4576,-4.5548 11.6852,-4.5548 16.1413,0 4.4576,4.5547 4.4576,11.9399 0,16.493 l 3.643,-3.7224 z"
fill="url(#paint0_linear_69_811)"
id="path15"
style="fill:url(#paint0_linear_69_811)" />
<path
d="m 37.3527,42.789068 7.4586,-7.6211 c 5.4954,-5.6152 5.4954,-14.72 0,-20.3367 L 34.4195,4.2113775 c -5.4954,-5.61517 -14.406,-5.61517 -19.9029,0 l -2.9348,2.99874 c 6.4146,-4.44777 15.2159,-3.76809 20.9007,2.04059 l 3.6985,3.7790605 c 4.4575,4.5548 4.4575,11.9399 0,16.4931 l -3.6431,3.7225 c -4.4576,4.5547 -11.6852,4.5547 -16.1413,0 -4.4576,-4.5548 -4.4576,-11.9399 0,-16.4931 l -3.6431,3.7225 c -4.45756,4.5547 -4.45756,11.9399 0,16.4931 l 3.6985,3.7791 c 5.6848,5.8087 14.4861,6.4868 20.9007,2.0406 z"
fill="url(#paint1_linear_69_811)"
id="path16"
style="fill:url(#paint1_linear_69_811)" />
<path
d="m 32.5378,33.245268 0.5281,-0.5396 -0.0185,-0.0189 c -0.1632,0.1904 -0.331,0.3776 -0.5081,0.5585 z"
fill="url(#paint2_linear_69_811)"
id="path17"
style="fill:url(#paint2_linear_69_811)" />
<path
d="m 26.3465,46.119968 c -3.7924,-0.2989 -7.3647,-1.9792 -10.0592,-4.7325 l -4.6778,-4.7798 c -4.53769,-4.6365 -4.53769,-12.1806 0,-16.8172 l 4.0434,-4.1315 c 4.5115,-4.6098 12.1887,-4.5516 16.7664,0.1259 l 0.5312,0.5428 c 3.8864,3.971 4.3283,10.1479 1.3304,14.624 -0.3542,0.6073 -0.7684,1.1878 -1.238,1.7353 l 0.0185,0.0189 3.1149,-3.1828 c 0.5189,-0.5302 0.9762,-1.1013 1.3735,-1.6992 2.6345,-4.5343 2.0463,-10.4972 -1.7661,-14.3927 l -3.1858,-3.2552 C 29.9126,7.4321175 25.9923,5.7518075 21.8427,5.5693075 c -4.2128,-0.1888 -8.1053,1.21932 -10.6859,3.8562 L 5.19485,15.517368 c -2.61759,2.6747 -4.0588,6.2304 -4.0588,10.011 0,3.7807 1.44121,7.338 4.0588,10.011 l 9.48185,9.6885 c 2.6976,2.7565 6.2853,4.3046 10.0992,4.355 0.0647,0 0.1309,0 0.1956,0 2.6253,0 5.1505,-0.7127 7.3616,-2.0453 0.7329,-0.5066 1.4304,-1.0888 2.0802,-1.7511 l 2.519,-2.574 -0.0631,-0.0912 c -3.0349,2.2293 -6.7719,3.2929 -10.5242,2.9971 z m 10.1085,-19.4069 c 0.7006,-3.7539 -0.368,-7.7894 -3.2058,-10.6906 l -0.5312,-0.5428 c -2.2958,-2.3459 -5.3799,-3.6549 -8.6858,-3.6863 -0.04,0 -0.08,0 -0.1201,0 -3.2719,0 -6.3068,1.2618 -8.5564,3.5604 l -4.0434,4.1315 c -4.70241,4.8049 -4.70241,12.6212 0,17.4261 l 4.6778,4.7797 c 2.7654,2.8257 6.4316,4.55 10.3241,4.8568 0.4219,0.0331 0.8437,0.0504 1.2641,0.0504 1.4859,0 2.9579,-0.2061 4.376,-0.6073 -5.4631,1.8376 -11.7006,0.4861 -15.9596,-3.8656 l -5.6386,-5.7615 c -4.69471,-4.7971 -4.69471,-12.6039 0,-17.4009 l 4.4268,-4.5233 c 2.2727,-2.3222 5.403,-3.5651 8.8059,-3.5069 3.3382,0.0598 6.5594,1.4285 8.8382,3.7571 l 1.0624,1.0855 c 2.8963,2.9595 3.8848,7.1413 2.9656,10.9362 z m -2.6992,-11.2083 -1.0624,-1.0856 c -2.3466,-2.3977 -5.6633,-3.809 -9.0985,-3.8703 -3.506,-0.0598 -6.7333,1.2225 -9.0784,3.6202 l -4.4268,4.5233 c -4.8425,4.9481 -4.8425,12.9987 0,17.9452 l 5.6386,5.7615 c 3.0949,3.1624 7.2092,4.7782 11.3373,4.7782 1.8323,0 3.6646,-0.321 5.4137,-0.9645 -5.5985,2.4434 -12.261,1.2681 -16.7787,-3.348 l -6.59939,-6.7432 c -2.35121,-2.4025 -3.6446,-5.5947 -3.6446,-8.9931 0,-3.3984 1.29493,-6.5906 3.6446,-8.9931 l 4.81019,-4.915 c 2.3143,-2.3647 5.6817,-3.6690005 9.2386,-3.5793205 3.5291,0.08968 6.9135,1.5308205 9.2847,3.9553205 l 1.5921,1.6268 c 3.0641,3.1309 3.9941,7.6259 2.7977,11.5875 0.2264,-0.933 0.3434,-1.9022 0.3434,-2.8886 0,-3.1813 -1.2118,-6.1721 -3.4136,-8.422 z m 0.5066,-0.5176 -1.5921,-1.6268 c -2.4313,-2.4843 -5.8988,-3.9631805 -9.5126,-4.0544305 -3.6462,-0.08968 -7.1029,1.2476305 -9.4819,3.6784305 l -4.81017,4.915 c -2.4128,2.4654 -3.74315,5.7458 -3.74315,9.2322 0,3.4865 1.32881,6.7669 3.74315,9.2323 l 6.59937,6.7432 c 3.0441,3.1104 7.0429,4.6932 11.0555,4.6932 1.9801,0 3.9618,-0.387 5.8341,-1.1643 -2.1464,1.0337 -4.5222,1.5387 -6.9489,1.4412 -3.7739,-0.151 -7.3246,-1.7385 -9.9976,-4.4698 l -7.56025,-7.7234 c -5.01037,-5.1196 -5.01037,-13.4487 0,-18.5683 l 5.19515,-5.3083 c 4.9488,-5.0566905 14.1966,-4.8175405 19.4009,0.5003 l 2.1234,2.1696 c 3.312,3.3842 4.1388,8.3621 2.4821,12.5424 1.375,-4.1504 0.448,-8.9285 -2.7855,-12.2325 z m 0.5066,-0.5176 -2.1234,-2.1696 C 30.1297,9.7291575 26.5113,8.1841575 22.7204,8.0614375 c -3.834,-0.12271 -7.4371,1.23978 -9.8837,3.7382305 l -5.19518,5.3083 c -5.12277,5.2345 -5.12277,13.7508 0,18.9853 l 7.56018,7.7234 c 2.7254,2.7847 6.3438,4.4021 10.1901,4.5563 0.2018,0.0079 0.4019,0.0126 0.6036,0.0126 2.3112,0 4.5654,-0.5334 6.6087,-1.5434 -5.5909,3.2001 -12.7692,2.3332 -17.4932,-2.4938 l -8.51949,-8.7051 c -2.50365,-2.5582 -3.88173,-5.9582 -3.88173,-9.5752 0,-3.6171 1.37808,-7.0186 3.88173,-9.5752 l 5.57849,-5.7001 c 2.4652,-2.5189305 6.1468,-3.8751305 10.1024,-3.7240905 3.9094,0.15104 7.6187,1.73537 10.1778,4.3501905 l 2.6545,2.7124 c 3.486,3.562 4.2236,8.8861 2.2127,13.1939 1.6952,-4.2842 0.8468,-9.3833 -2.5483,-12.8525 z m -9.7975,34.9119 c -0.0647,0 -0.1293,0 -0.1925,0 -3.7616,-0.0504 -7.2984,-1.5765 -9.9607,-4.2952 l -9.48179,-9.6884 c -2.5791,-2.6354 -4.00029,-6.1407 -4.00029,-9.8679 0,-3.7272 1.42119,-7.2325 4.00029,-9.8678 L 11.2984,9.5702475 c 5.2491,-5.36343 15.5316,-4.99842 21.1579,0.7505205 l 3.1857,3.2551 c 3.68,3.7603 4.3021,9.4777 1.8693,13.9034 2.0833,-4.41 1.3396,-9.8757 -2.2358,-13.5289 l -2.6545,-2.7124 C 30.0204,8.5806375 26.251,6.9679875 22.28,6.8153775 c -4.0218,-0.15104 -7.7712,1.22876 -10.284,3.7963905 l -5.57858,5.7001 c -2.54984,2.6055 -3.95256,6.0683 -3.95256,9.7515 0,3.6831 1.40426,7.1475 3.95256,9.7514 l 8.51948,8.7051 c 2.904,2.9673 6.721,4.4651 10.5427,4.4651 2.4898,0 4.9811,-0.6388 7.223,-1.9179 -2.2896,1.5057 -4.9565,2.3128 -7.7342,2.3128 z"
fill="url(#paint3_linear_69_811)"
id="path18"
style="fill:url(#paint3_linear_69_811)" />
<path
d="m 16.3943,16.752468 -0.5281,0.5396 0.0185,0.0189 c 0.1632,-0.1904 0.331,-0.3776 0.5081,-0.5585 z"
fill="url(#paint4_linear_69_811)"
id="path19"
style="fill:url(#paint4_linear_69_811)" />
<path
d="m 13.143,36.566868 3.1858,3.2551 c 2.6853,2.7439 6.6056,4.4242 10.7552,4.6067 0.2479,0.011 0.4943,0.0157 0.7391,0.0157 3.9248,0 7.5186,-1.3908 9.9468,-3.8719 l 5.962,-6.0919 c 2.6176,-2.6746 4.0588,-6.2303 4.0588,-10.011 0,-3.7807 -1.4412,-7.3379 -4.0588,-10.011 L 34.2516,4.7700975 c -2.7008,-2.75645 -6.2868,-4.303024 -10.1008,-4.354943 -2.7023,-0.03304 -5.3045,0.684393 -7.5741,2.056323 -0.7268,0.50346 -1.4181,1.08087 -2.0633,1.74009 l -2.519,2.57395 0.0631,0.09125 c 3.0349,-2.22939 6.7734,-3.29453 10.5243,-2.99717 3.7924,0.29893 7.3646,1.97923 10.0592,4.73254 l 4.6778,4.7797305 c 4.5376,4.6366 4.5376,12.1806 0,16.8172 l -4.0434,4.1315 c -4.5115,4.6098 -12.1887,4.5516 -16.7664,-0.1259 l -0.5313,-0.5428 c -3.8878,-3.971 -4.3282,-10.1478 -1.3303,-14.6255 0.3541,-0.6073 0.7668,-1.1879 1.238,-1.7354 l -0.0185,-0.0188 -3.115,3.1828 c -0.5188,0.5302 -0.9746,1.1013 -1.3734,1.6992 -2.63608,4.5343 -2.04789,10.4971 1.7661,14.3942 z m 2.536,-2.5913 0.5312,0.5428 c 2.2958,2.3458 5.38,3.6548 8.6858,3.6863 0.0401,0 0.0801,0 0.1201,0 3.272,0 6.3069,-1.2618 8.5564,-3.5604 l 4.0435,-4.1316 c 4.7024,-4.8049 4.7024,-12.6211 0,-17.426 L 32.9382,8.3069075 c -2.7654,-2.82567 -6.4316,-4.55003 -10.3241,-4.85683 -1.9155,-0.15103 -3.8263,0.04406 -5.6463,0.5601 5.4646,-1.84235 11.7052,-0.49087 15.9673,3.8625 l 5.6386,5.7614905 c 2.2742,2.3238 3.5276,5.4138 3.5276,8.7004 0,3.2867 -1.2519,6.3767 -3.5276,8.7005 l -4.4268,4.5233 c -2.2727,2.3222 -5.3953,3.5682 -8.8059,3.5069 -3.3382,-0.0598 -6.5594,-1.4286 -8.8382,-3.7571 l -1.0624,-1.0856 c -2.8963,-2.9594 -3.8848,-7.1413 -2.9656,-10.9345 -0.7006,3.7539 0.368,7.7879 3.2058,10.6891 z m -0.5066,0.5176 1.0625,1.0856 c 2.3466,2.3977 5.6632,3.809 9.0984,3.8704 0.0816,0 0.1617,0.0015 0.2433,0.0015 3.4152,0 6.544,-1.2806 8.8351,-3.6217 l 4.4268,-4.5233 c 2.3451,-2.3962 3.6369,-5.5837 3.6369,-8.9726 0,-3.389 -1.2918,-6.5765 -3.6369,-8.9727 L 33.1999,7.5989175 c -4.4699,-4.56734 -11.0693,-5.90623 -16.7618,-3.81057 5.6001,-2.44966 12.2688,-1.27439 16.788,3.34329 l 6.5994,6.7432305 c 4.8533,4.9575 4.8533,13.0255 0,17.9846 l -4.8102,4.915 c -4.8364,4.9418 -13.4914,4.7656 -18.5233,-0.376 l -1.5921,-1.6268 c -3.1041,-3.1718 -4.0188,-7.7454 -2.7485,-11.7464 -1.0208,3.9648 -0.0154,8.3653 3.021,11.4679 z m -0.5065,0.5176 1.5921,1.6269 c 2.6468,2.7045 6.2745,4.067 9.8483,4.067 3.389,0 6.7302,-1.2256 9.1446,-3.691 l 4.8102,-4.9151 c 4.9826,-5.0912 4.9826,-13.3747 0,-18.466 L 33.4617,6.8893475 c -4.5454,-4.64285 -11.2218,-5.87633 -16.8881,-3.52423 2.1464,-1.03366 4.5238,-1.5387 6.9505,-1.44273 3.7739,0.15104 7.3246,1.73852 9.9976,4.4698 l 7.5602,7.7249805 c 2.4267,2.4795 3.7632,5.7772 3.7632,9.2841 0,3.507 -1.3365,6.8046 -3.7632,9.2842 l -5.1951,5.3084 c -2.3897,2.4417 -5.9127,3.7743 -9.6697,3.6516 -3.7185,-0.1196 -7.2661,-1.6331 -9.7312,-4.152 l -2.1234,-2.1696 c -3.312,-3.3842 -4.1388,-8.3621 -2.4805,-12.5424 -1.375,4.1519 -0.4481,8.9301 2.7839,12.2325 z m -0.5066,0.5177 2.1233,2.1696 c 2.516,2.5708 6.1344,4.1158 9.9253,4.2385 0.1601,0.0047 0.3203,0.0078 0.4789,0.0078 3.6553,0 7.0613,-1.3514 9.4033,-3.746 l 5.1951,-5.3084 c 2.4821,-2.5362 3.8478,-5.9062 3.8478,-9.4918 0,-3.5856 -1.3673,-6.9572 -3.8478,-9.4918 L 33.725,6.1813575 c -2.7254,-2.78477 -6.3438,-4.40214 -10.1901,-4.55632 -2.5283,-0.1007 -5.0042,0.43738 -7.2292,1.54027 5.5924,-3.2079881 12.78,-2.344238 17.5101,2.48899 l 8.521,8.7051705 c 5.1675,5.28 5.1675,13.8719 0,19.152 l -5.5785,5.7001 c -2.4651,2.5189 -6.1467,3.8751 -10.1023,3.724 -3.9095,-0.151 -7.6188,-1.7353 -10.1778,-4.3502 l -2.6546,-2.7124 c -2.1433,-2.19 -3.3228,-5.1007 -3.3228,-8.197 0,-1.7967 0.4004,-3.5289 1.1518,-5.0959 -1.7492,4.3046 -0.9147,9.4556 2.5051,12.9515 z m -3.9018,-7.8556 c 0,3.1624 1.2057,6.1359 3.3937,8.3732 l 2.6545,2.7124 c 2.6007,2.6573 6.37,4.27 10.3395,4.4226 0.2032,0.0078 0.4065,0.011 0.6082,0.011 3.7909,0 7.2907,-1.3704 9.6758,-3.809 l 5.5786,-5.7001 c 5.2629,-5.3776 5.2629,-14.1268 0,-19.5044 L 33.9867,5.4733675 c -4.7978,-4.899308 -12.0871,-5.783512 -17.7703,-2.53776 2.3435,-1.54342 5.0812,-2.355255 7.9313,-2.315922 3.7616,0.050346 7.2984,1.576462 9.9607,4.295152 l 9.4803,9.6885305 c 2.5791,2.6353 4.0003,6.1406 4.0003,9.8678 0,3.7272 -1.4212,7.2325 -4.0003,9.8678 l -5.962,6.0919 c -2.5406,2.596 -6.3823,3.9805 -10.535,3.7964 -4.0988,-0.1809 -7.9713,-1.8376 -10.6228,-4.5469 l -3.1857,-3.2551 c -3.64926,-3.7288 -4.29134,-9.3817 -1.9309,-13.7917 -0.7191,1.5575 -1.0978,3.2709 -1.0978,5.044 z"
fill="url(#paint5_linear_69_811)"
id="path20"
style="fill:url(#paint5_linear_69_811)" />
<path
d="m 28.1109,45.440168 c -4.3406,0 -8.421,-1.7275 -11.4897,-4.8631 l -3.6985,-3.7791 c -2.111,-2.157 -3.27352,-5.0252 -3.27352,-8.0758 0,-3.0507 1.16252,-5.9188 3.27352,-8.0759 l 1.2996,-1.3278 c -0.0077,0.0141 -0.0139,0.0283 -0.0216,0.0424 -0.0262,0.0488 -0.0493,0.0976 -0.0739,0.1464 -0.0323,0.0629 -0.0631,0.1258 -0.0939,0.1903 -0.793,1.6268 -1.2164,3.4299 -1.2164,5.3021 0,3.1797 1.2118,6.1706 3.4121,8.4188 2.2003,2.2483 5.1274,3.4865 8.2392,3.4865 3.1119,0 6.0205,-1.2319 8.2192,-3.4692 0.0062,-0.0063 0.0124,-0.0125 0.02,-0.0188 l 3.6431,-3.7225 c 4.5423,-4.6429 4.5423,-12.1948 0,-16.8376 L 32.6516,9.0777175 c -3.1596,-3.22844 -7.3585,-5.00472 -11.8269,-5.00472 -3.0271,0 -5.9311,0.81813 -8.4717,2.34896 l -2.0032,2.04689 c 2.927,-2.5299 6.5963,-3.90969 10.4734,-3.90969 4.3406,0 8.4209,1.7275 11.4897,4.86312 l 3.6985,3.7790905 c 4.3575,4.4525 4.3575,11.6976 0,16.1501 l -1.2996,1.3279 c 0.0077,-0.0142 0.0139,-0.0283 0.0216,-0.0409 0.0261,-0.0488 0.0508,-0.0991 0.0754,-0.1495 0.0308,-0.0629 0.0631,-0.1243 0.0924,-0.1872 0.793,-1.6268 1.2164,-3.4314 1.2164,-5.3021 0,-3.1797 -1.2118,-6.1705 -3.4121,-8.4188 -4.5423,-4.6429 -11.9347,-4.6429 -16.4785,0 l -3.643,3.7225 c -4.54233,4.6428 -4.54233,12.1947 0,16.8376 l 3.6985,3.7791 c 3.1595,3.2285 7.3585,5.0047 11.8268,5.0047 3.0272,0 5.9312,-0.8181 8.4718,-2.3489 l 2.0032,-2.0469 c -2.9271,2.5299 -6.5963,3.9097 -10.475,3.9097 z m -11.5467,-28.5163 c 2.1788,-2.2263 5.0412,-3.3386 7.9036,-3.3386 2.8624,0 5.7248,1.1139 7.9036,3.3386 2.111,2.157 3.2735,5.0252 3.2735,8.0758 0,3.0507 -1.1625,5.9188 -3.2735,8.0743 -2.111,2.157 -4.918,3.3448 -7.9036,3.3448 -2.9856,0 -5.7926,-1.1878 -7.9036,-3.3448 -2.111,-2.157 -3.2735,-5.0252 -3.2735,-8.0743 0,-3.0491 1.1625,-5.9188 3.2735,-8.0758 z"
fill="#ffffff"
id="path21" />
<defs
id="defs32">
<linearGradient
id="paint0_linear_69_811"
x1="19.7609"
y1="50.3447"
x2="19.7609"
y2="4.31604"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-7.3249999e-4)">
<stop
stop-color="#FF7F00"
id="stop21" />
<stop
offset="1"
stop-color="#FF0000"
id="stop22" />
</linearGradient>
<linearGradient
id="paint1_linear_69_811"
x1="9.1666203"
y1="22.8416"
x2="49.272701"
y2="22.8416"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-7.3249999e-4)">
<stop
stop-color="#0055D6"
id="stop23" />
<stop
offset="1"
stop-color="#0090FF"
id="stop24" />
</linearGradient>
<linearGradient
id="paint2_linear_69_811"
x1="32.5378"
y1="32.967602"
x2="33.0644"
y2="32.967602"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-7.3249999e-4)">
<stop
stop-color="#FFB266"
id="stop25" />
<stop
offset="1"
stop-color="#FF3333"
id="stop26" />
</linearGradient>
<linearGradient
id="paint3_linear_69_811"
x1="20.153601"
y1="49.585098"
x2="20.153601"
y2="5.5543098"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-7.3249999e-4)">
<stop
stop-color="#FFB266"
id="stop27" />
<stop
offset="1"
stop-color="#FF3333"
id="stop28" />
</linearGradient>
<linearGradient
id="paint4_linear_69_811"
x1="15.8662"
y1="17.033199"
x2="16.3943"
y2="17.033199"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-7.3249999e-4)">
<stop
stop-color="#4C88E2"
id="stop29" />
<stop
offset="1"
stop-color="#66BCFF"
id="stop30" />
</linearGradient>
<linearGradient
id="paint5_linear_69_811"
x1="9.7617397"
y1="22.431299"
x2="47.789101"
y2="22.431299"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-7.3249999e-4)">
<stop
stop-color="#4C88E2"
id="stop31" />
<stop
offset="1"
stop-color="#66BCFF"
id="stop32" />
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

136
miningsquared.svg Normal file
View File

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="49.000038"
height="48.999992"
viewBox="0 0 49.000038 48.999992"
fill="none"
version="1.1"
id="svg23"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs23" />
<path
d="m 48.020438,24.496594 c 0,12.9897 -10.5302,23.52 -23.52,23.52 -12.9897,0 -23.51997002,-10.5303 -23.51997002,-23.52 0,-12.9898 10.53027002,-23.52003125 23.51997002,-23.52003125 12.9898,0 23.52,10.53023125 23.52,23.52003125 z"
fill="#ffb852"
id="path1" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 6.976428,14.820994 c -1.58801,2.8688 -2.49205,6.1688 -2.49205,9.68 0,2.4371 0.43556,4.7725 1.23308,6.9326 l 0.77799,-0.7984 c -0.65548,-1.9246 -1.01107,-3.9879 -1.01107,-6.1342 0,-3.2618 0.82122,-6.3318 2.26819,-9.0146 z m 10.87511,-8.1417103 c 2.0698,-0.77257 4.3103,-1.19491 6.6494,-1.19491 7.6334,0 14.2163,4.4975 17.2434,10.9871203 l 1.0207,-0.1734 c -3.1328,-6.9645102 -10.1321,-11.8137203 -18.2641,-11.8137203 -2.656,0 -5.1912,0.51732 -7.5104,1.4567 z m 6.6494,36.8383103 c 7.4565,0 13.9107,-4.2916 17.0273,-10.5394 l 1.2054,-0.2049 c -3.148,6.9273 -10.1278,11.7443 -18.2327,11.7443 -4.1343,0 -7.976,-1.2535 -11.1655,-3.4011 l 0.71,-0.7286 c 2.9999,1.9783 6.5933,3.1297 10.4555,3.1297 z"
fill="#000000"
id="path2" />
<mask
id="mask0_15907_23"
maskUnits="userSpaceOnUse"
x="1"
y="0"
width="48"
height="49">
<path
d="m 48.872,24.5005 c 0,12.9897 -10.5302,23.52 -23.52,23.52 -12.9897,0 -23.51997,-10.5303 -23.51997,-23.52 0,-12.9898 10.53027,-23.520031 23.51997,-23.520031 12.9898,0 23.52,10.530231 23.52,23.520031 z"
fill="#ffb852"
id="path3" />
</mask>
<g
mask="url(#mask0_15907_23)"
id="g12"
transform="translate(-0.85156202,-0.00390625)">
<path
d="m 29.9494,19.2186 c -0.3798,0.0107 -0.765,-0.1685 -1.0552,-0.3503 l -2.7339,-2.5837 c -0.2929,-0.2768 -0.3985,-0.6539 -0.4093,-1.0338 -0.0107,-0.3798 0.1685,-0.765 0.3504,-1.0552 l 0.228,-0.231 c 0.5536,-0.5858 1.4082,-0.6099 1.994,-0.0563 l 2.7339,2.5837 c 0.5858,0.5536 0.6099,1.4082 0.0563,1.994 l -0.228,0.231 c -0.1819,0.2902 -0.5564,0.4909 -0.9362,0.5016 z"
fill="#ffb900"
stroke="#000000"
stroke-width="0.8"
id="path4" />
<path
d="M 4.48061,46.3083 C 4.10079,46.319 3.7156,46.1398 3.42537,45.958 L 0.691541,43.3743 C 0.39863,43.0975 0.292947,42.7204 0.28222,42.3405 0.271493,41.9607 0.450677,41.5755 0.632542,41.2853 L 17.0141,24.128 c 0.5537,-0.5859 1.4083,-0.61 1.9941,-0.0564 l 2.7338,2.5837 c 0.5858,0.5536 0.61,1.4082 0.0563,1.994 L 5.41675,45.8067 c -0.18187,0.2902 -0.55632,0.4909 -0.93614,0.5016 z"
fill="#ffb900"
stroke="#000000"
stroke-width="0.8"
id="path5" />
<path
d="m 23.0029,25.8289 -3.4173,-3.2295 c -0.9764,-0.9228 -1.0193,-2.442 -0.0939,-3.3234 l 1.9378,-2.0504 c 0.9227,-0.9764 2.442,-1.0193 3.3234,-0.0939 l 3.4173,3.2296 c 0.9763,0.9227 1.0193,2.442 0.0938,3.3234 l -1.9377,2.0504 c -0.8278,0.9737 -2.3471,1.0166 -3.3234,0.0938 z"
fill="#000000"
stroke="#000000"
stroke-width="0.8"
id="path6" />
<path
d="m 32.02,38.8804 c 0.1004,0.1872 0.293,0.2768 0.4829,0.2714 0.2848,-0.008 0.3744,-0.2006 0.464,-0.3932 l 0.3316,-1.7199 C 33.9321,32.5543 33.0437,28.018 30.7498,24.1865 30.5545,24.0019 30.2643,23.8201 30.0797,24.0153 l -3.6013,3.7129 c -0.1846,0.1953 -0.2715,0.4828 -0.0762,0.6674 1.1797,1.3921 2.1721,2.8846 2.8824,4.4801 z"
fill="#ffe3bd"
stroke="#000000"
stroke-width="0.8"
id="path7" />
<path
d="m 16.7371,19.3548 c 0.0976,0.0923 0.2875,0.087 0.3825,0.0843 0.0949,-0.0027 0.2822,-0.103 0.2822,-0.103 0.1952,0.1845 3.6882,-4.0005 3.8728,-4.1957 0.1845,-0.1953 0.1765,-0.4802 -0.0188,-0.6647 L 14.7244,8.25001 C 14.1386,7.69637 13.284,7.7205 12.7303,8.30632 l -2.5836,2.73388 c -0.1819,0.2902 -0.36108,0.6754 -0.35036,1.0552 0.01073,0.3798 0.11641,0.7569 0.40936,1.0338 z"
fill="#ffe3bd"
stroke="#000000"
stroke-width="0.8"
id="path8" />
<path
d="m 36.5775,20.2265 c 2.3433,-2.3434 6.1426,-2.3431 8.486,3e-4 2.3433,2.3433 2.3433,6.1423 0,8.4856 -2.3434,2.3434 -6.1427,2.3437 -8.486,3e-4 -2.3433,-2.3433 -2.3433,-6.1429 0,-8.4862 z"
fill="#ffe3bd"
stroke="#000000"
stroke-width="0.8"
id="path9" />
<path
d="m 42.4902,26.5569 c 0.0477,-0.1811 0.0664,-0.365 0.0584,-0.5503 0.1486,0.0028 0.2962,-0.0136 0.4421,-0.0506 0.3304,-0.084 0.6242,-0.2674 0.8822,-0.5255 0.4183,-0.4183 0.6678,-0.8973 0.6767,-1.4321 0.007,-0.4234 -0.1378,-0.836 -0.3954,-1.2334 l 0.1672,-0.1672 c 0.2945,-0.2945 0.2945,-0.7716 0,-1.0662 -0.2004,-0.2003 -0.4852,-0.2644 -0.7395,-0.1922 0.0721,-0.2543 0.0081,-0.5392 -0.1922,-0.7395 -0.2946,-0.2945 -0.7717,-0.2945 -1.0663,0 l -0.106,0.1061 -0.2745,-0.2745 c -0.092,-0.092 -0.2181,-0.1503 -0.361,-0.15 -0.1413,-3e-4 -0.2679,0.0563 -0.3613,0.1497 l -4.4076,4.4076 c -0.0933,0.0933 -0.15,0.2199 -0.1496,0.3612 -4e-4,0.143 0.0579,0.269 0.1499,0.3611 l 0.2745,0.2745 -0.0252,0.0252 c -0.2946,0.2945 -0.2946,0.7717 0,1.0662 0.2003,0.2003 0.4851,0.2644 0.7395,0.1922 -0.0722,0.2544 -0.0081,0.5392 0.1922,0.7395 0.2945,0.2945 0.7717,0.2945 1.0662,0 l 0.0869,-0.0869 c 0.3251,0.2076 0.6691,0.3445 1.0313,0.3962 0.6492,0.0927 1.2321,-0.1448 1.7249,-0.6377 0.2876,-0.2875 0.4913,-0.6115 0.5866,-0.9734 z m -5.9127,-6.3304 c 2.3433,-2.3434 6.1426,-2.3431 8.486,3e-4 2.3433,2.3433 2.3433,6.1423 0,8.4856 -2.3434,2.3434 -6.1427,2.3437 -8.486,3e-4 -2.3433,-2.3433 -2.3433,-6.1429 0,-8.4862 z"
fill="#ffb900"
stroke="#000000"
stroke-width="0.8"
id="path10" />
<path
d="m 40.7239,25.0169 -0.8086,-0.8087 c -0.0217,-0.0216 -0.0433,-0.0216 -0.065,0 l -1.0825,1.0826 c -0.0216,0.0216 -0.0216,0.0433 0,0.0649 l 0.815,0.8151 c 0.1999,0.1998 0.4076,0.3053 0.6226,0.3162 0.2151,0.0108 0.412,-0.0724 0.5902,-0.2506 0.1785,-0.1786 0.2617,-0.3754 0.2509,-0.5905 -0.0108,-0.2151 -0.1183,-0.4248 -0.3226,-0.629 z"
fill="#ffb900"
stroke="#000000"
stroke-width="0.8"
id="path11" />
<path
d="m 41.4242,24.2214 c 0.2042,0.2042 0.4105,0.3152 0.6192,0.3324 0.209,0.0176 0.3957,-0.0561 0.561,-0.2215 0.1695,-0.1694 0.2466,-0.3595 0.2314,-0.5709 -0.0153,-0.2107 -0.1252,-0.418 -0.3294,-0.6222 l -0.763,-0.763 c -0.0216,-0.0216 -0.0433,-0.0216 -0.0649,0 l -1.0173,1.0173 c -0.0216,0.0216 -0.0216,0.0433 0,0.0649 z"
fill="#ffb900"
stroke="#000000"
stroke-width="0.8"
id="path12" />
</g>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 49.000038,24.499994 c 0,13.531 -10.9691,24.5 -24.5,24.5 -13.531,0 -24.500038025717046,-10.969 -24.500038025717046,-24.5 C -2.5717053e-8,10.968994 10.969038,0 24.500038,0 c 13.5309,0 24.5,10.968994 24.5,24.499994 z m -24.5,23.52 c 12.9897,0 23.52,-10.5303 23.52,-23.52 0,-12.9897 -10.5303,-23.51999425 -23.52,-23.51999425 -12.9898,0 -23.52004002,10.53029425 -23.52004002,23.51999425 0,12.9897 10.53024002,23.52 23.52004002,23.52 z"
fill="#000000"
id="path13" />
<path
d="m 43.203138,32.828094 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z"
fill="#000000"
id="path16" />
<path
d="m 43.203138,16.015594 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z"
fill="#000000"
id="path17" />
<path
d="m 18.535138,6.5156237 c 0,0.55229 -0.4477,1 -1,1 -0.5523,0 -1,-0.44771 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z"
fill="#000000"
id="path18" />
<path
d="m 7.968748,15.765594 c 0,0.5523 -0.44771,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 0.55229,0 1,0.4477 1,1 z"
fill="#000000"
id="path19" />
<path
d="m 7.003908,30.828094 c 0,0.5523 -0.44772,1 -1,1 -0.55229,0 -1,-0.4477 -1,-1 0,-0.5523 0.44771,-1 1,-1 0.55228,0 1,0.4477 1,1 z"
fill="#000000"
id="path20" />
<path
d="m 14.597638,40.515594 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z"
fill="#000000"
id="path21" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="m 19.983938,25.984794 c 0.1526,-0.1598 0.1467,-0.413 -0.0131,-0.5655 -0.1597,-0.1526 -0.4129,-0.1467 -0.5655,0.0131 l -4.8075,5.0351 0.5659,0.5658 z m -8.2995,7.5341 2.0707,-2.1688 0.5659,0.5658 -2.0708,2.1688 z m -0.2769,1.4484 -0.5658,-0.5658 -1.2942,1.3555 0.5658,0.5658 z m -2.1369,2.2381 -0.56581,-0.5658 -0.62538,0.655 c -0.15256,0.1598 -0.1467,0.413 0.01308,0.5655 0.15978,0.1526 0.41297,0.1467 0.56553,-0.0131 z"
fill="#000000"
id="path22" />
<path
d="m 8.086768,40.333994 c -0.82704,0.0479 -1.45863,0.7572 -1.41071,1.5843 0.04793,0.827 0.75723,1.4586 1.58427,1.4107 0.82704,-0.048 1.45861,-0.7573 1.41071,-1.5843 -0.0479,-0.827 -0.75723,-1.4586 -1.58427,-1.4107 z"
fill="#ffb900"
stroke="#000000"
stroke-width="0.8"
id="path23" />
</svg>

After

Width:  |  Height:  |  Size: 8.9 KiB

45
noderunners.light.svg Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
enable-background="new 0 0 1024 1024"
version="1.1"
viewBox="0 0 1024 1024"
xml:space="preserve"
id="svg297"
sodipodi:docname="publicpool.svg"
inkscape:export-filename="noderunners-pool.light.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs297"><style
id="style1">.cls-1{fill:#fff;}</style></defs><sodipodi:namedview
id="namedview297"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.72851562"
inkscape:cx="512"
inkscape:cy="512"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg297" /><g
id="g298"
transform="matrix(12.564028,0,0,12.564028,-69.61519,-70.16255)"><path
class="cls-1"
d="M 77.51,34.72 A 4.69,4.69 0 0 1 71.07,34 h -9.35 a 1.11,1.11 0 0 0 -1.1,1.11 V 61.66 A 2.43,2.43 0 0 1 58.2,64.08 H 54.75 L 41.21,44.41 a 51.78,51.78 0 0 1 -3,-5 h -0.1 c 0,0 0.35,3 0.35,5 v 16.26 a 3.41,3.41 0 0 1 -3.41,3.41 h -13 a 4.74,4.74 0 0 1 -2.81,1.67 33.29,33.29 0 0 0 58.23,-31 z"
id="path1-3"
style="fill:#000000" /><path
class="cls-1"
d="m 18.42,56.41 a 4.71,4.71 0 0 1 3.93,2.1 h 0.87 c 0.62,0 8.71,-0.49 8.71,-1.1 V 30.89 a 2.42,2.42 0 0 1 2.42,-2.42 h 3.5 l 13.49,19.71 c 1.4,2 3,5 3,5 h 0.1 c 0,0 -0.35,-3 -0.35,-5 v -16.3 c 0,-2.36 1,-3.41 3.41,-3.41 h 13.17 a 4.65,4.65 0 0 1 2.41,-1.93 33.3,33.3 0 0 0 -58,31.3 4.72,4.72 0 0 1 3.34,-1.43 z"
id="path2-8"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

46
noderunners.svg Normal file
View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
enable-background="new 0 0 1024 1024"
version="1.1"
viewBox="0 0 1024 1024"
xml:space="preserve"
id="svg297"
sodipodi:docname="noderunners.svg"
inkscape:export-filename="noderunners-pool.light.svg"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs297"><style
id="style1">.cls-1{fill:#fff;}</style></defs><sodipodi:namedview
id="namedview297"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.72851562"
inkscape:cx="512"
inkscape:cy="512"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg297" /><g
id="g298"
transform="matrix(12.564028,0,0,12.564028,-69.61519,-70.16255)"
style="fill:#ffffff"><path
class="cls-1"
d="M 77.51,34.72 A 4.69,4.69 0 0 1 71.07,34 h -9.35 a 1.11,1.11 0 0 0 -1.1,1.11 V 61.66 A 2.43,2.43 0 0 1 58.2,64.08 H 54.75 L 41.21,44.41 a 51.78,51.78 0 0 1 -3,-5 h -0.1 c 0,0 0.35,3 0.35,5 v 16.26 a 3.41,3.41 0 0 1 -3.41,3.41 h -13 a 4.74,4.74 0 0 1 -2.81,1.67 33.29,33.29 0 0 0 58.23,-31 z"
id="path1-3"
style="fill:#ffffff" /><path
class="cls-1"
d="m 18.42,56.41 a 4.71,4.71 0 0 1 3.93,2.1 h 0.87 c 0.62,0 8.71,-0.49 8.71,-1.1 V 30.89 a 2.42,2.42 0 0 1 2.42,-2.42 h 3.5 l 13.49,19.71 c 1.4,2 3,5 3,5 h 0.1 c 0,0 -0.35,-3 -0.35,-5 v -16.3 c 0,-2.36 1,-3.41 3.41,-3.41 h 13.17 a 4.65,4.65 0 0 1 2.41,-1.93 33.3,33.3 0 0 0 -58,31.3 4.72,4.72 0 0 1 3.34,-1.43 z"
id="path2-8"
style="fill:#ffffff" /></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

806
package-lock.json generated Normal file
View File

@ -0,0 +1,806 @@
{
"name": "mining-pool-logos",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "mining-pool-logos",
"version": "1.0.0",
"dependencies": {
"dompurify": "^3.0.8",
"jsdom": "^24.0.0"
},
"bin": {
"check_logos": "check_logos.js"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@asamuzakjp/css-color": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz",
"integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==",
"license": "MIT",
"dependencies": {
"@csstools/css-calc": "^2.1.3",
"@csstools/css-color-parser": "^3.0.9",
"@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3",
"lru-cache": "^10.4.3"
}
},
"node_modules/@csstools/color-helpers": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"license": "MIT-0",
"engines": {
"node": ">=18"
}
},
"node_modules/@csstools/css-calc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@csstools/css-parser-algorithms": "^3.0.5",
"@csstools/css-tokenizer": "^3.0.4"
}
},
"node_modules/@csstools/css-color-parser": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"license": "MIT",
"dependencies": {
"@csstools/color-helpers": "^5.1.0",
"@csstools/css-calc": "^2.1.4"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@csstools/css-parser-algorithms": "^3.0.5",
"@csstools/css-tokenizer": "^3.0.4"
}
},
"node_modules/@csstools/css-parser-algorithms": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@csstools/css-tokenizer": "^3.0.4"
}
},
"node_modules/@csstools/css-tokenizer": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
}
},
"node_modules/@types/trusted-types": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
"integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
"license": "MIT",
"optional": true
},
"node_modules/agent-base": {
"version": "7.1.4",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
"license": "MIT",
"engines": {
"node": ">= 14"
}
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
"license": "MIT"
},
"node_modules/call-bind-apply-helpers": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
"function-bind": "^1.1.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"license": "MIT",
"dependencies": {
"delayed-stream": "~1.0.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/cssstyle": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz",
"integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==",
"license": "MIT",
"dependencies": {
"@asamuzakjp/css-color": "^3.2.0",
"rrweb-cssom": "^0.8.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/cssstyle/node_modules/rrweb-cssom": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz",
"integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==",
"license": "MIT"
},
"node_modules/data-urls": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
"integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==",
"license": "MIT",
"dependencies": {
"whatwg-mimetype": "^4.0.0",
"whatwg-url": "^14.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/debug": {
"version": "4.4.3",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/decimal.js": {
"version": "10.6.0",
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
"license": "MIT"
},
"node_modules/delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
"license": "MIT",
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/dompurify": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz",
"integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
"license": "(MPL-2.0 OR Apache-2.0)",
"optionalDependencies": {
"@types/trusted-types": "^2.0.7"
}
},
"node_modules/dunder-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
"es-errors": "^1.3.0",
"gopd": "^1.2.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/entities": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
"license": "BSD-2-Clause",
"engines": {
"node": ">=0.12"
},
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/es-define-property": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-errors": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-object-atoms": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-set-tostringtag": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.6",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/form-data": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
"license": "MIT",
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
"es-set-tostringtag": "^2.1.0",
"hasown": "^2.0.2",
"mime-types": "^2.1.12"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/get-intrinsic": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.2",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.1.1",
"function-bind": "^1.1.2",
"get-proto": "^1.0.1",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"math-intrinsics": "^1.1.0"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/get-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
"license": "MIT",
"dependencies": {
"dunder-proto": "^1.0.1",
"es-object-atoms": "^1.0.0"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/gopd": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-symbols": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-tostringtag": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
"license": "MIT",
"dependencies": {
"has-symbols": "^1.0.3"
},
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
"license": "MIT",
"dependencies": {
"function-bind": "^1.1.2"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/html-encoding-sniffer": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
"integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
"license": "MIT",
"dependencies": {
"whatwg-encoding": "^3.1.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/http-proxy-agent": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
"license": "MIT",
"dependencies": {
"agent-base": "^7.1.0",
"debug": "^4.3.4"
},
"engines": {
"node": ">= 14"
}
},
"node_modules/https-proxy-agent": {
"version": "7.0.6",
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
"license": "MIT",
"dependencies": {
"agent-base": "^7.1.2",
"debug": "4"
},
"engines": {
"node": ">= 14"
}
},
"node_modules/iconv-lite": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"license": "MIT",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-potential-custom-element-name": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
"license": "MIT"
},
"node_modules/jsdom": {
"version": "24.1.3",
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.1.3.tgz",
"integrity": "sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==",
"license": "MIT",
"dependencies": {
"cssstyle": "^4.0.1",
"data-urls": "^5.0.0",
"decimal.js": "^10.4.3",
"form-data": "^4.0.0",
"html-encoding-sniffer": "^4.0.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"is-potential-custom-element-name": "^1.0.1",
"nwsapi": "^2.2.12",
"parse5": "^7.1.2",
"rrweb-cssom": "^0.7.1",
"saxes": "^6.0.0",
"symbol-tree": "^3.2.4",
"tough-cookie": "^4.1.4",
"w3c-xmlserializer": "^5.0.0",
"webidl-conversions": "^7.0.0",
"whatwg-encoding": "^3.1.1",
"whatwg-mimetype": "^4.0.0",
"whatwg-url": "^14.0.0",
"ws": "^8.18.0",
"xml-name-validator": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"canvas": "^2.11.2"
},
"peerDependenciesMeta": {
"canvas": {
"optional": true
}
}
},
"node_modules/lru-cache": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
"license": "ISC"
},
"node_modules/math-intrinsics": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/mime-db": {
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"license": "MIT",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/mime-types": {
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"license": "MIT",
"dependencies": {
"mime-db": "1.52.0"
},
"engines": {
"node": ">= 0.6"
}
},
"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==",
"license": "MIT"
},
"node_modules/nwsapi": {
"version": "2.2.23",
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz",
"integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==",
"license": "MIT"
},
"node_modules/parse5": {
"version": "7.3.0",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
"integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
"license": "MIT",
"dependencies": {
"entities": "^6.0.0"
},
"funding": {
"url": "https://github.com/inikulin/parse5?sponsor=1"
}
},
"node_modules/psl": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
"integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
"license": "MIT",
"dependencies": {
"punycode": "^2.3.1"
},
"funding": {
"url": "https://github.com/sponsors/lupomontero"
}
},
"node_modules/punycode": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/querystringify": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
"license": "MIT"
},
"node_modules/requires-port": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
"license": "MIT"
},
"node_modules/rrweb-cssom": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz",
"integrity": "sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==",
"license": "MIT"
},
"node_modules/safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
"license": "MIT"
},
"node_modules/saxes": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
"license": "ISC",
"dependencies": {
"xmlchars": "^2.2.0"
},
"engines": {
"node": ">=v12.22.7"
}
},
"node_modules/symbol-tree": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
"license": "MIT"
},
"node_modules/tough-cookie": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz",
"integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==",
"license": "BSD-3-Clause",
"dependencies": {
"psl": "^1.1.33",
"punycode": "^2.1.1",
"universalify": "^0.2.0",
"url-parse": "^1.5.3"
},
"engines": {
"node": ">=6"
}
},
"node_modules/tr46": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz",
"integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
"license": "MIT",
"dependencies": {
"punycode": "^2.3.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/universalify": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
}
},
"node_modules/url-parse": {
"version": "1.5.10",
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
"license": "MIT",
"dependencies": {
"querystringify": "^2.1.1",
"requires-port": "^1.0.0"
}
},
"node_modules/w3c-xmlserializer": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
"license": "MIT",
"dependencies": {
"xml-name-validator": "^5.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/webidl-conversions": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
"license": "BSD-2-Clause",
"engines": {
"node": ">=12"
}
},
"node_modules/whatwg-encoding": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
"deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation",
"license": "MIT",
"dependencies": {
"iconv-lite": "0.6.3"
},
"engines": {
"node": ">=18"
}
},
"node_modules/whatwg-mimetype": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
"license": "MIT",
"engines": {
"node": ">=18"
}
},
"node_modules/whatwg-url": {
"version": "14.2.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
"integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
"license": "MIT",
"dependencies": {
"tr46": "^5.1.0",
"webidl-conversions": "^7.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/ws": {
"version": "8.18.3",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": ">=5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
}
},
"node_modules/xml-name-validator": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
}
},
"node_modules/xmlchars": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
"license": "MIT"
}
}
}

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"name": "mining-pool-logos",
"version": "1.0.0",
"description": "SVG logo checker",
"type": "module",
"bin": {
"check_logos": "./check_logos.js"
},
"scripts": {
"validate": "node check_logos.js"
},
"dependencies": {
"dompurify": "^3.0.8",
"jsdom": "^24.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}

127
parasite.svg Normal file
View File

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
width="109.74478"
height="116.7427"
viewBox="0 0 109.74478 116.7427"
sodipodi:docname="Bug.ai"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs6">
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath20">
<path
d="M 0,89 H 165 V 0 H 0 Z"
id="path18" />
</clipPath>
</defs>
<sodipodi:namedview
id="namedview4"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="3.9775279"
inkscape:cx="73.663846"
inkscape:cy="46.008477"
inkscape:window-width="1704"
inkscape:window-height="996"
inkscape:window-x="0"
inkscape:window-y="32"
inkscape:window-maximized="1"
inkscape:current-layer="g10" />
<g
id="g10"
inkscape:groupmode="layer"
inkscape:label="Page 1"
transform="matrix(1.3333333,0,0,-1.3333333,114.12769,150.07887)">
<g
id="g16"
clip-path="url(#clipPath20)"
transform="translate(-126.94128,24.28083)">
<g
id="g22"
transform="translate(121.6635,53.6853)">
<path
d="m 0,0 c -1.706,-3.601 -4.296,-6.49 -7.442,-9.119 8.114,-7.355 9.246,-16.717 7.763,-27.087 -2.31,1.967 -1.654,4.906 -2.928,7.125 0.65,-4.55 -0.807,-8.654 -2.266,-12.758 -0.13,-0.016 -0.259,-0.031 -0.389,-0.047 -0.191,0.678 -0.495,1.347 -0.554,2.036 -0.277,3.238 -0.416,6.489 -0.744,9.72 -0.259,2.554 -1.37,4.756 -2.993,6.782 -1.381,1.724 -2.392,3.741 -3.732,5.503 -0.809,1.063 -1.933,1.886 -2.782,2.691 -3.079,-1.631 -5.984,-3.213 -8.929,-4.716 -3.17,-1.618 -6.404,-3.115 -9.547,-4.782 -0.499,-0.265 -0.963,-1.154 -0.944,-1.738 0.075,-2.325 0.356,-4.643 0.536,-6.966 0.023,-0.299 -0.099,-0.609 -0.154,-0.914 -0.331,0.104 -0.822,0.106 -0.967,0.331 -0.979,1.525 -1.982,3.05 -2.78,4.672 -0.512,1.041 -0.686,2.248 -1.035,3.463 -0.992,-0.169 -1.933,-0.283 -2.85,-0.496 -1.561,-0.361 -2.186,-1.118 -2.241,-3.09 -0.102,-3.639 -0.382,-7.291 0.597,-10.883 0.811,-2.972 0.012,-5.721 -1.378,-8.349 -0.333,-0.629 -0.705,-1.238 -1.253,-2.195 -0.404,2.439 -0.495,4.477 -1.107,6.343 -1.018,3.106 -2.387,6.097 -3.574,9.149 -0.339,0.872 -0.699,1.772 -0.809,2.688 -0.252,2.104 -0.356,4.226 -0.528,6.448 -1.711,-0.181 -2.407,-1.444 -3.133,-2.536 -1.365,-2.055 -2.791,-4.105 -3.843,-6.322 -1.074,-2.265 -1.614,-4.74 -1.284,-7.323 0.117,-0.916 0.056,-1.853 0.115,-2.778 0.148,-2.324 0.317,-4.646 0.484,-7.056 -1.08,0 -2.422,-0.05 -3.759,0.015 -1.357,0.065 -1.779,1.06 -1.994,2.218 -0.534,2.865 -0.353,5.726 -0.085,8.603 0.276,2.972 0.421,5.956 0.617,8.935 0.023,0.349 0.003,0.701 0.003,1.31 -0.812,-0.661 -1.436,-1.17 -2.241,-1.826 -0.605,0.954 -1.174,1.853 -1.744,2.751 -0.083,-0.018 -0.166,-0.036 -0.249,-0.053 0.234,-1.21 0.469,-2.419 0.7,-3.629 0.239,-1.255 0.615,-2.503 0.683,-3.768 0.183,-3.371 0.309,-6.75 0.302,-10.126 -0.004,-1.799 -0.362,-3.666 -2.225,-4.522 -0.982,-0.452 -2.174,-0.449 -3.357,-0.668 0.365,3.96 0.867,7.674 0.993,11.401 0.077,2.258 -0.438,4.535 -0.671,6.805 -0.187,1.823 -0.372,3.646 -0.515,5.472 -0.13,1.661 -0.274,3.326 -0.275,4.989 -0.001,1.361 0.199,2.722 0.046,4.185 -0.334,-1.301 -0.77,-2.585 -0.977,-3.906 -0.342,-2.174 -0.661,-4.366 -0.746,-6.561 -0.056,-1.446 0.191,-2.938 0.525,-4.357 0.581,-2.465 0.323,-4.89 0.025,-7.344 -0.239,-1.964 -0.363,-3.941 -0.538,-5.912 -0.158,-0.026 -0.316,-0.052 -0.474,-0.078 -0.222,0.95 -0.462,1.896 -0.662,2.85 -0.517,2.467 -0.859,4.983 -1.552,7.398 -1.909,6.649 -2.127,13.179 0.462,19.741 1.209,3.065 2.805,5.796 5.262,7.955 1.334,1.172 1.836,2.611 1.913,4.251 0.201,4.246 1.688,8.111 3.378,11.931 2.37,5.357 5.904,9.874 10.306,13.637 4.657,3.982 9.381,7.908 14.909,10.724 3.018,1.538 5.975,3.22 9.34,3.83 1.884,0.342 3.828,0.39 5.749,0.489 4.676,0.239 9.267,-0.222 13.499,-2.366 2.106,-1.068 4.25,-2.114 5.88,-3.996 1.583,-1.827 3.623,-3.279 5.079,-5.189 0,0 8.944,-10.611 3.084,-22.985"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" />
</g>
<g
id="g26"
transform="translate(74.6364,78.8385)">
<path
d="m 0,0 c 0,0 -21.828,-10.319 -23.168,-34.526 0,0 -14.265,-10.126 -6.797,-31.536 l 0.67,0.965 c 0,0 -6.51,17.745 6.989,29.8 0,0 4.116,22.663 22.306,35.297"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" />
</g>
<g
id="g30"
transform="translate(54.149,39.4908)">
<path
d="m 0,0 c 0,0 -2.681,-3.183 -3.542,-6.751 l -1.053,-0.578 c 0,0 -2.106,-5.69 0.574,-16.685 0,0 1.628,-8.294 -0.574,-13.598 0,0 5.84,0.082 1.244,16.781 0,0 -2.776,10.126 3.351,20.831"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32" />
</g>
<g
id="g34"
transform="translate(64.0098,34.3927)">
<path
d="m 0,0 c 0,0 -1.436,-4.257 -4.595,-7.728 0,0 -4.213,-3.279 -2.489,-24.014 l 1.206,1.821 c 0,0 0.517,5.412 1.187,9.173 l -1.628,-5.593 c 0,0 -0.095,12.826 3.255,18.516 0,0 3.064,5.041 3.064,7.825"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path36" />
</g>
<g
id="g38"
transform="translate(76.1682,7.9548)">
<path
d="m 0,0 c 0,0 1.34,1.543 -0.862,5.401 0,0 -2.872,4.05 -2.776,8.197 0,0 0.192,8.39 -1.149,10.994 0,0 -1.723,-12.633 2.489,-19.095 0,0 1.689,-2.749 1.235,-6.666 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path40" />
</g>
<g
id="g42"
transform="translate(110.5372,41.5161)">
<path
d="m 0,0 c 0,0 8.425,-8.583 6.51,-25.267 0,0 4.691,18.034 -6.51,25.267"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path44" />
</g>
<g
id="g46"
transform="translate(120.015,30.9076)">
<path
d="m 0,0 c 0,0 -0.574,-4.918 1.245,-10.223 0,0 1.148,3.569 -1.245,10.223"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path48" />
</g>
<g
id="g50"
transform="translate(53.1917,32.5471)">
<path
d="m 0,0 c 0,0 0.287,-2.122 0.957,-2.797 0,0 0.862,3.016 6.702,4.643 0,0 2.202,-3.003 -6.127,-10.911 0,0 -0.575,-0.965 -1.532,0.385 0,0 -0.8,2.271 -1.734,3.762 0,0 0.585,-0.483 1.734,0.289 0,0 -1.184,0.52 -1.734,3.182 0,0 0.106,0.772 1.734,1.447"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path52" />
</g>
<g
id="g54"
transform="translate(59.1273,31.9685)">
<path
d="m 0,0 -4.978,-4.34 c 0,0 1.053,-0.771 2.489,0 0,0 3.159,2.025 2.489,4.34"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.3 KiB

56
solopoolcom.svg Normal file
View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.0"
width="342px"
height="342px"
viewBox="0 0 342 342"
preserveAspectRatio="xMidYMid meet"
id="svg8"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8">
<linearGradient
id="linearGradient8">
<stop
style="stop-color:#fce003;stop-opacity:1;"
offset="0"
id="stop8" />
<stop
style="stop-color:#fa7902;stop-opacity:1;"
offset="1"
id="stop9" />
</linearGradient>
<linearGradient
xlink:href="#linearGradient8"
id="linearGradient9"
x1="177.41998"
y1="82.230019"
x2="177.41998"
y2="242.07001"
gradientUnits="userSpaceOnUse" />
</defs>
<g
fill="#08a1f8"
id="g7">
<path
d="M160.65 318.25 c-14.13 -8.18 -31.03 -17.93 -57.11 -32.96 -32.80 -18.87 -47.76 -27.52 -58.38 -33.73 l-7.08 -4.14 0 -33.06 0 -33.03 -1.90 0.20 c-11.26 1.24 -21.88 3.41 -31.33 6.38 -2 0.63 -3.94 1.24 -4.24 1.34 -0.57 0.17 -0.60 -0.23 -0.60 -5.28 l0 -5.44 2.94 -1.90 c12.29 -7.98 25.55 -13.79 39.44 -17.30 14.56 -3.67 33.26 -5.21 48.03 -3.97 8.08 0.67 25.45 3.47 26.22 4.24 0.13 0.13 0.27 10.82 0.27 23.78 0.03 22.11 0 23.55 -0.53 23.95 -0.77 0.57 -1.07 0.57 -11.09 0.60 -6.68 0 -8.48 0.10 -8.72 0.43 -0.17 0.27 -0.53 1.97 -0.87 3.84 -0.30 1.87 -1.77 9.99 -3.21 18 -1.44 8.05 -2.64 14.86 -2.64 15.13 0 0.43 2.64 0.50 21.14 0.57 l21.11 0.10 0.17 16.37 0.17 16.37 16.97 0.10 16.93 0.07 0 -16.20 0 -16.20 1.84 0 1.84 0 0.07 16.13 0.10 16.10 16.63 0.10 16.60 0.07 0 -16.27 c0 -8.98 0.13 -16.47 0.27 -16.67 0.13 -0.20 2.40 -0.60 5.08 -0.94 30.99 -3.67 48.49 -17 53.91 -40.91 0.43 -2.07 0.87 -3.84 0.94 -3.87 0.07 -0.07 2.97 0 6.45 0.17 6.51 0.30 18.20 -0.03 24.55 -0.67 9.02 -0.94 20.81 -3.04 29.02 -5.21 4.21 -1.14 16.53 -5.18 17.83 -5.84 0.53 -0.30 0.57 0.10 0.57 6.31 l0 6.68 -0.90 0.17 c-0.53 0.10 -2.07 0.94 -3.47 1.84 -7.78 5.11 -17.67 10.19 -26.02 13.43 -2.84 1.14 -5.84 2.30 -6.68 2.61 l-1.50 0.60 -0.10 13.69 -0.07 13.69 -2.94 1.70 c-1.60 0.90 -7.95 4.58 -14.09 8.12 -6.15 3.54 -20.04 11.59 -30.89 17.87 -10.82 6.25 -23.85 13.76 -28.89 16.70 -5.04 2.91 -12.26 7.08 -16.03 9.28 -3.77 2.20 -7.88 4.61 -9.18 5.34 -1.27 0.73 -5.48 3.17 -9.35 5.41 -18.17 10.52 -20.51 11.86 -20.94 11.86 -0.23 0 -4.88 -2.57 -10.29 -5.71z"
id="path5" />
<path
d="M166.32 192.11 c0 -9.45 0.13 -16.47 0.30 -16.57 0.17 -0.13 1.57 0.33 3.11 1 10.22 4.41 28.42 11.19 35.84 13.36 2.40 0.67 4.51 1.40 4.71 1.60 0.27 0.27 0.33 0.94 0.13 2.27 -0.83 5.78 -5.31 10.09 -13.03 12.42 -5.58 1.70 -7.75 1.94 -19.77 2.10 l-11.29 0.17 0 -16.37z"
id="path6" />
<path
d="M269.59 190.37 c-2.81 -0.13 -5.18 -0.33 -5.28 -0.43 -0.10 -0.10 -0.33 -1.74 -0.50 -3.64 -0.80 -8.55 -3.81 -16.87 -8.22 -22.81 -3.31 -4.44 -8.68 -9.05 -12.86 -11.05 -0.70 -0.33 -1.27 -0.70 -1.27 -0.83 0 -0.17 1.07 -1.57 2.34 -3.17 9.28 -11.59 11.05 -28.99 4.38 -42.78 -6.28 -12.96 -18.04 -20.94 -36.17 -24.61 -2.27 -0.43 -5.08 -0.94 -6.28 -1.07 -1.20 -0.10 -2.37 -0.37 -2.57 -0.57 -0.33 -0.23 -0.43 -4.07 -0.43 -17.13 l0 -16.83 -16.27 0.07 -16.30 0.10 -0.10 16.43 -0.07 16.47 -1.84 0 -1.84 0 -0.07 -16.43 -0.10 -16.47 -16.03 -0.10 c-8.82 -0.03 -16.37 0 -16.77 0.10 l-0.77 0.17 -0.07 16.63 -0.10 16.60 -19.94 0.17 c-13.39 0.10 -20.04 0.27 -20.31 0.53 -0.23 0.23 -0.30 5.51 -0.27 16.70 l0.10 16.33 11.76 0.17 c13.09 0.20 12.56 0.07 13.13 2.54 0.30 1.24 0.47 33.87 0.20 33.87 -0.07 0 -1.57 -0.30 -3.34 -0.67 -17.47 -3.57 -33.93 -4.44 -51.83 -2.64 -7.72 0.77 -18.47 2.71 -23.25 4.17 -0.57 0.17 -0.60 -1.30 -0.60 -27.89 l0 -28.09 1.30 -0.80 c0.73 -0.47 6.41 -3.77 12.62 -7.31 12.46 -7.18 15.23 -8.75 30.36 -17.50 5.71 -3.34 11.22 -6.48 12.19 -7.05 1 -0.53 9.18 -5.24 18.17 -10.42 9.02 -5.18 19 -10.95 22.21 -12.79 3.21 -1.84 9.02 -5.18 12.86 -7.41 3.87 -2.24 10.59 -6.11 14.93 -8.65 l7.95 -4.58 1.07 0.57 c0.60 0.30 4.04 2.24 7.61 4.31 3.57 2.07 9.52 5.48 13.19 7.58 3.67 2.10 8.12 4.68 9.85 5.68 3.11 1.80 8.35 4.81 24.55 14.13 4.41 2.54 9.45 5.44 11.19 6.45 4.68 2.71 17.03 9.82 23.55 13.59 21.21 12.19 40.55 23.48 41.18 23.95 0.30 0.27 0.40 10.15 0.40 47.39 l0 47.03 -1.74 0.33 c-2.97 0.57 -9.89 1.37 -14.96 1.70 -5.28 0.37 -9.12 0.37 -16.97 0z"
id="path7" />
</g>
<g
fill="#fdb50d"
id="g8"
style="fill:url(#linearGradient9)">
<path
d="M138.84 272.30 c-0.13 -0.10 -0.23 -7.55 -0.23 -16.53 l0 -16.30 -20.54 0 -20.57 0 0.20 -1.07 c1.97 -11.46 4.24 -23.15 4.51 -23.48 0.27 -0.33 2.17 -0.47 7.78 -0.60 8.38 -0.13 9.38 -0.37 11.32 -2.37 2.40 -2.44 2.27 0.60 2.27 -51.13 0 -41.21 -0.07 -46.66 -0.53 -48.23 -0.70 -2.40 -2.64 -4.48 -5.08 -5.44 -1.77 -0.67 -2.57 -0.73 -10.69 -0.87 l-8.75 -0.13 0.07 -10.05 0.10 -10.09 19.71 -0.17 c10.85 -0.10 19.91 -0.30 20.14 -0.43 0.30 -0.20 0.40 -3.94 0.40 -16.77 0 -14.70 0.07 -16.50 0.53 -16.67 0.30 -0.10 4.94 -0.20 10.35 -0.20 l9.82 0 0 16.50 0 16.47 2.27 0.20 c1.24 0.13 4.88 0.23 8.12 0.23 4.54 0 5.98 -0.10 6.28 -0.43 0.23 -0.33 0.40 -5.38 0.43 -16.63 l0.10 -16.16 9.79 -0.10 9.75 -0.07 0 16.83 0 16.83 2.27 0.20 c21.17 1.90 34.63 8.08 41.75 19.20 3.97 6.18 5.94 15 5.11 22.54 -1 8.95 -4.28 15.26 -11.59 22.44 l-4.11 4.04 2.24 0.77 c13.86 4.78 21.84 13.83 24.68 27.95 0.80 4.07 0.80 13.79 0 17.87 -1.37 6.81 -3.64 12.59 -6.81 17.40 -2.07 3.14 -7.58 8.78 -10.59 10.85 -2.81 1.94 -6.68 3.94 -10.39 5.34 -6.18 2.37 -16.33 4.51 -24.71 5.28 -3.31 0.27 -6.25 0.63 -6.51 0.77 -0.43 0.23 -0.53 2.50 -0.67 16.27 l-0.17 16 -10.05 0.10 -10.09 0.07 -0.23 -7.25 c-0.13 -4.01 -0.13 -9.75 -0.03 -12.79 0.13 -3.07 0.13 -7.01 0 -8.78 l-0.23 -3.24 -7.95 0 c-5.58 0 -8.02 0.10 -8.18 0.37 -0.23 0.40 -0.40 8.98 -0.43 23.11 l-0.03 8.58 -10.29 0 c-5.68 0 -10.42 -0.10 -10.52 -0.23z m54.57 -58.48 c5.84 -1.14 7.65 -1.70 11.32 -3.47 3.04 -1.47 3.87 -2.07 6.38 -4.58 4.44 -4.48 6.25 -9.05 5.88 -15.10 -0.60 -9.75 -7.18 -16.13 -19.84 -19.30 -6.95 -1.74 -8.78 -1.87 -23.48 -1.87 l-13.86 0 -0.10 22.64 -0.07 22.68 15.10 -0.13 c13.73 -0.13 15.46 -0.23 18.67 -0.87z m-8.28 -65.66 c7.58 -0.97 14.29 -3.87 18.07 -7.88 3.51 -3.77 4.88 -7.18 4.88 -12.36 0 -10.09 -7.15 -16.50 -20.87 -18.87 -2.40 -0.40 -5.41 -0.50 -15.03 -0.43 l-12.02 0.10 -0.23 1.84 c-0.27 2.44 -0.33 37.57 -0.03 37.84 0.43 0.47 21.21 0.23 25.25 -0.23z"
id="path8"
style="fill:url(#linearGradient9)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

1
ultimuspool.light.svg Normal file
View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="453.543" height="120mm" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path style="fill:#e2e8f0;stroke:#cbd5e1;stroke-width:.236232" transform="translate(-37.298 -116.055)" d="M157.18 176.055a59.882 59.882 0 0 1-59.882 59.882 59.882 59.882 0 0 1-59.882-59.882 59.882 59.882 0 0 1 59.882-59.882 59.882 59.882 0 0 1 59.882 59.882z"/><g style="font-size:107.89px;font-family:serif;-inkscape-font-specification:serif;fill:#1652ee;stroke:#1652ee;stroke-width:.561929"><path d="M85.79 82.063q0 7.984-3.56 14.457-3.453 6.365-10.573 10.142-7.013 3.668-17.802 3.668-15.32 0-23.304-7.768-7.984-7.876-7.984-20.715v-49.63h16.291v47.148q0 9.495 3.884 13.379 3.884 3.884 11.544 3.884 7.984 0 11.545-4.208 3.668-4.208 3.668-13.162v-47.04H85.79z" style="font-weight:700;font-family:&quot;Noto Sans&quot;;-inkscape-font-specification:&quot;Noto Sans Bold&quot;" transform="scale(1.11745 .8949)" aria-label="U"/></g></svg>

After

Width:  |  Height:  |  Size: 982 B

1
unknown.light.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="5.27 3 13.48 18"> <path d="M5.6417 18.3696C5.15834 17.8871 5.15833 17.113 5.64169 16.6304C7.26992 15.0051 9.51761 14 12 14C14.4825 14 16.7301 15.005 18.3583 16.6304C18.8417 17.1129 18.8417 17.8871 18.3584 18.3696C16.7301 19.9949 14.4824 21 12 21C9.51759 21 7.26993 19.995 5.6417 18.3696Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M8.50003 7.5H15.5V8H16C16 10.6372 14.3188 13 12 13C9.68123 13 8.00003 10.6372 8.00003 8H8.50003V7.5ZM9.02273 8.5C9.21266 10.5678 10.5658 12 12 12C13.4343 12 14.7874 10.5678 14.9773 8.5H9.02273Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C14.4853 3 16.5 5.23858 16.5 8H7.50003C7.50003 5.23858 9.51475 3 12 3ZM12 7.5C12.8285 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8285 4.5 12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M6.50003 8.5C6.50003 8.22386 6.72389 8 7.00003 8H17C17.2762 8 17.5 8.22386 17.5 8.5C17.5 8.77614 17.2762 9 17 9H7.00003C6.72389 9 6.50003 8.77614 6.50003 8.5Z" fill="#707070"></path> </svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

28
whitepool.light.svg Normal file
View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 49.200001 39.7"
xml:space="preserve"
width="49.200001"
height="39.700001"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs191" />
<style
type="text/css"
id="style182">
.st0{fill:#EABC4C;}
.st1{fill:#181834;}
</style>
<path
class="st1"
d="M 38.6,0.1 C 33.8,0.1 29.9,4 29.9,8.8 H 19.4 L 28.1,0.1 H 17.5 C 12.7,0.1 8.8,4 8.8,8.8 v 0 H 8.7 C 3.9,8.8 0,12.7 0,17.5 H 8.8 V 24 c 0,8.7 7.1,15.7 15.7,15.7 h 16 V 8.7 L 49.2,0 Z m -9.1,23 c -1.3,-1.3 -1.3,-3.4 0,-4.7 l 4.7,4.7 c -1.3,1.3 -3.4,1.3 -4.7,0 z"
id="path186"
style="fill:#181834;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 864 B