Merge pull request #2592 from XRPLF/add-new-tokenization-page

add tokenization page
This commit is contained in:
Rome Reginelli
2024-06-21 17:04:56 -07:00
committed by GitHub
25 changed files with 1924 additions and 84 deletions

View File

@@ -878,7 +878,7 @@ export default function Uses() {
</div>
{/* cards */}
<div
className="right row col row-cols-lg-2 m-0 p-0"
className="right row col row-cols-lg-2 m-2 p-0"
id="use_case_companies_list"
>
{filteredCards.map((card) => (

View File

@@ -1,5 +1,6 @@
import * as React from 'react';
import { useTranslate } from '@portal/hooks';
import { NavList } from "shared/components/nav-list";
export const frontmatter = {
seo: {
@@ -164,15 +165,7 @@ function UseCasesCard(props: {
<div className="col">
<img className={'use-cases-img img-fluid mb-2 shadow ' + useCase.imgClass} alt={useCase.title} id={useCase.id} />
<h5 className="mt-4">{useCase.title}</h5>
<ul className="nav flex-column">
{useCase.subItems.map(item => (
<li key={item.link} className="nav-item">
<a href={item.link} className="nav-link">
{item.description}
</a>
</li>
))}
</ul>
<NavList pages={useCase.subItems} />
</div>
);
}
@@ -386,15 +379,7 @@ export default function Docs() {
<div className="row card-grid card-grid-2xN">
<div className="col" id="popular-topics">
<h2 className="h4">{translate('Browse By Recommended Pages')}</h2>
<ul className="nav flex-column">
{recommendedPages.map(page => (
<li className="nav-item" key={page.link}>
<a href={page.link} className="nav-link">
{translate(page.description)}
</a>
</li>
))}
</ul>
<NavList pages={recommendedPages} />
</div>
<div className="col">
<div className="card cta-card p-8-sm p-10-until-sm br-8">

View File

@@ -1,15 +0,0 @@
---
html: tokenization.html
parent: use-cases.html
top_nav_grouping: Article Types
metadata:
indexPage: true
seo:
description: Work with a variety of tokens supported by the XRP Ledger.
---
# Tokenization
Work with a variety of tokens supported by the XRP Ledger.
{% child-pages /%}

View File

@@ -0,0 +1,400 @@
import React, { useRef, useState } from "react";
import { useTranslate } from "@portal/hooks";
import { NavList } from "shared/components/nav-list";
import { Link } from '@portal/Link';
const { translate } = useTranslate();
export const frontmatter = {
seo: {
title: "Tokenization",
description:
"Explore the possibilities of tokenization on the XRP Ledger, revolutionizing ownership, transactions, and value exchange with unparalleled efficiency and security.",
},
};
const useCases = [
{
description: "Stablecoin Issuer",
link: "/docs/use-cases/tokenization/stablecoin-issuer/",
},
{
description: "NFT Marketplace",
link: "/docs/use-cases/tokenization/nftoken-marketplace/",
},
{
description: "Authorized Minter",
link: "/docs/use-cases/tokenization/authorized-minter/",
},
{
description: "Digital Artist",
link: "/docs/use-cases/tokenization/digital-artist/",
},
];
const securityAdvantages = [
{
id: "trustlines",
title: "Trust Lines & Authorized Trust Lines",
description: (
<>
<Link to="/docs/concepts/tokens/fungible-tokens/"><h5 className="card-subhead">{translate("Trust Lines:")}</h5></Link>
<div className="card-text">
{translate("No spamming of wallets without permission.")}
</div>
<Link to="/docs/concepts/tokens/fungible-tokens/authorized-trust-lines/"><h5 className="card-subhead">{translate("Authorized Trustlines:")}</h5></Link>
<div className="card-text">
{translate(
"Control who can hold your tokens with allowlisting."
)}
</div>
</>
),
},
{
id: "freeze-clawbacks",
title: "Freeze & Clawbacks",
description: (
<>
<Link to="/docs/concepts/tokens/fungible-tokens/"><h5 className="card-subhead">{translate("Freeze:")}</h5></Link>
<div className="card-text">
{translate(
"If you see signs of suspicious activity, you can suspend trading of your token while investigating the issue."
)}
</div>
<Link to="/docs/concepts/tokens/fungible-tokens/clawing-back-tokens/"><h5 className="card-subhead">{translate("Clawback:")}</h5></Link>
<div className="card-text">
{translate(
"Recover tokens distributed to accounts in error: for example, reclaim funds sent to an account sanctioned for illegal activity."
)}
</div>
</>
),
},
{
id: "ntf-tokens",
title: "Non-transferable Tokens",
description: (
<>
<Link to="/docs/concepts/tokens/nfts/non-transferable-tokens/"><h5 className="card-subhead">{translate("Transferable flag:")}</h5></Link>
{translate(
"Native support for nontransferable items such as identity tokens, airline credits, and consumer rewards, honored by all on-chain participants."
)}
</>
),
},
{
id: "royalties",
title: "Royalties",
subtitle: "Secures Creator Compensation:",
description: (
<>
<Link to="/docs/references/protocol/data-types/nftoken/#transferfee"><h5 className="card-subhead">{translate("NFT Transfer Fees:")}</h5></Link>
{translate(
"Reliably collect your percentage of the sale price of your tokens."
)}
</>
),
},
];
const stats = [
{
id: "nfts-minted",
stat: "20K",
description: "NFTs minted",
},
{
id: "nft-trading-vol",
stat: "~1000",
description: "NFT trading volume",
},
{
id: "network-speed",
stat: "0.4",
description: "Network speed (sec)",
},
{
id: "fee-per-tx",
stat: "$0.001",
description: "Avg fee per NFT tx",
},
];
const projects = [
{
id: "xrpcafe",
label: "XRP cafe",
url: "https://xrp.cafe",
},
{
id: "onXRP",
label: "onXRP",
url: "https://nft.onxrp.com",
},
{
id: "xaman",
label: "Xaman labs",
url: "https://github.com/XRPL-Labs/Xaman-App",
},
{
id: "amy",
label: "amy.network",
url: "https://token.amy.network",
},
{
id: "sologenic",
label: "Sologenic",
url: "https://sologenic.org/trade",
},
{
id: "carbonland",
label: "Carbonland trust",
url: "https://www.carbonlandtrust.com",
},
{
id: "nautilus",
label: "Nautilus wallet",
url: "https://github.com/nautls/nautilus-wallet",
},
{
id: "evernode",
label: "Evernode",
url: "https://evernode.org",
},
{
id: "raised-in-space",
label: "Raised in space",
url: "https://raisedinspace.com",
},
];
const articles = [
{
time: "JAN 2024",
title: "XRP Price Prediction: Will Ripple Make Waves in 2024?",
url: "https://www.forbes.com/advisor/au/investing/cryptocurrency/xrp-price-prediction",
},
{
time: "JAN 2024",
title: "XRP Could Surge Massively in 2024",
url: "https://u.today/xrp-could-surge-massively-at-beginning-of-2024-heres-why",
},
{
time: "NOV 2023",
title: "NFTs and the XRPL: A Marriage of Art and Technology",
url: "https://medium.com/@MariaSolorzano/title-nfts-and-the-xrpl-a-marriage-of-art-and-technology-cf76a0432693",
},
];
const FeaturedProjects = () => {
const [currentIndex, setCurrentIndex] = useState(0);
const handlePrev = () => {
if (currentIndex > 0) {
setCurrentIndex(currentIndex - 1);
}
};
const handleNext = () => {
if (currentIndex < projects.length - 3) {
setCurrentIndex(currentIndex + 1);
}
};
const ProjectCard = ({ project, index }) => (
<a
className={`col card float-up-on-hover ${
index % 2 === 0 ? "even" : "odd"
}`}
target="_blank"
href={project.url}
>
<div className="project-logo d-flex justify-content-center align-items-center mb-8">
<img className={project.id} alt={project.label} />
</div>
<div className="project-name h5 align-self-center">{project.label}</div>
</a>
);
return (
<div className="featured-projects">
<div className="project-cards-container card-grid card-grid-3xN">
<ProjectCard project={projects[currentIndex]} index={currentIndex} />
<ProjectCard
project={projects[currentIndex + 1]}
index={currentIndex + 1}
/>
<ProjectCard
project={projects[currentIndex + 2]}
index={currentIndex + 2}
/>
</div>
<div className="arrow-wrapper d-flex justify-content-center mt-16">
<button
className={`arrow-button prev ${
currentIndex > 0 ? "hover-color" : ""
}`}
onClick={handlePrev}
>
<img alt="left arrow" />
</button>
<button
className={`arrow-button next ${
currentIndex < projects.length - 3 ? "hover-color" : ""
}`}
onClick={handleNext}
>
<img alt="right arrow" />
</button>
</div>
</div>
);
};
export default function Tokenization() {
const modalRef = useRef(null);
return (
<div className="landing page-tokenization">
<div className="position-relative"></div>
<div className="position-relative d-none-sm"></div>
<section className="container-new mt-lg-16">
<div className="card-grid card-grid-2xN">
<div className="col">
<img className="tokenization-graphic mw-100 hide-md" />
</div>
<div className="col">
<div className="d-flex flex-column-reverse">
<img className="tokenization-graphic mw-100 show-md" />
<h2 className="h4 h2-sm mb-10">
{translate(
"Work with a variety of tokens supported by the XRP Ledger."
)}
</h2>
<h6 className="eyebrow mb-3 text-large">
{translate("Tokenization")}
</h6>
</div>
<p className="mb-10">
{translate(
"Explore the possibilities of tokenization on the XRP Ledger, revolutionizing ownership, transactions, and value exchange with unparalleled efficiency and security."
)}
</p>
<div className="tokenization-color-bar" />
<div className="mb-10">
<NavList pages={useCases} bottomBorder={false} />
</div>
<div className="d-flex">
<a
className="btn btn-primary d-inline-flex align-items-center"
href="/docs"
>
{translate("Quick Start")}
</a>{" "}
<a
className="ml-4 video-external-link btn-none"
target="_blank"
href="https://www.youtube.com/playlist?list=PLJQ55Tj1hIVZtJ_JdTvSum2qMTsedWkNi"
>
<i className="fa fa-video-camera" />
<span className="link-text">{translate("Learn more")}</span>
</a>
</div>
</div>
</div>
</section>
<section className="container-new py-20">
<div className="d-flex flex-column-reverse">
<p className="mb-16">
{translate(
"Check out the security features you can tap into right from the chain without the hassle of piecing together smart contracts."
)}
</p>
<h4 className="eyebrow mb-8">{translate("Security advantages")}</h4>
</div>
<div
className="security-card-grid nav card-grid"
id="security-features"
>
{securityAdvantages.map((advantage) => (
<div className="security-card" key={advantage.id}>
<div className="card-body p-6">
<h4 className="card-title h6">{translate(advantage.title)}</h4>
<div>{advantage.description}</div>
</div>
</div>
))}
</div>
</section>
<section className="container-new py-20">
<div className="d-flex flex-column-reverse">
<h4 className="eyebrow mb-16">{translate("Stats")}</h4>
</div>
<div className="tokenization-stats">
{stats.map((statElement) => (
<div
className="stat-container align-items-center"
key={statElement.id}
>
<div className="stat">{statElement.stat}</div>
<div className="desc">{translate(statElement.description)}</div>
</div>
))}
</div>
</section>
<section className="container-new py-20">
<div className="d-flex flex-column-reverse">
<h4 className="eyebrow mb-16">
{translate("Featured real world projects")}
</h4>
</div>
<div className="project-cards">
<FeaturedProjects />
</div>
</section>
<section className="container-new py-20">
<div className="d-flex flex-column-reverse">
<h4 className="eyebrow mb-16">{translate("Related Articles")}</h4>
</div>
<div className="related-articles card-grid card-grid-3xN mb-16">
{articles.map((article, index) => (
<div className="article-card-container" key={`article-${index}`}>
<div className="article-card-background" />
<a
className="article-card col p-8 float-up-on-hover"
target="_blank"
href={article.url}
>
<div className="time h4 normal mb-8">
{translate(article.time)}
</div>
<div className="h5 mb-4">{translate(article.title)}</div>
<div className="btn btn-primary btn-arrow-out">
{translate("Read More")}
</div>
</a>
</div>
))}
</div>
<div className="more-related">
<div className="d-flex flex-column-reverse">
<h4 className="eyebrow mb-16">
{translate("More related articles")}
</h4>
</div>
<div className="video-external-link">
<a href="https://coincodecap.com/ripple-xrp">
{translate(
"Ripple (XRP): A Dive into its Working, Tokenomics, Price Factor and SEC Lawsuit"
)}
</a>
</div>
<div className="subtitle">{translate("November 2023")}</div>
</div>
</section>
</div>
);
}

33
package-lock.json generated
View File

@@ -3780,11 +3780,11 @@
}
},
"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==",
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dependencies": {
"fill-range": "^7.1.1"
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
@@ -4928,9 +4928,9 @@
"integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw=="
},
"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==",
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
"dependencies": {
"to-regex-range": "^5.0.1"
},
@@ -5034,19 +5034,6 @@
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
"peer": true
},
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"hasInstallScript": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
@@ -11126,9 +11113,9 @@
}
},
"node_modules/ws": {
"version": "8.17.1",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
"integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
"version": "8.14.2",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz",
"integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==",
"engines": {
"node": ">=10.0.0"
},

View File

@@ -0,0 +1,35 @@
import React from "react";
import { useTranslate } from "@portal/hooks";
interface PageProps {
description: string;
link: string;
}
interface NavListProps {
pages: PageProps[];
bottomBorder?: boolean;
}
export const NavList: React.FC<NavListProps> = ({
pages,
bottomBorder = true,
}) => {
const { translate } = useTranslate();
return (
<ul className="nav flex-column">
{pages.map((useCase, index) => (
<li className="nav-item" key={useCase.link}>
<a
href={useCase.link}
className={`nav-link ${
index === pages.length - 1 && !bottomBorder ? "border-none" : ""
}`}
>
{translate(useCase.description)}
</a>
</li>
))}
</ul>
);
};

View File

@@ -21,7 +21,8 @@
- page: docs/use-cases/payments/peer-to-peer-payments-uc.md
- page: docs/use-cases/payments/restricting-deposits-uc.md
- page: docs/use-cases/payments/smart-contracts-uc.md
- page: docs/use-cases/tokenization/index.md
- page: docs/use-cases/tokenization/index.page.tsx
label: Tokenization
expanded: false
items:
- page: docs/use-cases/tokenization/stablecoin-issuer.md
@@ -36,6 +37,7 @@
items:
- page: docs/use-cases/defi/algorithmic-trading.md
- page: docs/use-cases/defi/list-xrp-as-an-exchange.md
- page: docs/concepts/index.md
expanded: false
items:

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 89 KiB

View File

@@ -0,0 +1,5 @@
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="chevron-down">
<path id="Vector" d="M7.5 5.09106L12.5 10.0911L7.5 15.0911" stroke="#7919FF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 275 B

View File

@@ -0,0 +1,5 @@
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="chevron-down">
<path id="Vector" d="M12.5 5.09106L7.5 10.0911L12.5 15.0911" stroke="#838386" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 276 B

View File

@@ -0,0 +1,3 @@
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 5.09106L7.5 10.0911L12.5 15.0911" stroke="#111112" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 237 B

8
static/img/logos/amy.svg Normal file
View File

@@ -0,0 +1,8 @@
<svg width="150" height="48" viewBox="0 0 150 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="amy logo">
<path id="Vector" d="M106.5 31.592C106.544 32.567 106.189 33.4107 105.435 34.1192C104.681 34.8277 103.816 35.1826 102.842 35.1826C101.866 35.1826 101.013 34.8612 100.282 34.2197C99.549 33.5768 99.1834 32.7679 99.1834 31.7915V18.7549C99.1834 16.0509 98.183 13.7219 96.1861 11.7705C94.1879 9.81921 91.7852 8.84421 88.974 8.84421C86.8673 8.84421 84.9455 9.43215 83.2111 10.6067C81.4754 11.7826 80.2352 13.3 79.4892 15.163C79.0941 16.1393 78.8973 16.8263 78.8973 17.2241C78.8973 18.9545 78.8973 21.2822 78.8973 24.2085C78.8973 27.6679 78.8973 29.9955 78.8973 31.1929C78.8973 32.2134 78.5196 33.1335 77.7656 33.9531C77.0115 34.7728 76.1035 35.1826 75.0388 35.1826C74.0624 35.1826 73.2093 34.8625 72.4781 34.2223C71.7468 33.5808 71.3812 32.7518 71.3812 31.7326V18.7951C71.3812 18.6183 71.3812 18.3531 71.3812 17.9996C71.3812 17.646 71.3812 17.3808 71.3812 17.2027C71.3812 16.7165 71.2044 16.0094 70.8535 15.0799C70.1075 13.1339 68.8553 11.5643 67.0981 10.3697C65.3423 9.17501 63.3883 8.57769 61.2374 8.57769C58.4263 8.57769 56.033 9.54063 54.0575 11.4638C52.0807 13.3884 51.0937 15.7214 51.0937 18.463C51.0937 18.4201 51.0937 22.6656 51.0937 31.2022C51.0937 32.1746 50.716 33.0156 49.9633 33.7228C49.208 34.4313 48.3441 34.7848 47.3691 34.7848C46.3928 34.7848 45.5397 34.4621 44.8084 33.8205C44.0758 33.1777 43.7102 32.3674 43.7102 31.3924V18.3558C43.7102 13.6991 45.4084 9.7201 48.8035 6.41608C52.1999 3.1134 56.3169 1.46072 61.1557 1.46072C66.9709 1.46072 71.6544 3.70001 75.2048 8.17858C78.6669 3.96653 83.2165 1.85983 88.8548 1.85983C93.6937 1.85983 97.8428 3.51251 101.305 6.81519C104.768 10.1192 106.5 14.121 106.5 18.8205C106.5 18.7777 106.5 23.0339 106.5 31.592Z" fill="white"/>
<path id="Vector_2" d="M150 15.2554C150 20.3848 148.519 24.763 145.558 28.3871C142.598 32.0138 138.624 34.1808 133.638 34.888V44.1732C133.638 45.1455 133.296 45.9746 132.616 46.6603C131.936 47.3446 131.112 47.6888 130.145 47.6888C129.178 47.6888 128.354 47.3446 127.674 46.6589C126.994 45.9719 126.654 45.1429 126.654 44.1679V34.8692C121.752 34.1179 117.832 31.9362 114.895 28.3281C111.958 24.7188 110.49 20.346 110.49 15.2098V4.71519C110.49 3.74153 110.842 2.92188 111.545 2.2576C112.247 1.59331 113.06 1.26117 113.983 1.26117C114.95 1.26117 115.772 1.60403 116.452 2.28974C117.134 2.97679 117.474 3.80581 117.474 4.77813V15.1951C117.474 19.0884 118.641 22.1955 120.976 24.5179C123.311 26.8388 126.41 28 130.279 28C134.147 28 137.237 26.8429 139.548 24.5259C141.86 22.2089 143.016 19.1085 143.016 15.2259V4.76876C143.016 3.79778 143.358 2.97144 144.047 2.28706C144.734 1.60403 145.566 1.26117 146.541 1.26117C147.516 1.26117 148.337 1.60403 149.002 2.28974C149.668 2.97546 150 3.80313 150 4.77679V15.2554Z" fill="white"/>
<path id="Vector_3" d="M23.3464 1.18215C28.2321 1.88795 32.1683 4.11653 35.1054 7.72456C38.0424 11.3326 39.5089 15.7067 39.5089 20.8429V31.3362C39.5089 32.3112 39.158 33.1308 38.4549 33.7938C37.7531 34.458 36.9402 34.7902 36.0174 34.7902C35.0504 34.7902 34.2281 34.4473 33.5464 33.7616C32.8661 33.0759 32.5259 32.2469 32.5259 31.2746V20.8576C32.5259 16.9643 31.358 13.8558 29.0237 11.5348C26.6893 9.21251 23.5902 8.05135 19.721 8.05135C15.8531 8.05135 12.7634 9.20983 10.4518 11.5268C8.14018 13.8424 6.98438 16.9429 6.98438 20.8255V31.2839C6.98438 32.2536 6.64152 33.0813 5.95313 33.7656C5.26607 34.4487 4.43437 34.7902 3.45937 34.7902C2.48438 34.7902 1.66339 34.4473 0.997768 33.763C0.332143 33.0772 0 32.2482 0 31.2759V20.7973C0 15.6665 1.48125 11.2897 4.44241 7.66429C7.40223 4.03885 11.3759 1.87188 16.3621 1.16474C16.3621 1.16474 17.2487 0.908936 19.9299 0.908936C19.9299 0.908936 22.4585 1.05358 23.3464 1.18215Z" fill="white"/>
<path id="Vector_4" d="M26.1347 21.5098C26.1347 25.0335 23.278 27.8902 19.7544 27.8902C16.2307 27.8902 13.374 25.0335 13.374 21.5098C13.374 17.9862 16.2307 15.1295 19.7544 15.1295C23.278 15.1295 26.1347 17.9862 26.1347 21.5098Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,24 @@
<svg width="180" height="32" viewBox="0 0 180 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="trustwhitelogo">
<g id="Gruppe 21">
<path id="Pfad 96" d="M5.36806 6.27706C3.27736 8.36374 1.50928 10.7503 0.12207 13.3582C0.712452 10.3079 2.20192 7.50408 4.39889 5.30728C6.59585 3.11049 9.39981 1.62122 12.4501 1.03107C9.84192 2.4182 7.45503 4.18628 5.36806 6.27706Z" fill="white"/>
<path id="Pfad 97" d="M1.58481 18.6759C1.25378 19.6302 0.978265 20.6028 0.759635 21.5889C0.403953 20.6005 0.149439 19.5787 0 18.5389C1.3623 14.4301 3.66572 10.6964 6.72661 7.63555C9.78751 4.57466 13.5212 2.27123 17.63 0.908936C18.6696 1.05845 19.6913 1.31296 20.6795 1.66857C16.3108 2.64035 12.2631 4.71307 8.92104 7.68979C5.579 10.6665 3.0536 14.4483 1.58481 18.6759Z" fill="white"/>
<path id="Pfad 98" d="M3.81958 24.2087C3.73887 24.7998 3.68152 25.3931 3.64754 25.9888C3.63161 26.2646 3.47868 26.3151 3.30436 26.1007C2.92604 25.6347 2.57514 25.147 2.25343 24.6402C2.23173 24.6019 2.22161 24.5581 2.2243 24.5141C2.44648 22.573 2.90172 20.6657 3.58018 18.8334C4.79696 15.5508 6.71096 12.5709 9.19029 10.0992C10.9137 8.37243 12.8871 6.91482 15.0443 5.77535C16.9786 4.75527 19.0422 4.00198 21.1788 3.53604C21.98 3.36098 22.7895 3.22654 23.6042 3.13324C23.6482 3.13054 23.692 3.14066 23.7303 3.16237C24.2372 3.484 24.7249 3.83491 25.1909 4.2133C25.4053 4.38762 25.3547 4.54054 25.0789 4.55647C24.4842 4.59046 23.891 4.64781 23.2993 4.72852C18.3688 5.39838 13.7938 7.66627 10.2753 11.1847C6.75688 14.7032 4.48945 19.2781 3.81958 24.2087Z" fill="white"/>
<path id="Pfad 99" d="M27.6847 25.854C28.9656 24.2044 29.9021 22.3143 30.4387 20.296C30.9754 18.2776 31.1012 16.172 30.8088 14.104C30.6204 12.7736 30.2604 11.4732 29.7379 10.2353C29.4275 9.50035 29.0604 8.79061 28.6401 8.11252C28.2998 7.56262 27.9252 7.03467 27.5186 6.5318C27.4818 6.49104 27.4312 6.46541 27.3766 6.45989C26.7136 6.42955 26.05 6.42955 25.3858 6.45989C24.5215 6.50128 23.6607 6.59644 22.8083 6.74481C18.5783 7.47877 14.6785 9.50213 11.6427 12.5379C8.60693 15.5737 6.58358 19.4735 5.84962 23.7035C5.70115 24.5559 5.60599 25.4167 5.5647 26.281C5.53162 26.9731 5.53284 27.6657 5.56834 28.3587C6.09135 28.7864 6.64189 29.1793 7.21642 29.5348C7.89445 29.9553 8.60419 30.3223 9.33921 30.6326C12.8913 32.1293 16.8715 32.259 20.5135 30.9967C21.6267 30.6107 22.6921 30.0987 23.689 29.4706C24.6722 28.8499 25.5833 28.1215 26.4053 27.2991C26.8611 26.8442 27.2884 26.3616 27.6847 25.854ZM24.4873 26.9714C22.2146 28.9086 19.3815 30.0675 16.4026 30.2785C14.4748 30.4165 12.5392 30.1553 10.7169 29.5111C9.41867 29.0519 8.19573 28.4027 7.08807 27.5845C7.06542 26.1385 7.20496 24.6946 7.50407 23.2797C7.6705 22.4898 7.88683 21.7111 8.15174 20.9485C9.10722 18.195 10.6743 15.6939 12.7351 13.6331C14.796 11.5722 17.2971 10.0051 20.0506 9.04966C21.4201 8.57538 22.8386 8.2563 24.2793 8.09841C25.0792 8.01071 25.8838 7.97301 26.6884 7.98553C27.9315 9.66883 28.7798 11.6104 29.1703 13.6662C29.4963 15.3799 29.501 17.1393 29.1844 18.8548C29.0672 19.4906 28.906 20.1175 28.702 20.7309C28.3305 21.8483 27.8189 22.9141 27.1795 23.9028C26.8448 24.42 26.4763 24.9145 26.0762 25.383C25.835 25.6661 25.5807 25.9414 25.3134 26.2091C25.0461 26.4767 24.7707 26.7308 24.4873 26.9714Z" fill="white"/>
<path id="Pfad 100" d="M24.1655 24.6188C24.1705 24.6148 24.1778 24.6079 24.1819 24.6034C24.9506 23.7927 25.603 22.8791 26.1204 21.8889C26.9232 20.3485 27.3841 18.6531 27.4717 16.9183C27.5048 16.2698 27.486 15.6198 27.4153 14.9743C27.2246 13.2211 26.6513 11.5311 25.7358 10.0237C25.7161 9.9957 25.6901 9.9728 25.6597 9.95695C25.6294 9.94111 25.5957 9.9328 25.5615 9.93271C25.0129 9.9585 24.4667 10.0104 23.9229 10.0884C23.2053 10.1908 22.4948 10.3381 21.7956 10.5294C21.2396 10.6809 20.6917 10.8605 20.1539 11.0674C16.9885 12.2835 14.2484 14.3998 12.272 17.1553C10.2955 19.9107 9.16918 23.1846 9.03198 26.5728C10.5636 27.5222 12.2882 28.1169 14.0795 28.3133C15.2387 28.4399 16.4101 28.3994 17.5577 28.1931C18.7559 27.9771 19.9144 27.581 20.9941 27.0184C21.9844 26.5012 22.898 25.8488 23.7086 25.0799C23.7131 25.0758 23.7199 25.0685 23.724 25.0635C23.79 24.9843 23.8606 24.9065 23.9357 24.8323C24.0108 24.7581 24.0863 24.6848 24.1655 24.6188ZM21.5635 24.8532C19.9284 26.0318 17.9892 26.7157 15.9766 26.8236C14.1763 26.9228 12.3806 26.5583 10.7615 25.7649C10.7274 25.7459 10.6993 25.7177 10.6804 25.6835C10.6616 25.6493 10.6528 25.6105 10.655 25.5715C11.0431 21.9855 12.6452 18.64 15.1957 16.0896C17.7461 13.5391 21.0917 11.937 24.6776 11.5489C24.7166 11.5467 24.7554 11.5555 24.7896 11.5743C24.8238 11.5932 24.8521 11.6213 24.871 11.6554C25.1479 12.22 25.3735 12.8083 25.5451 13.4132C26.0065 15.0472 26.0689 16.768 25.7271 18.4312C25.4288 19.8839 24.8258 21.2569 23.958 22.4596C23.2927 23.3799 22.4846 24.1879 21.5644 24.8532H21.5635Z" fill="white"/>
<path id="Pfad 101" d="M21.7588 22.1109C22.76 21.0129 23.4607 19.6749 23.793 18.2266C24.1254 16.7783 24.0781 15.2688 23.6558 13.8441C23.6418 13.797 23.6107 13.7569 23.5686 13.7316C23.5264 13.7064 23.4764 13.6978 23.4283 13.7075C22.9825 13.804 22.541 13.9228 22.1038 14.0639C20.0137 14.7431 18.1139 15.9073 16.5599 17.4614C15.0059 19.0154 13.8417 20.9151 13.1625 23.0052C13.0214 23.4419 12.9026 23.8834 12.8061 24.3297C12.7964 24.3778 12.8051 24.4278 12.8303 24.4699C12.8556 24.512 12.8956 24.5432 12.9427 24.5573C14.5778 25.0412 16.3194 25.0318 17.9492 24.5304C19.1614 24.1563 20.2753 23.5175 21.2103 22.6602C21.2955 22.5647 21.3847 22.4709 21.4766 22.379C21.5685 22.287 21.6623 22.1969 21.7579 22.1127L21.7588 22.1109ZM16.7854 23.2328C16.1765 23.3536 15.5543 23.394 14.9348 23.353C14.9041 23.3533 14.8738 23.3459 14.8468 23.3314C14.8197 23.3169 14.7968 23.2958 14.78 23.27C14.7633 23.2443 14.7534 23.2147 14.7512 23.1841C14.7489 23.1535 14.7545 23.1228 14.7673 23.0949C15.3855 21.3884 16.3712 19.8385 17.6546 18.5551C18.938 17.2717 20.4878 16.286 22.1944 15.6679C22.2223 15.6549 22.253 15.6493 22.2837 15.6515C22.3144 15.6536 22.344 15.6635 22.3698 15.6803C22.3957 15.697 22.4168 15.72 22.4313 15.7471C22.4459 15.7742 22.4533 15.8046 22.4529 15.8353C22.5674 17.5462 22.0555 19.2403 21.0127 20.6014C19.9699 21.9626 18.4676 22.8979 16.7859 23.2328H16.7854Z" fill="white"/>
</g>
<path id="Pfad 102" d="M45.2115 18.1317H46.83C46.7454 18.531 46.6028 18.9157 46.4067 19.2736C46.1155 19.8082 45.6842 20.2533 45.1591 20.5612C44.6341 20.8691 44.0351 21.0282 43.4264 21.0214C42.9424 21.0251 42.4628 20.9302 42.0167 20.7424C41.5707 20.5546 41.1676 20.2778 40.8321 19.9291C40.4918 19.5746 40.2263 19.1553 40.0515 18.6961C39.6807 17.6742 39.6807 16.5546 40.0515 15.5328C40.2231 15.0796 40.4838 14.6654 40.8183 14.3147C41.1527 13.964 41.5541 13.6839 41.9986 13.491C42.449 13.2955 42.9354 13.1964 43.4264 13.2002C43.8475 13.1961 44.2656 13.2705 44.6594 13.4196C45.0311 13.5621 45.3742 13.7704 45.6721 14.0345C45.9676 14.2965 46.2148 14.6083 46.4026 14.9557C46.5953 15.3126 46.739 15.6938 46.83 16.089H45.211C45.1028 15.6878 44.8841 15.3251 44.5797 15.0422C44.2603 14.7668 43.8477 14.6242 43.4264 14.6435C43.151 14.6444 42.879 14.7053 42.6294 14.8219C42.368 14.9414 42.1352 15.1155 41.9467 15.3325C41.5228 15.8274 41.2898 16.4576 41.2898 17.1092C41.2898 17.7608 41.5228 18.391 41.9467 18.8859C42.1351 19.103 42.3679 19.2772 42.6294 19.3965C42.879 19.5132 43.1509 19.5741 43.4264 19.5749C43.849 19.5938 44.2629 19.4513 44.5843 19.1762C44.8897 18.8958 45.1075 18.5331 45.2115 18.1317Z" fill="white"/>
<path id="Pfad 103" d="M55.4312 15.9245V20.9388H55.1631C54.9141 20.9388 54.6706 20.8666 54.4618 20.7311C54.253 20.5956 54.0879 20.4024 53.9865 20.1751C53.8306 20.3409 53.6518 20.4834 53.4554 20.5984C53.2383 20.7239 53.007 20.8228 52.7663 20.8929C52.4425 20.9853 52.1067 21.0289 51.77 21.0221C51.0597 21.0708 50.3583 20.8424 49.8129 20.3849C49.5886 20.173 49.4123 19.9157 49.2955 19.6301C49.1788 19.3446 49.1244 19.0374 49.1361 18.7291C49.1306 18.3671 49.2058 18.0084 49.3563 17.6791C49.5232 17.3441 49.7863 17.0666 50.1119 16.8821C50.5633 16.6291 51.0547 16.455 51.5647 16.3674C52.3331 16.2293 53.1131 16.1666 53.8937 16.1803V15.9245C53.9014 15.7527 53.873 15.5811 53.8103 15.4209C53.7476 15.2607 53.6519 15.1155 53.5296 14.9946C53.2289 14.7424 52.8418 14.6173 52.4504 14.646C52.0598 14.6138 51.6693 14.7097 51.338 14.9191C51.1195 15.0789 50.9708 15.3167 50.9229 15.5831H49.3973C49.4144 15.2557 49.4992 14.9355 49.6464 14.6425C49.7935 14.3495 49.9997 14.0902 50.2521 13.8809C50.878 13.3932 51.6602 13.1505 52.4522 13.1982C52.8672 13.1933 53.2795 13.2651 53.6684 13.4098C54.0171 13.5391 54.3373 13.7352 54.611 13.987C54.8696 14.2289 55.0757 14.5214 55.2168 14.8463C55.3627 15.1868 55.4357 15.5541 55.4312 15.9245ZM53.8955 17.5353C53.3446 17.5273 52.7938 17.5592 52.2474 17.6308C51.9095 17.673 51.5786 17.7596 51.2634 17.8884C51.0637 17.9634 50.8953 18.104 50.786 18.2872C50.7046 18.4508 50.6634 18.6315 50.6658 18.8142C50.6698 18.9285 50.6994 19.0405 50.7526 19.1417C50.8058 19.243 50.8811 19.3309 50.973 19.3991C51.2286 19.5895 51.5439 19.6823 51.8619 19.6608C52.4082 19.6955 52.9466 19.517 53.3639 19.1629C53.5338 19.0103 53.6691 18.8232 53.7607 18.6141C53.8523 18.405 53.8981 18.1786 53.895 17.9503L53.8955 17.5353Z" fill="white"/>
<path id="Pfad 104" d="M62.2869 13.3726V14.8191C62.2426 14.8081 62.19 14.7971 62.129 14.7858C62.0738 14.7749 62.0157 14.7625 61.9547 14.7485C61.8949 14.7351 61.8339 14.7282 61.7726 14.728C61.5217 14.7266 61.2733 14.779 61.0444 14.8819C60.8235 14.9806 60.6229 15.1195 60.4527 15.2915C60.2832 15.4639 60.148 15.6668 60.054 15.8896C59.9576 16.1151 59.9082 16.3579 59.9088 16.6032V20.9371H58.3813V13.2843H58.6412C58.8923 13.2845 59.1379 13.3578 59.348 13.4952C59.5581 13.6326 59.7237 13.8282 59.8246 14.0581C59.9682 13.893 60.133 13.7478 60.3148 13.6261C60.507 13.5113 60.7099 13.4154 60.9206 13.3398C61.195 13.2435 61.4846 13.1972 61.7754 13.2033C61.8491 13.2021 61.9229 13.2076 61.9957 13.2197C62.0706 13.2339 62.1387 13.2484 62.2 13.2629L62.2869 13.3726Z" fill="white"/>
<path id="Pfad 105" d="M72.1343 17.1109C72.1408 17.6513 72.0451 18.1881 71.8521 18.693C71.6755 19.1534 71.4087 19.574 71.0675 19.93C70.7319 20.2788 70.3288 20.5555 69.8828 20.7433C69.4367 20.9311 68.9571 21.0261 68.4732 21.0224C68.1368 21.029 67.8012 20.987 67.4768 20.8977C67.2361 20.8312 67.0062 20.7305 66.7941 20.5986C66.6002 20.48 66.4216 20.3378 66.2625 20.1754C66.1612 20.4027 65.9962 20.5958 65.7875 20.7313C65.5788 20.8668 65.3353 20.939 65.0864 20.9391H64.8184V10.2291H66.3458V14.0564C66.5032 13.8898 66.682 13.7447 66.8774 13.6249C67.0907 13.5119 67.3126 13.4161 67.541 13.3382C67.8412 13.241 68.1555 13.1949 68.4709 13.2016C68.9619 13.1981 69.4482 13.2971 69.8987 13.4925C70.3368 13.6833 70.7332 13.9584 71.0652 14.3022C71.4057 14.6573 71.6724 15.0763 71.8499 15.5352C72.0435 16.0377 72.14 16.5724 72.1343 17.1109ZM70.5987 17.1109C70.6033 16.7704 70.5427 16.4323 70.4203 16.1146C70.3086 15.8274 70.1454 15.563 69.9387 15.3345C69.7419 15.1169 69.5018 14.9429 69.2337 14.8238C68.9684 14.7056 68.6812 14.6448 68.3908 14.6454C68.1017 14.6444 67.8157 14.7053 67.5519 14.8238C67.2845 14.9443 67.0445 15.1181 66.8465 15.3345C66.6371 15.5633 66.4724 15.8293 66.3608 16.1187C66.1227 16.7601 66.1227 17.4657 66.3608 18.1072C66.473 18.3951 66.6377 18.6596 66.8465 18.8873C67.0444 19.1038 67.2845 19.2776 67.5519 19.398C67.8156 19.5166 68.1017 19.5774 68.3908 19.5764C68.6812 19.5771 68.9685 19.5163 69.2337 19.398C69.5019 19.279 69.742 19.105 69.9387 18.8873C70.1454 18.6587 70.3085 18.3944 70.4203 18.1072C70.5425 17.7896 70.6029 17.4516 70.5982 17.1113L70.5987 17.1109Z" fill="white"/>
<path id="Pfad 106" d="M81.7273 17.1079C81.7338 17.6479 81.6396 18.1844 81.4497 18.69C81.276 19.1516 81.0108 19.5733 80.67 19.9298C80.3335 20.2777 79.9303 20.5544 79.4846 20.7433C79.0389 20.9322 78.5598 21.0296 78.0757 21.0296C77.5916 21.0296 77.1125 20.9322 76.6668 20.7433C76.2211 20.5544 75.818 20.2777 75.4814 19.9298C75.1411 19.5753 74.8757 19.156 74.7008 18.6968C74.3305 17.6749 74.3305 16.5555 74.7008 15.5336C74.8725 15.0803 75.1332 14.6661 75.4676 14.3153C75.8021 13.9646 76.2034 13.6844 76.6479 13.4913C77.0996 13.2995 77.5853 13.2007 78.076 13.2007C78.5667 13.2007 79.0523 13.2995 79.504 13.4913C79.9485 13.6843 80.3499 13.9645 80.6844 14.3152C81.0188 14.666 81.2795 15.0803 81.4511 15.5336C81.6403 16.0366 81.734 16.5705 81.7273 17.1079ZM80.1999 17.1079C80.2088 16.4568 79.9783 15.8252 79.5522 15.3328C79.3639 15.1157 79.131 14.9415 78.8695 14.8222C78.6204 14.7046 78.3484 14.6436 78.073 14.6436C77.7976 14.6436 77.5256 14.7046 77.2765 14.8222C77.015 14.9415 76.7821 15.1157 76.5938 15.3328C76.1698 15.8277 75.9368 16.4579 75.9368 17.1095C75.9368 17.7611 76.1698 18.3913 76.5938 18.8862C76.7821 19.1034 77.0149 19.2776 77.2765 19.3968C77.5256 19.5142 77.7976 19.5751 78.073 19.5751C78.3484 19.5751 78.6204 19.5142 78.8695 19.3968C79.1311 19.2776 79.364 19.1035 79.5522 18.8862C79.9783 18.3938 80.2088 17.7621 80.1999 17.1111V17.1079Z" fill="white"/>
<path id="Pfad 107" d="M91.103 16.5207V20.9356H89.5773V16.5207C89.578 16.2754 89.5284 16.0325 89.4317 15.807C89.2448 15.3631 88.9005 15.0039 88.4649 14.7984C88.2575 14.6994 88.0308 14.6469 87.8009 14.6446C87.5435 14.6406 87.2884 14.6931 87.0535 14.7984C86.8326 14.897 86.6319 15.0359 86.4619 15.2081C86.2932 15.3787 86.158 15.5794 86.0631 15.7998C85.9659 16.0267 85.9165 16.2711 85.9179 16.518V20.9329H84.3887V13.2846H84.649C84.9 13.285 85.1455 13.3584 85.3556 13.4957C85.5657 13.6331 85.7314 13.8286 85.8324 14.0584C85.9876 13.8929 86.1634 13.7479 86.3554 13.6269C86.5762 13.5112 86.8067 13.4152 87.0444 13.3402C87.3671 13.2424 87.7032 13.1964 88.0403 13.2036C88.4506 13.2014 88.8568 13.2862 89.2319 13.4526C89.5986 13.6143 89.9301 13.8462 90.2077 14.1353C90.4925 14.4364 90.7154 14.7905 90.8636 15.1776C91.0272 15.6062 91.1084 16.0619 91.103 16.5207Z" fill="white"/>
<path id="Pfad 108" d="M95.7189 10.2291V20.9386H94.1915V11.8358H93.6257V10.2291H95.7189Z" fill="white"/>
<path id="Pfad 109" d="M104.719 15.9245V20.9388H104.452C104.203 20.9387 103.959 20.8666 103.75 20.731C103.542 20.5955 103.376 20.4024 103.275 20.1751C103.119 20.3409 102.94 20.4834 102.744 20.5984C102.527 20.724 102.295 20.8229 102.055 20.8928C101.731 20.9854 101.395 21.0289 101.058 21.0221C100.348 21.0709 99.6465 20.8425 99.1012 20.3849C98.877 20.173 98.7006 19.9157 98.5839 19.6301C98.4672 19.3445 98.4128 19.0374 98.4244 18.7291C98.4189 18.3671 98.4942 18.0084 98.6447 17.6791C98.8118 17.3443 99.0748 17.0669 99.4002 16.8821C99.8518 16.6291 100.343 16.455 100.853 16.3673C101.622 16.2293 102.402 16.1666 103.182 16.1803V15.9245C103.19 15.7526 103.162 15.581 103.099 15.4208C103.036 15.2606 102.94 15.1154 102.818 14.9946C102.517 14.7422 102.13 14.6171 101.738 14.646C101.348 14.6138 100.957 14.7097 100.626 14.9191C100.407 15.0789 100.259 15.3167 100.211 15.5831H98.6834C98.7005 15.2557 98.7854 14.9354 98.9326 14.6424C99.0798 14.3494 99.2861 14.0901 99.5386 13.8809C100.164 13.3933 100.946 13.1506 101.738 13.1982C102.153 13.1933 102.566 13.265 102.955 13.4098C103.303 13.5392 103.623 13.7352 103.897 13.9869C104.156 14.2289 104.362 14.5214 104.503 14.8462C104.65 15.1867 104.723 15.5539 104.719 15.9245ZM103.184 17.5352C102.633 17.5273 102.082 17.5592 101.536 17.6308C101.198 17.673 100.867 17.7597 100.552 17.8884C100.352 17.9634 100.184 18.104 100.075 18.2871C99.9933 18.4507 99.9521 18.6314 99.9546 18.8142C99.9585 18.9285 99.9882 19.0404 100.041 19.1417C100.095 19.243 100.17 19.3309 100.262 19.3991C100.517 19.5896 100.833 19.6824 101.151 19.6608C101.697 19.6956 102.235 19.5171 102.653 19.1628C102.823 19.0103 102.958 18.8232 103.049 18.6141C103.141 18.4049 103.187 18.1786 103.184 17.9503V17.5352Z" fill="white"/>
<path id="Pfad 110" d="M114.38 16.5207V20.9356H112.853V16.5207C112.854 16.2755 112.804 16.0327 112.708 15.807C112.521 15.3632 112.176 15.0041 111.741 14.7984C111.533 14.6993 111.307 14.6468 111.077 14.6446C110.819 14.6406 110.564 14.6932 110.329 14.7984C109.884 14.9962 109.529 15.355 109.337 15.8029C109.24 16.0297 109.19 16.2743 109.192 16.5212V20.9361H107.664V13.2846H107.925C108.176 13.2849 108.421 13.3582 108.631 13.4956C108.841 13.633 109.007 13.8285 109.108 14.0584C109.263 13.8931 109.439 13.7481 109.631 13.6269C109.852 13.5114 110.082 13.4155 110.32 13.3402C110.643 13.2425 110.979 13.1964 111.316 13.2036C111.727 13.2014 112.133 13.2863 112.508 13.4526C112.875 13.6143 113.206 13.8462 113.483 14.1353C113.769 14.4361 113.992 14.7903 114.14 15.1776C114.304 15.6061 114.385 16.0618 114.38 16.5207Z" fill="white"/>
<path id="Pfad 111" d="M124.225 10.2291V20.9386H123.957C123.708 20.9386 123.465 20.8664 123.256 20.7309C123.047 20.5954 122.882 20.4023 122.781 20.1749C122.626 20.3392 122.45 20.4816 122.258 20.5982C122.041 20.7237 121.809 20.8226 121.568 20.8927C121.245 20.9851 120.909 21.0287 120.572 21.0219C120.088 21.0258 119.608 20.9309 119.162 20.7431C118.716 20.5553 118.313 20.2785 117.978 19.9296C117.637 19.5752 117.372 19.1559 117.197 18.6966C116.826 17.6748 116.826 16.5552 117.197 15.5333C117.369 15.0802 117.63 14.666 117.964 14.3152C118.298 13.9645 118.7 13.6843 119.144 13.4911C119.595 13.2958 120.081 13.1967 120.572 13.2003C120.89 13.1931 121.207 13.2393 121.51 13.3368C121.739 13.4148 121.961 13.5107 122.174 13.6236C122.368 13.742 122.544 13.8873 122.697 14.055V10.2291H124.225ZM122.864 17.1113C122.868 16.7709 122.808 16.4327 122.685 16.115C122.574 15.8278 122.41 15.5634 122.203 15.3349C122.007 15.1173 121.766 14.9433 121.498 14.8242C121.233 14.706 120.946 14.6452 120.655 14.6458C120.366 14.6449 120.081 14.7057 119.817 14.8242C119.549 14.9447 119.309 15.1184 119.111 15.3349C118.902 15.5638 118.737 15.8297 118.626 16.1191C118.388 16.7606 118.388 17.4661 118.626 18.1076C118.738 18.3955 118.902 18.66 119.111 18.8878C119.309 19.1043 119.549 19.2781 119.817 19.3984C120.081 19.517 120.366 19.5779 120.655 19.5768C120.946 19.5776 121.233 19.5168 121.498 19.3984C121.767 19.2795 122.007 19.1055 122.203 18.8878C122.41 18.6592 122.573 18.3948 122.685 18.1076C122.808 17.7899 122.868 17.4518 122.864 17.1113Z" fill="white"/>
<path id="Ellipse 2" d="M131.518 16.9C132.141 16.9 132.646 16.3948 132.646 15.7717C132.646 15.1486 132.141 14.6434 131.518 14.6434C130.895 14.6434 130.39 15.1486 130.39 15.7717C130.39 16.3948 130.895 16.9 131.518 16.9Z" fill="white"/>
<path id="Pfad 184" d="M142.796 14.0867V12.4914H140.905V10.2434H139.208V12.4896H137.636V14.0667H139.208V18.1288C139.201 18.5408 139.268 18.9508 139.406 19.339C139.528 19.6767 139.718 19.9856 139.965 20.2466C140.203 20.4963 140.491 20.6944 140.809 20.8287C141.14 20.9679 141.497 21.038 141.856 21.0349C142.084 21.0394 142.311 21.0087 142.529 20.9439C142.622 20.9238 142.712 20.8933 142.797 20.8528V19.3509C142.741 19.3756 142.682 19.3941 142.622 19.4059C142.556 19.4187 142.49 19.4278 142.423 19.4333C142.352 19.4393 142.286 19.4424 142.225 19.4424C142.051 19.447 141.877 19.4161 141.716 19.3514C141.554 19.2868 141.407 19.1898 141.284 19.0664C141.16 18.9449 141.062 18.7991 140.997 18.6383C140.932 18.4775 140.901 18.305 140.905 18.1315V14.0867H142.796ZM151.174 12.4655C151.106 12.4497 151.03 12.4345 150.946 12.4199C150.865 12.4065 150.783 12.4004 150.702 12.4017C150.378 12.3953 150.056 12.4467 149.751 12.5533C149.517 12.6375 149.291 12.7442 149.078 12.8719C148.875 13.0058 148.692 13.1661 148.531 13.3484C148.419 13.0939 148.235 12.8774 148.002 12.7253C147.769 12.5732 147.497 12.4919 147.218 12.4914H146.929V20.9448H148.627V16.1603C148.626 15.8893 148.681 15.6209 148.789 15.372C148.893 15.1259 149.043 14.9018 149.231 14.7116C149.421 14.5202 149.645 14.3658 149.891 14.2564C150.147 14.1426 150.424 14.0848 150.703 14.0867C150.772 14.0867 150.84 14.0944 150.906 14.1094C150.974 14.1249 151.039 14.1387 151.1 14.1509C151.168 14.163 151.226 14.1751 151.276 14.1873V12.5897L151.174 12.4655ZM160.407 17.3778C160.409 17.656 160.35 17.9313 160.236 18.1848C160.015 18.6794 159.614 19.0712 159.114 19.2803C158.863 19.387 158.593 19.4415 158.321 19.4405C158.06 19.4414 157.802 19.3868 157.564 19.2803C157.327 19.1755 157.112 19.0261 156.932 18.8402C156.748 18.6504 156.601 18.4282 156.498 18.1848C156.389 17.9297 156.334 17.6551 156.336 17.3778V12.4914H154.637V17.3778C154.631 17.8835 154.721 18.3857 154.9 18.8584C155.063 19.2884 155.311 19.6812 155.629 20.0136C155.936 20.3322 156.303 20.5877 156.708 20.7655C157.129 20.9481 157.583 21.0402 158.042 21.0358C158.415 21.0439 158.788 20.9961 159.147 20.8938C159.413 20.8158 159.668 20.7066 159.908 20.5684C160.127 20.4416 160.326 20.2842 160.5 20.101L160.51 20.9443H162.106V12.4909H160.407V17.3778ZM171.66 17.2176C171.434 16.9228 171.145 16.6817 170.815 16.5117C170.471 16.3343 170.107 16.1989 169.731 16.1084C169.343 16.0138 168.982 15.9236 168.647 15.8381C168.352 15.7683 168.068 15.6588 167.803 15.5126C167.698 15.459 167.61 15.3768 167.549 15.2754C167.489 15.174 167.458 15.0576 167.461 14.9396C167.466 14.8125 167.499 14.6881 167.558 14.5754C167.617 14.4628 167.701 14.3649 167.803 14.2888C168.096 14.0958 168.44 13.9937 168.792 13.9953C169.143 13.997 169.486 14.1022 169.778 14.2979C170.002 14.4837 170.153 14.7438 170.202 15.0311H171.909C171.888 14.305 171.581 13.6166 171.056 13.1149C170.419 12.5964 169.609 12.3406 168.79 12.3999C168.374 12.3934 167.96 12.4601 167.567 12.597C167.228 12.7163 166.916 12.9019 166.649 13.1432C166.4 13.3702 166.2 13.6459 166.061 13.9533C165.923 14.2632 165.852 14.5992 165.854 14.9387C165.831 15.3635 165.953 15.7836 166.198 16.1312C166.424 16.4231 166.71 16.6624 167.038 16.8326C167.381 17.0109 167.745 17.1464 168.122 17.2358C168.512 17.3305 168.875 17.4215 169.211 17.5089C169.506 17.5815 169.789 17.6924 170.055 17.8389C170.16 17.8925 170.248 17.9748 170.309 18.0762C170.369 18.1776 170.399 18.2939 170.397 18.4119C170.397 18.5528 170.364 18.6919 170.302 18.8182C170.24 18.9446 170.149 19.0548 170.037 19.1401C169.697 19.3675 169.29 19.4726 168.883 19.4383C168.494 19.4679 168.109 19.3501 167.803 19.1083C167.556 18.8739 167.402 18.558 167.369 18.2189H165.67C165.669 18.6055 165.744 18.9884 165.892 19.3459C166.039 19.7033 166.255 20.0282 166.528 20.3021C167.19 20.838 168.032 21.1004 168.881 21.0354C169.717 21.0897 170.543 20.8223 171.188 20.288C171.451 20.0527 171.659 19.7633 171.8 19.4397C171.94 19.116 172.008 18.7659 172 18.4133C172.023 17.9875 171.902 17.5665 171.659 17.2167L171.66 17.2176ZM180 14.0867V12.4914H178.108V10.2434H176.41V12.4896H174.839V14.0667H176.41V18.1288C176.403 18.5408 176.47 18.9508 176.608 19.339C176.73 19.6767 176.92 19.9856 177.167 20.2466C177.406 20.4963 177.693 20.6944 178.011 20.8287C178.342 20.9679 178.699 21.038 179.058 21.0349C179.286 21.0394 179.513 21.0087 179.732 20.9439C179.824 20.9238 179.914 20.8933 179.999 20.8528V19.3509C179.943 19.3756 179.884 19.3941 179.824 19.4059C179.758 19.4187 179.692 19.4278 179.626 19.4333C179.555 19.4393 179.488 19.4424 179.427 19.4424C179.253 19.4467 179.08 19.4155 178.918 19.3506C178.756 19.2857 178.61 19.1886 178.487 19.065C178.363 18.9435 178.266 18.7978 178.2 18.6369C178.135 18.4761 178.104 18.3036 178.109 18.1302V14.0867H180Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1,7 @@
<svg width="170" height="25" viewBox="0 0 170 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="evernode logo">
<path id="Path 1" d="M159.679 20.2698L155.702 23.6066H170V20.2698H159.679ZM0 23.6066H14.2979V20.2698H3.97774V14.0361L0 10.7927V23.6066ZM0 0.936504L3.97774 4.27451H14.2979V0.936504H0ZM155.702 0.936504V13.7511L159.691 10.6252H159.678V4.27451H170V0.936504H155.701H155.702ZM34.8308 0.936504L31.7989 7.73714C30.5054 10.6335 29.1786 13.5926 28.2002 15.986C27.1617 13.3094 26.0221 10.8227 24.6653 7.73714L21.6053 0.936504H17.3132L28.1708 23.9511H28.2986L39.1217 0.936504H34.8308ZM42.5 0.936504V23.6053H57.2702V20.2673H46.4765V13.7504H55.218V10.5076H46.4765V4.27451H56.7973V0.936504H42.5ZM65.3567 4.27323H69.144C71.8282 4.27323 73.5314 5.62684 73.5314 8.14553C73.5314 10.6642 71.8902 11.9865 69.3338 11.9865H65.3567V4.27451V4.27323ZM61.4416 0.936504V23.6053H65.3554V15.1992H69.3638L73.7193 23.6053H77.9801L73.0246 14.5384C74.3605 14.0982 75.5185 13.2383 76.3261 12.0867C77.1337 10.9351 77.5478 9.55341 77.5066 8.14744C77.5066 3.5191 74.2561 0.937782 69.1108 0.937782H61.4416V0.936504ZM136.387 4.27323H139.291C144.468 4.27323 147.719 7.60996 147.719 12.2703C147.719 16.9306 144.467 20.2673 139.387 20.2673H136.389V4.27451L136.387 4.27323ZM132.41 0.936504V23.6053H139.417C146.895 23.6053 151.726 19.0095 151.726 12.2715C151.726 5.53353 146.833 0.936504 139.323 0.936504H132.41ZM82.7453 0.591391V23.6053H86.6617V9.37451C87.0406 9.68959 87.4196 10.0673 87.766 10.3824L101.054 23.9523H101.149V0.936504H97.2323V15.1992L96.128 14.1281L82.8718 0.591391H82.7453ZM108.982 12.2722C108.982 7.7071 112.265 4.1812 116.778 4.1812C121.292 4.1812 124.544 7.70774 124.544 12.2722C124.544 16.8366 121.293 20.3632 116.778 20.3632C112.264 20.3632 108.982 16.8692 108.982 12.2722ZM105.004 12.2722C105.004 15.3945 106.245 18.389 108.453 20.5968C110.66 22.8047 113.655 24.045 116.777 24.045C119.9 24.045 122.894 22.8047 125.102 20.5968C127.31 18.389 128.55 15.3945 128.55 12.2722C128.55 9.15 127.31 6.1557 125.102 3.94799C122.894 1.74028 119.9 0.5 116.778 0.5C113.656 0.5 110.661 1.74028 108.454 3.94799C106.246 6.1557 105.006 9.15 105.006 12.2722" fill="white"/>
<path id="Path 2" d="M155.705 13.7641H168.336V10.5124H159.682L155.705 13.7641Z" fill="white"/>
<path id="Path 3" d="M0 10.7791H12.7915V14.0309H3.94515L0 10.7791Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,103 @@
<svg width="50" height="51" viewBox="0 0 50 51" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group 3873">
<path id="path37" d="M25 50.5967C18.32 50.5967 12.0396 47.9994 7.32279 43.2739C2.59729 38.5484 0 32.268 0 25.5967C0 18.9254 2.59729 12.6363 7.32279 7.91947C12.0483 3.19397 18.3287 0.59668 25 0.59668C31.6713 0.59668 37.9604 3.19397 42.6772 7.91947C47.4027 12.645 50 18.9254 50 25.5967C50 32.268 47.4027 38.5571 42.6772 43.2739C37.9517 47.9907 31.6713 50.5967 25 50.5967ZM25 1.91704C18.6762 1.91704 12.7345 4.37535 8.26095 8.84894C3.78735 13.3225 1.32905 19.2642 1.32905 25.588C1.32905 31.9118 3.78735 37.8535 8.26095 42.327C12.7345 46.8006 18.6762 49.2589 25 49.2589C31.3238 49.2589 37.2655 46.8006 41.7391 42.327C46.2126 37.8535 48.671 31.9118 48.671 25.588C48.671 19.2642 46.204 13.3225 41.7304 8.84894C37.2655 4.37535 31.3152 1.91704 25 1.91704Z" fill="white"/>
<g id="g47">
<path id="path43" d="M14.9595 33.389L14.9595 33.389L34.97 32.8969L35.0561 33.3894C35.0563 33.3894 35.0566 33.3894 35.0568 33.3893C35.1143 33.3793 35.1714 33.3693 35.2283 33.3593C37.0956 33.0328 38.6439 32.7621 39.7778 32.7621C40.5587 32.7621 41.0022 32.8899 41.2458 33.0714C41.4538 33.2265 41.593 33.4808 41.593 33.9892C41.593 34.917 41.1352 36.1965 40.2716 37.6138C39.4171 39.0159 38.1997 40.4968 36.7612 41.8167C34.6733 43.7205 30.4223 46.8484 24.9996 46.8484C19.5771 46.8484 15.3261 43.7113 13.2572 41.8172C11.8185 40.4972 10.6008 39.0161 9.74628 37.6138C8.88268 36.1965 8.4248 34.917 8.4248 33.9892C8.4248 33.4808 8.56405 33.2265 8.77207 33.0714C9.01562 32.8899 9.45908 32.7621 10.24 32.7621C11.4084 32.7621 13.0202 33.0407 14.9595 33.389Z" stroke="white"/>
<path id="path45" d="M39.7687 32.4209C40.5342 32.4209 41.0664 32.533 41.4118 32.7757C41.7572 33.0184 41.9252 33.4012 41.9252 33.9893C41.9252 35.6977 40.3755 38.9558 36.9774 42.0739C34.8956 43.9877 30.5638 47.1992 24.9998 47.1992C19.4358 47.1992 15.1041 43.9877 13.0223 42.0739C9.62414 38.9558 8.07443 35.6977 8.07443 33.9893C8.07443 33.4012 8.23314 33.0184 8.58789 32.7757C8.9333 32.533 9.46544 32.4209 10.231 32.4209C11.4352 32.4209 13.097 32.7103 15.0108 33.0464C17.8021 33.5412 21.2749 34.148 24.9998 34.148C28.7247 34.148 32.1976 33.5412 34.9889 33.0464C36.9027 32.7103 38.5551 32.4209 39.7687 32.4209ZM39.7687 32.1129C36.7533 32.1129 31.264 33.8399 24.9998 33.8399C18.7357 33.8399 13.2463 32.1129 10.231 32.1129C8.66258 32.1129 7.76636 32.5796 7.76636 33.9986C7.76636 38.1436 15.4869 47.5166 24.9998 47.5166C34.5128 47.5166 42.2333 38.1343 42.2333 33.9893C42.2333 32.5796 41.3278 32.1129 39.7687 32.1129Z" fill="white"/>
</g>
<path id="path53" d="M38.574 32.2529C38.574 35.5203 32.4965 42.9048 24.9907 42.9048C17.4849 42.9048 11.4167 35.511 11.4167 32.2529C11.4167 28.9948 17.4942 32.1315 25 32.1315C32.5058 32.1315 38.574 28.9854 38.574 32.2529Z" fill="white"/>
<g id="g57">
<path id="path55" d="M24.9999 43.5023C18.633 43.5023 13.5918 38.5638 11.762 35.2403C11.6033 34.9509 11.706 34.5775 11.9954 34.4188C12.2848 34.2601 12.6582 34.3628 12.8169 34.6522C13.8345 36.5006 15.5523 38.3491 17.5314 39.7401C19.1838 40.8977 21.8258 42.2887 24.9905 42.2887C25.3266 42.2887 25.5973 42.5594 25.5973 42.8955C25.5973 43.2316 25.3266 43.5023 24.9999 43.5023Z" fill="white"/>
</g>
<g id="g63">
<path id="path59" d="M25.0002 35.623C22.1902 35.623 20.2577 35.4643 18.736 35.1189C16.9996 34.7175 15.7486 34.0546 14.7964 33.0371C12.8826 30.9739 12.0984 27.3144 12.0984 20.4247C12.0984 13.0963 17.8864 7.13083 25.0002 7.13083C32.1139 7.13083 37.9019 13.0963 37.9019 20.4247C37.9019 27.3144 37.1177 30.9739 35.2039 33.0371C33.2061 35.1936 29.8173 35.623 25.0002 35.623Z" fill="#232325"/>
<path id="path61" d="M25.0001 7.27088C28.4075 7.27088 31.6096 8.63388 34.0182 11.1171C36.4268 13.6004 37.7618 16.9052 37.7618 20.4154C37.7618 27.2677 36.9963 30.8992 35.1012 32.9344C34.1769 33.9333 32.9446 34.5868 31.2362 34.9789C29.7239 35.3243 27.8007 35.483 25.0001 35.483C22.1994 35.483 20.2763 35.3243 18.7639 34.9789C17.0555 34.5868 15.8232 33.9333 14.899 32.9344C13.0132 30.8992 12.2383 27.2677 12.2383 20.4154C12.2383 16.9052 13.564 13.6004 15.9819 11.1171C18.3811 8.64321 21.5926 7.27088 25.0001 7.27088ZM25.0001 6.99081C17.793 6.99081 11.9583 13.0029 11.9583 20.4247C11.9583 33.8586 14.899 35.7631 25.0001 35.7631C35.1012 35.7631 38.0419 33.8586 38.0419 20.4247C38.0419 13.0029 32.1978 6.99081 25.0001 6.99081Z" fill="#232325"/>
</g>
<path id="ellipse65" d="M25.0001 33.8586C32.2028 33.8586 38.0419 27.8441 38.0419 20.4247C38.0419 13.0054 32.2028 6.99081 25.0001 6.99081C17.7973 6.99081 11.9583 13.0054 11.9583 20.4247C11.9583 27.8441 17.7973 33.8586 25.0001 33.8586Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path77" d="M17.1022 9.72618C17.6996 9.28741 18.8012 8.85797 20.4256 9.71684L19.1 8.45654L17.1022 9.72618Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path79" d="M32.8698 9.72618C32.2723 9.28741 31.1427 8.86731 29.5183 9.73552L30.7879 8.45654L32.8698 9.72618Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path81" d="M31.2642 6.58007C31.2642 5.04904 28.4542 3.81674 24.9907 3.81674C21.5272 3.81674 18.7172 5.05838 18.7172 6.58007V7.82171C18.7172 9.35274 21.5272 10.585 24.9907 10.585C28.4542 10.585 31.2642 9.34341 31.2642 7.82171C31.2642 7.60699 31.2642 6.79479 31.2642 6.58007Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<g id="g85">
<path id="path83" d="M16.2338 33.7839C15.6924 33.7839 15.2629 33.3452 15.2629 32.813C15.2629 32.2809 15.7017 31.8421 16.2338 31.8421C16.766 31.8421 17.2047 32.2809 17.2047 32.813C17.2047 33.3452 16.766 33.7839 16.2338 33.7839ZM16.2338 32.2996C15.9538 32.2996 15.7297 32.5236 15.7297 32.8037C15.7297 33.0838 15.9538 33.3078 16.2338 33.3078C16.5139 33.3078 16.738 33.0838 16.738 32.8037C16.738 32.5236 16.5139 32.2996 16.2338 32.2996Z" fill="white"/>
</g>
<g id="g89">
<path id="path87" d="M33.7102 33.952C33.1687 33.952 32.7393 33.5132 32.7393 32.9811C32.7393 32.4489 33.178 32.0102 33.7102 32.0102C34.2423 32.0102 34.6811 32.4489 34.6811 32.9811C34.6811 33.5132 34.2516 33.952 33.7102 33.952ZM33.7102 32.4676C33.4301 32.4676 33.206 32.6917 33.206 32.9717C33.206 33.2518 33.4301 33.4758 33.7102 33.4758C33.9902 33.4758 34.2143 33.2518 34.2143 32.9717C34.2143 32.6917 33.9902 32.4676 33.7102 32.4676Z" fill="white"/>
</g>
<path id="ellipse96" d="M25.0001 7.8964C27.4697 7.8964 29.4718 7.01449 29.4718 5.9266C29.4718 4.8387 27.4697 3.95679 25.0001 3.95679C22.5304 3.95679 20.5283 4.8387 20.5283 5.9266C20.5283 7.01449 22.5304 7.8964 25.0001 7.8964Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10"/>
<g id="g100">
<path id="path98" d="M25 8.05512C21.6205 8.05512 18.9785 7.12156 18.9785 5.92661C18.9785 4.73166 21.6205 3.7981 25 3.7981C28.3794 3.7981 31.0214 4.73166 31.0214 5.92661C31.0214 7.12156 28.3701 8.05512 25 8.05512ZM25 4.11551C21.5925 4.11551 19.3053 5.04907 19.3053 5.92661C19.3053 6.80415 21.5925 7.73771 25 7.73771C28.4075 7.73771 30.6947 6.80415 30.6947 5.92661C30.6947 5.04907 28.4075 4.11551 25 4.11551Z" fill="white"/>
</g>
<g id="g104">
<path id="path102" d="M29.0331 6.8508C26.4005 5.95459 23.3851 5.95459 20.9579 6.8508L20.8645 6.58941C23.3478 5.66518 26.4378 5.66518 29.1265 6.58941L29.0331 6.8508Z" fill="white"/>
</g>
<g id="g108">
<path id="path106" d="M29.1542 5.38512C26.5309 4.48891 23.2728 4.48891 20.8456 5.38512L20.7522 5.12373C23.2261 4.20884 26.5683 4.20884 29.2476 5.12373L29.1542 5.38512Z" fill="white"/>
</g>
<g id="g118">
<g id="g112">
<path id="path110" d="M23.2636 7.87778C22.8249 6.7015 22.8249 5.18913 23.2636 3.91949L23.525 4.01285C23.1143 5.22648 23.1143 6.67349 23.525 7.78442L23.2636 7.87778Z" fill="white"/>
</g>
<g id="g116">
<path id="path114" d="M26.7272 7.86847L26.4658 7.77512C26.8766 6.56149 26.8766 5.11448 26.4658 4.00354L26.7272 3.91019C27.1567 5.08647 27.1567 6.59883 26.7272 7.86847Z" fill="white"/>
</g>
</g>
<path id="path120" d="M15.4496 11.2759C15.4776 11.2292 13.5825 14.1139 13.5825 14.1139L15.2629 15.785C15.2536 15.785 14.012 13.6378 15.4496 11.2759Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path122" d="M34.513 11.2759C34.485 11.2292 36.3801 14.1139 36.3801 14.1139L34.6997 15.785C34.709 15.785 35.9507 13.6378 34.513 11.2759Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path124" d="M14.3294 26.1474C13.7973 26.7916 13.3491 27.9025 13.7319 28.5373L12.7237 26.9876C12.7237 26.9876 12.705 25.5779 12.7703 25.5779C12.8357 25.5779 14.3294 26.1474 14.3294 26.1474Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path126" d="M35.6893 26.2594C36.2215 26.9036 36.6416 27.8932 36.2588 28.5373L37.267 26.9876C37.267 26.9876 37.2857 25.5779 37.2204 25.5779C37.155 25.5779 35.6893 26.2594 35.6893 26.2594Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<g id="g159">
<path id="path128" d="M12.7887 14.0767C11.2577 14.0767 10.0254 16.8867 10.0254 20.3502C10.0254 23.8137 11.267 26.6237 12.7887 26.6237H13.3489C14.8799 26.6237 16.1122 23.8137 16.1122 20.3502C16.1122 16.8867 14.8706 14.0767 13.3489 14.0767C13.1248 14.0767 13.0034 14.0767 12.7887 14.0767Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="ellipse135" d="M11.8365 24.8126C12.9244 24.8126 13.8063 22.8106 13.8063 20.3409C13.8063 17.8712 12.9244 15.8691 11.8365 15.8691C10.7486 15.8691 9.8667 17.8712 9.8667 20.3409C9.8667 22.8106 10.7486 24.8126 11.8365 24.8126Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10"/>
<g id="g139">
<path id="path137" d="M12.2474 26.661V26.3436C13.153 26.3436 13.8905 23.655 13.8905 20.3502C13.8905 18.7911 13.6944 17.2508 13.3583 16.1212C13.0316 15.0289 12.5928 14.4034 12.1541 14.4034V14.086C12.7609 14.086 13.2837 14.7582 13.6664 16.0278C14.0212 17.1947 14.2172 18.7258 14.2172 20.3502C14.2079 23.4776 13.5357 26.661 12.2474 26.661Z" fill="white"/>
</g>
<g id="g143">
<path id="path141" d="M12.4993 24.4766C11.5751 21.9933 11.5751 18.9032 12.4993 16.2146L12.7607 16.3079C11.8645 18.9406 11.8645 21.956 12.7607 24.3832L12.4993 24.4766Z" fill="white"/>
</g>
<g id="g147">
<path id="path145" d="M11.4071 24.8126C10.4268 22.1706 10.4268 18.7445 11.4071 15.8878L11.6684 15.9811C10.7069 18.7818 10.7069 22.1333 11.6684 24.7192L11.4071 24.8126Z" fill="white"/>
</g>
<g id="g157">
<g id="g151">
<path id="path149" d="M11.8831 22.4041C11.2296 22.4041 10.5574 22.2921 9.92261 22.0774L10.016 21.816C11.2296 22.2267 12.5646 22.2267 13.6848 21.816L13.7782 22.0774C13.1901 22.2921 12.5459 22.4041 11.8831 22.4041Z" fill="white"/>
</g>
<g id="g155">
<path id="path153" d="M13.6851 18.8752C12.4715 18.4645 11.1365 18.4645 10.0162 18.8752L9.92285 18.6138C11.0991 18.1751 12.5088 18.1751 13.7784 18.6138L13.6851 18.8752Z" fill="white"/>
</g>
</g>
</g>
<g id="g192">
<path id="path161" d="M37.1643 14.0766C38.6953 14.0766 39.9276 16.8866 39.9276 20.3501C39.9276 23.8136 38.686 26.6236 37.1643 26.6236H36.6042C35.0731 26.6236 33.8408 23.8136 33.8408 20.3501C33.8408 16.8866 35.0825 14.0766 36.6042 14.0766C36.8189 14.0766 36.9496 14.0766 37.1643 14.0766Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="ellipse168" d="M38.1073 24.8126C39.1952 24.8126 40.0771 22.8106 40.0771 20.3409C40.0771 17.8712 39.1952 15.8691 38.1073 15.8691C37.0194 15.8691 36.1375 17.8712 36.1375 20.3409C36.1375 22.8106 37.0194 24.8126 38.1073 24.8126Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10"/>
<g id="g172">
<path id="path170" d="M38.1071 26.3997C36.9122 26.3997 35.9786 23.739 35.9786 20.3409C35.9786 16.9427 36.9122 14.2821 38.1071 14.2821V14.5995C37.2296 14.5995 36.296 16.9054 36.296 20.3315C36.296 23.7577 37.2296 26.0636 38.1071 26.0636V26.3997Z" fill="white"/>
</g>
<g id="g176">
<path id="path174" d="M37.4443 24.4766L37.1829 24.3832C38.0791 21.956 38.0791 18.9406 37.1829 16.3079L37.4443 16.2146C38.3685 18.9032 38.3685 21.9933 37.4443 24.4766Z" fill="white"/>
</g>
<g id="g180">
<path id="path178" d="M38.5367 24.8126L38.2753 24.7192C39.2368 22.1333 39.2368 18.7818 38.2753 15.9811L38.5367 15.8878C39.5169 18.7445 39.5169 22.1706 38.5367 24.8126Z" fill="white"/>
</g>
<g id="g190">
<g id="g184">
<path id="path182" d="M38.0604 22.4041C37.3976 22.4041 36.7534 22.2921 36.1653 22.0774L36.2586 21.816C37.3789 22.2267 38.7139 22.2267 39.9275 21.816L40.0209 22.0774C39.3861 22.2921 38.7139 22.4041 38.0604 22.4041Z" fill="white"/>
</g>
<g id="g188">
<path id="path186" d="M36.2588 18.8752L36.1654 18.6138C37.4444 18.1751 38.8447 18.1751 40.021 18.6138L39.9276 18.8752C38.8074 18.4645 37.4724 18.4645 36.2588 18.8752Z" fill="white"/>
</g>
</g>
</g>
<path id="path194" d="M20.4817 4.65696C20.7991 4.5636 21.0045 4.80633 20.9578 5.03038C21.5739 4.39556 22.5729 4.16217 22.5729 4.16217L20.4817 4.65696Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="path196" d="M29.5185 4.65696C29.2011 4.5636 28.921 4.86234 29.0798 5.12374C28.3796 4.58227 27.5861 4.16217 27.5861 4.16217L29.5185 4.65696Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path id="circle198" d="M24.9534 28.3413C29.2998 28.3413 32.8233 24.8178 32.8233 20.4714C32.8233 16.1249 29.2998 12.6015 24.9534 12.6015C20.607 12.6015 17.0835 16.1249 17.0835 20.4714C17.0835 24.8178 20.607 28.3413 24.9534 28.3413Z" fill="white" stroke="white" stroke-width="2" stroke-miterlimit="10"/>
<path id="circle205" d="M24.9533 27.1557C28.6449 27.1557 31.6376 24.163 31.6376 20.4714C31.6376 16.7798 28.6449 13.7871 24.9533 13.7871C21.2617 13.7871 18.269 16.7798 18.269 20.4714C18.269 24.163 21.2617 27.1557 24.9533 27.1557Z" fill="#232325" stroke="white" stroke-width="2" stroke-miterlimit="10"/>
<g id="g223">
<g id="g217">
<path id="path215" d="M27.3806 26.5115C26.9138 26.5115 26.447 26.3342 26.0923 25.9794L19.4453 19.3325C18.7358 18.623 18.7358 17.4654 19.4453 16.7465L21.2284 14.9634C21.9379 14.2539 23.0955 14.2539 23.8144 14.9634L30.4613 21.6104C31.1708 22.3199 31.1708 23.4775 30.4613 24.1963L28.6782 25.9794C28.3235 26.3342 27.8567 26.5115 27.3806 26.5115ZM22.5167 15.0194C22.1807 15.0194 21.8726 15.1501 21.6392 15.3835L19.8561 17.1666C19.6227 17.4 19.492 17.7081 19.492 18.0442C19.492 18.3803 19.6227 18.6883 19.8561 18.9217L26.503 25.5687C26.9885 26.0541 27.7727 26.0541 28.2581 25.5687L30.0412 23.7856C30.5267 23.3001 30.5267 22.5159 30.0412 22.0305L23.3943 15.3835C23.1609 15.1408 22.8528 15.0194 22.5167 15.0194Z" fill="white"/>
</g>
<g id="g221">
<path id="path219" d="M22.5167 26.5115C22.05 26.5115 21.5832 26.3342 21.2284 25.9794L19.4453 24.1963C18.7358 23.4868 18.7358 22.3292 19.4453 21.6104L26.0923 14.9634C26.8018 14.2539 27.9594 14.2539 28.6782 14.9634L30.4613 16.7465C31.1708 17.456 31.1708 18.6136 30.4613 19.3325L23.8144 25.9794C23.4503 26.3342 22.9835 26.5115 22.5167 26.5115ZM21.6392 25.5593C21.8726 25.7927 22.1807 25.9234 22.5167 25.9234C22.8528 25.9234 23.1609 25.7927 23.3943 25.5593L30.0412 18.9124C30.5267 18.4269 30.5267 17.6427 30.0412 17.1573L28.2581 15.3742C27.7727 14.8887 26.9885 14.8887 26.503 15.3742L19.8561 22.0211C19.3706 22.5066 19.3706 23.2908 19.8561 23.7762L21.6392 25.5593Z" fill="white"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,22 @@
<svg width="158" height="29" viewBox="0 0 158 29" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="onXRP logo">
<g id="Group">
<g id="Mask group">
<mask id="mask0_503_71" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="42" height="29">
<g id="Group_2">
<path id="Vector" d="M7.17842 0C7.10246 0.0018759 7.0266 0.00657553 6.95098 0.0140892C6.01204 0.0140892 5.07209 0.480038 4.50853 1.22676C1.59225 4.88256 0.00275779 9.41971 0 14.0962C0 18.7587 1.59711 23.3286 4.50853 26.9656C5.07209 27.7124 6.01204 28.0847 6.95098 28.1783H7.13917C7.98452 28.1783 8.82987 27.8059 9.58163 26.9656L17.1898 19.4118C18.0873 18.516 19.3036 18.0129 20.5717 18.0129C21.8398 18.0129 23.056 18.516 23.9536 19.4118L31.5617 26.9656C32.3135 27.7124 33.2524 28.0847 34.1924 27.9921C35.1323 27.9921 36.0713 27.5252 36.6348 26.7795C39.5472 23.236 41.1433 18.6661 41.1433 14.0026C41.1433 9.43369 39.5472 4.86378 36.6348 1.22676C36.0713 0.480038 35.1323 0.107681 34.1924 0.0140892C33.1588 0.0140892 32.2199 0.386445 31.5627 1.04058L23.9536 8.59338C23.0561 9.48889 21.84 9.99182 20.5722 9.99182C19.3043 9.99182 18.0883 9.48889 17.1908 8.59338L9.58062 1.03958C8.92045 0.384433 8.11435 0.0161019 7.29114 0H7.17842ZM25.9271 10.5528L33.5352 2.99797C33.7234 2.90538 33.817 2.90538 33.9106 2.90538C34.0052 2.90538 34.0988 2.99797 34.1924 3.09156C36.7284 6.26162 38.1373 10.0858 38.1373 14.0962C38.1373 18.1066 36.7284 22.0234 34.1924 25.1008C34.0988 25.287 34.0052 25.287 33.9106 25.287C33.817 25.287 33.6288 25.287 33.5352 25.1944L25.9271 17.6396C22.92 14.6557 18.0361 14.6557 15.0301 17.6396L7.42096 25.1944C7.23277 25.287 7.13917 25.287 7.04558 25.287C6.95098 25.287 6.85739 25.1944 6.7638 25.1008C4.22775 21.9308 2.81884 18.1066 2.81884 14.0962C2.81884 10.0858 4.22775 6.16904 6.7638 3.09156C6.85739 2.90538 7.04558 2.90538 7.13917 2.90538C7.13917 2.90538 7.32737 2.90538 7.42096 2.99797L15.0291 10.5528C16.4774 11.9906 18.4368 12.7955 20.4776 12.7909C22.5184 12.7955 24.4778 11.9906 25.9261 10.5528H25.9271Z" fill="white"/>
</g>
</mask>
<g mask="url(#mask0_503_71)">
<g id="Group_3">
<path id="Vector_2" d="M7.17842 0C7.10246 0.0018759 7.0266 0.00657553 6.95098 0.0140892C6.01204 0.0140892 5.07209 0.480038 4.50853 1.22676C1.59225 4.88256 0.00275779 9.41971 0 14.0962C0 18.7587 1.59711 23.3286 4.50853 26.9656C5.07209 27.7124 6.01204 28.0847 6.95098 28.1783H7.13917C7.98452 28.1783 8.82987 27.8059 9.58163 26.9656L17.1898 19.4118C18.0873 18.516 19.3036 18.0129 20.5717 18.0129C21.8398 18.0129 23.056 18.516 23.9536 19.4118L31.5617 26.9656C32.3135 27.7124 33.2524 28.0847 34.1924 27.9921C35.1323 27.9921 36.0713 27.5252 36.6348 26.7795C39.5472 23.236 41.1433 18.6661 41.1433 14.0026C41.1433 9.43369 39.5472 4.86378 36.6348 1.22676C36.0713 0.480038 35.1323 0.107681 34.1924 0.0140892C33.1588 0.0140892 32.2199 0.386445 31.5627 1.04058L23.9536 8.59338C23.0561 9.48889 21.84 9.99182 20.5722 9.99182C19.3043 9.99182 18.0883 9.48889 17.1908 8.59338L9.58062 1.03958C8.92045 0.384433 8.11435 0.0161019 7.29114 0H7.17842ZM25.9271 10.5528L33.5352 2.99797C33.7234 2.90538 33.817 2.90538 33.9106 2.90538C34.0052 2.90538 34.0988 2.99797 34.1924 3.09156C36.7284 6.26162 38.1373 10.0858 38.1373 14.0962C38.1373 18.1066 36.7284 22.0234 34.1924 25.1008C34.0988 25.287 34.0052 25.287 33.9106 25.287C33.817 25.287 33.6288 25.287 33.5352 25.1944L25.9271 17.6396C22.92 14.6557 18.0361 14.6557 15.0301 17.6396L7.42096 25.1944C7.23277 25.287 7.13917 25.287 7.04558 25.287C6.95098 25.287 6.85739 25.1944 6.7638 25.1008C4.22775 21.9308 2.81884 18.1066 2.81884 14.0962C2.81884 10.0858 4.22775 6.16904 6.7638 3.09156C6.85739 2.90538 7.04558 2.90538 7.13917 2.90538C7.13917 2.90538 7.32737 2.90538 7.42096 2.99797L15.0291 10.5528C16.4774 11.9906 18.4368 12.7955 20.4776 12.7909C22.5184 12.7955 24.4778 11.9906 25.9261 10.5528H25.9271Z" fill="white"/>
<path id="Vector_3" d="M7.17842 0C7.10246 0.0018759 7.0266 0.00657553 6.95098 0.0140892C6.01204 0.0140892 5.07209 0.480038 4.50853 1.22676C1.59225 4.88256 0.00275779 9.41971 0 14.0962C0 18.7587 1.59711 23.3286 4.50853 26.9656C5.07209 27.7124 6.01204 28.0847 6.95098 28.1783H7.13917C7.98452 28.1783 8.82987 27.8059 9.58163 26.9656L17.1898 19.4118C18.0873 18.516 19.3036 18.0129 20.5717 18.0129C21.8398 18.0129 23.056 18.516 23.9536 19.4118L31.5617 26.9656C32.3135 27.7124 33.2524 28.0847 34.1924 27.9921C35.1323 27.9921 36.0713 27.5252 36.6348 26.7795C39.5472 23.236 41.1433 18.6661 41.1433 14.0026C41.1433 9.43369 39.5472 4.86378 36.6348 1.22676C36.0713 0.480038 35.1323 0.107681 34.1924 0.0140892C33.1588 0.0140892 32.2199 0.386445 31.5627 1.04058L23.9536 8.59338C23.0561 9.48889 21.84 9.99182 20.5722 9.99182C19.3043 9.99182 18.0883 9.48889 17.1908 8.59338L9.58062 1.03958C8.92045 0.384433 8.11435 0.0161019 7.29114 0H7.17842ZM25.9271 10.5528L33.5352 2.99797C33.7234 2.90538 33.817 2.90538 33.9106 2.90538C34.0052 2.90538 34.0988 2.99797 34.1924 3.09156C36.7284 6.26162 38.1373 10.0858 38.1373 14.0962C38.1373 18.1066 36.7284 22.0234 34.1924 25.1008C34.0988 25.287 34.0052 25.287 33.9106 25.287C33.817 25.287 33.6288 25.287 33.5352 25.1944L25.9271 17.6396C22.92 14.6557 18.0361 14.6557 15.0301 17.6396L7.42096 25.1944C7.23277 25.287 7.13917 25.287 7.04558 25.287C6.95098 25.287 6.85739 25.1944 6.7638 25.1008C4.22775 21.9308 2.81884 18.1066 2.81884 14.0962C2.81884 10.0858 4.22775 6.16904 6.7638 3.09156C6.85739 2.90538 7.04558 2.90538 7.13917 2.90538C7.13917 2.90538 7.32737 2.90538 7.42096 2.99797L15.0291 10.5528C16.4774 11.9906 18.4368 12.7955 20.4776 12.7909C22.5184 12.7955 24.4778 11.9906 25.9261 10.5528H25.9271Z" fill="white"/>
</g>
</g>
</g>
</g>
<g id="Group_4">
<path id="Vector_4" fill-rule="evenodd" clip-rule="evenodd" d="M107.369 11.6719L100.887 5.32974H98.5383V7.5679L105.019 14.0026L98.5383 20.3448V22.7701H100.699L107.368 16.2408L114.037 22.7691H116.198V20.3437L109.717 14.0036L116.198 7.5679V5.32974H113.85L107.369 11.6719ZM72.7059 18.6661C72.1423 19.2257 71.3906 19.598 70.5452 19.598H68.0092C67.1638 19.598 66.5066 19.3183 65.8485 18.6661C65.2849 18.1066 64.9095 17.3599 64.9095 16.5206C64.9095 15.6812 65.1913 14.9355 65.8485 14.376C66.4121 13.8164 67.1638 13.5367 68.0092 13.5367H70.5452C71.3906 13.5367 72.0487 13.8164 72.7059 14.376C73.2694 14.9355 73.6458 15.6812 73.6458 16.5206C73.6458 17.3599 73.364 18.1066 72.7059 18.6661ZM73.7394 11.1123C72.7995 10.5528 71.6723 10.273 70.5452 10.273H68.0092C66.882 10.273 65.8485 10.5528 64.8149 11.1123C63.876 11.6719 63.0307 12.4176 62.5607 13.3505C61.9971 14.2824 61.7153 15.4015 61.7153 16.5206C61.7153 17.6396 61.9971 18.6661 62.5607 19.6916C63.1242 20.6245 63.876 21.4628 64.8149 21.9298C65.7549 22.4893 66.882 22.7691 68.0092 22.7691H70.5452C71.6723 22.7691 72.7059 22.4893 73.7394 21.9298C74.6784 21.3702 75.5237 20.6245 75.9937 19.6916C76.5572 18.7587 76.839 17.6396 76.839 16.5216C76.839 15.4015 76.5572 14.376 75.9937 13.3505C75.5237 12.4176 74.773 11.6719 73.7394 11.1123ZM154.336 12.9771C154.055 13.4431 153.678 13.8164 153.209 14.0962C152.739 14.376 152.176 14.4686 151.706 14.4686H143.628V8.5944H151.706C152.269 8.5944 152.739 8.68799 153.209 8.96776C153.678 9.24753 154.055 9.5273 154.336 9.99426C154.618 10.4602 154.805 10.9262 154.805 11.3931C154.805 11.9527 154.618 12.5112 154.336 12.9771ZM157.154 8.40923C156.601 7.48662 155.826 6.71689 154.9 6.17006C153.963 5.61124 152.891 5.32087 151.8 5.33075H140.433V22.7711H143.721V17.6406H151.799C152.926 17.6406 153.96 17.3609 154.899 16.8013C155.825 16.2548 156.6 15.4854 157.153 14.5632C157.718 13.6313 158 12.5122 158 11.4857C158.009 10.4013 157.716 9.3356 157.154 8.40822M133.482 12.9771C133.201 13.4431 132.825 13.8164 132.355 14.0962C131.885 14.376 131.415 14.4686 130.852 14.4686H122.68V8.5944H130.758C131.322 8.5944 131.792 8.68799 132.261 8.96776C132.731 9.24753 133.106 9.5273 133.388 9.99426C133.67 10.4602 133.858 10.9262 133.858 11.3931C133.952 11.9527 133.764 12.5112 133.482 12.9771ZM136.207 14.5632C136.77 13.6313 137.052 12.5122 137.052 11.4857C137.062 10.4013 136.769 9.3356 136.207 8.40822C135.654 7.48598 134.879 6.71661 133.952 6.17006C133.016 5.61124 131.943 5.32087 130.853 5.33075H119.486V22.7711H122.774V17.6406H128.598L133.858 22.7701H137.146V21.4648L132.919 17.2683C133.294 17.1747 133.671 16.9885 134.046 16.8013C134.923 16.225 135.662 15.4604 136.207 14.5632ZM92.1509 11.1123C91.211 10.5528 90.0838 10.273 88.9567 10.273H86.4207C85.2935 10.273 84.26 10.5528 83.4146 11.0177V10.273H80.1268V22.7691H83.4146V16.5206C83.4146 15.6812 83.6964 15.0291 84.26 14.376C84.8236 13.8164 85.5753 13.5367 86.4207 13.5367H88.9567C89.8021 13.5367 90.5538 13.8164 91.1174 14.376C91.6809 14.9355 91.9627 15.6812 91.9627 16.5206V22.7701H95.2505V16.5206C95.2505 15.4015 94.9688 14.376 94.4052 13.3505C93.9352 12.4176 93.0899 11.6719 92.1509 11.1123Z" fill="white"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@@ -0,0 +1,20 @@
<svg width="180" height="44" viewBox="0 0 180 44" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="raised in space logo">
<path id="Vector" d="M32.9617 0.758202C34.5544 0.736598 36.1494 0.735398 37.742 0.759402C37.4804 1.82156 37.1924 2.87773 36.9067 3.93269C35.3165 3.94949 33.7262 3.94349 32.136 3.93629C32.3772 2.86933 32.6821 1.81676 32.9617 0.758202Z" fill="white"/>
<path id="Vector_2" d="M75.8168 0.760557C77.4094 0.734153 79.0045 0.737754 80.5983 0.759357C79.3177 5.64051 77.9915 10.5109 76.6941 15.3884C75.9968 17.9568 75.3355 20.5336 74.6178 23.096C71.4601 23.1056 68.3024 23.096 65.1447 23.1008C64.3706 23.0948 63.4801 22.9964 62.946 22.3675C62.4227 21.7146 62.5163 20.8048 62.7084 20.0451C63.7129 16.2813 64.7187 12.5164 65.7232 8.75258C65.9513 7.89325 66.3509 7.04832 67.0266 6.45183C67.6411 5.90575 68.4536 5.6153 69.2686 5.56369C71.0304 5.49648 72.7983 5.6225 74.5578 5.50008C74.973 3.91824 75.3919 2.3388 75.8168 0.760557ZM70.5264 8.74778C70.1699 9.90116 69.8975 11.0773 69.5722 12.2391C68.9037 14.7871 68.1896 17.3255 67.5475 19.8807C68.5989 19.8855 69.6514 19.8975 70.704 19.8735C71.6881 16.1661 72.6879 12.4612 73.6492 8.74778C72.6087 8.72618 71.5669 8.74058 70.5264 8.74778Z" fill="white"/>
<path id="Vector_3" d="M86.2871 3.93598C86.5824 2.86901 86.802 1.77805 87.1704 0.733887C88.7463 0.765092 90.3221 0.724285 91.898 0.75669C91.6483 1.82485 91.3675 2.88702 91.0566 3.93958C89.4664 3.94078 87.8762 3.94558 86.2871 3.93598Z" fill="white"/>
<path id="Vector_4" d="M4.6938 5.55616C7.28019 5.53576 9.86779 5.55616 12.4542 5.54656C13.1035 5.54296 13.7936 5.55496 14.3685 5.89702C14.8077 6.14665 15.1042 6.61233 15.1618 7.1128C15.265 7.93853 15.0286 8.75705 14.7669 9.53357C13.1995 9.52877 11.6321 9.54918 10.0646 9.52277C10.0994 9.26593 10.1342 9.01149 10.1666 8.75465C9.65776 8.73185 9.14528 8.71745 8.6364 8.77026C7.3414 13.541 6.08121 18.3225 4.77781 23.0921C3.18517 23.1041 1.59252 23.1065 -0.00012207 23.0897C1.55172 17.2424 3.12756 11.3999 4.6938 5.55616Z" fill="white"/>
<path id="Vector_5" d="M17.7098 6.58317C18.4299 5.85106 19.4813 5.53541 20.4907 5.54861C22.6546 5.54621 24.8185 5.54861 26.9825 5.54741C27.6042 5.54501 28.2667 5.62543 28.7767 6.01069C29.1932 6.31913 29.4116 6.83401 29.4428 7.34169C29.5088 8.12541 29.2508 8.88273 29.054 9.62924C28.0062 13.5442 26.9597 17.4592 25.9107 21.3742C25.7547 21.9491 25.6202 22.5312 25.4318 23.0965C22.2657 23.1025 19.1008 23.0977 15.936 23.0989C15.1654 23.0917 14.2761 22.9885 13.7552 22.3488C13.2668 21.7343 13.3268 20.8822 13.502 20.1633C13.868 18.7278 14.2569 17.2996 14.6278 15.8654C14.8414 15.0277 15.055 14.1587 15.5759 13.4494C16.0284 12.8001 16.7089 12.3189 17.471 12.1028C18.3351 11.8424 19.2473 11.9384 20.1354 11.9204C21.2876 11.9048 22.441 11.9492 23.5907 11.9024C23.7732 11.7212 23.7708 11.4271 23.8536 11.1943C24.0468 10.3722 24.3144 9.56923 24.4693 8.7387C23.4287 8.7195 22.3894 8.7279 21.35 8.7339C21.2708 9.00034 21.1724 9.26078 21.0968 9.52723C19.5161 9.53563 17.9355 9.54403 16.356 9.52362C16.5733 8.46146 16.9141 7.35969 17.7098 6.58317ZM19.6397 15.1069C19.1801 16.6863 18.7732 18.2814 18.3555 19.8728C19.4069 19.8764 20.4571 19.9004 21.5084 19.8752C21.9261 18.2886 22.375 16.7091 22.7626 15.1153C21.7221 15.0925 20.6803 15.1057 19.6397 15.1069Z" fill="white"/>
<path id="Vector_6" d="M31.6846 5.55635C33.2749 5.53955 34.8663 5.54555 36.4566 5.55395C34.9263 11.406 33.3337 17.2413 31.7747 23.0862C30.1796 23.1114 28.5846 23.1042 26.9907 23.0886C28.5402 17.2413 30.1136 11.3988 31.6846 5.55635Z" fill="white"/>
<path id="Vector_7" d="M38.5978 6.34561C39.3083 5.77672 40.2349 5.54269 41.1326 5.54869C43.3374 5.54869 45.5421 5.54389 47.7468 5.55109C48.5594 5.54869 49.5267 5.81033 49.8832 6.62045C50.2756 7.5626 49.9696 8.60676 49.6791 9.5321C48.0997 9.5297 46.5203 9.5465 44.9408 9.5237C44.9948 9.26206 45.044 9.00042 45.0944 8.73758C44.0515 8.72077 43.0097 8.72677 41.968 8.73398C41.5923 10.0494 41.2214 11.3672 40.8974 12.6958C42.4984 12.7138 44.0995 12.6898 45.7005 12.7054C46.429 12.7366 47.2584 12.8374 47.76 13.4315C48.3049 14.076 48.2101 14.9989 48.0301 15.7647C47.6664 17.1485 47.2836 18.5287 46.9127 19.9113C46.6823 20.7754 46.2754 21.6264 45.5805 22.2132C44.8268 22.8721 43.7958 23.1002 42.8177 23.099C40.8182 23.1014 38.8187 23.0966 36.8192 23.1014C36.1519 23.1002 35.4534 23.0498 34.8581 22.7221C34.4068 22.4725 34.0923 22.0068 34.0215 21.4967C33.9003 20.689 34.1656 19.8969 34.3624 19.124C35.0585 19.0244 35.7594 19.124 36.4579 19.1084C37.3484 19.124 38.239 19.0232 39.1283 19.1084C39.0755 19.3652 39.0407 19.6256 38.9951 19.8837C40.0273 19.8885 41.0594 19.8825 42.0916 19.8873C42.4948 18.5851 42.8225 17.2589 43.1489 15.9363C41.4759 15.9099 39.8028 15.9435 38.131 15.9219C37.4361 15.8955 36.6619 15.713 36.2251 15.125C35.7618 14.4757 35.8578 13.6127 36.0294 12.8782C36.4003 11.4992 36.7796 10.1214 37.154 8.74238C37.3977 7.83264 37.8405 6.9349 38.5978 6.34561Z" fill="white"/>
<path id="Vector_8" d="M54.2505 5.67974C54.7882 5.53692 55.3487 5.54652 55.9008 5.54652C57.9423 5.55132 59.985 5.54412 62.0265 5.55012C62.767 5.55132 63.6108 5.72295 64.0608 6.36865C64.5385 7.08396 64.3813 8.0033 64.1725 8.78342C63.4487 11.4238 62.7898 14.0822 62.0409 16.7142C59.3969 16.7214 56.7541 16.7106 54.1101 16.719C53.7993 17.7644 53.5244 18.8206 53.27 19.8815C54.3189 19.8839 55.3691 19.8971 56.4181 19.8743C56.4841 19.6139 56.5789 19.3618 56.6521 19.1026C57.521 19.0354 58.3912 19.1374 59.2613 19.1086C59.9742 19.123 60.6883 19.033 61.4 19.1086C61.1432 20.3772 60.6619 21.7334 59.5229 22.4703C58.5316 23.1412 57.287 23.1196 56.1408 23.0992C54.4606 23.1004 52.7803 23.098 51.1012 23.1016C50.4087 23.1016 49.6634 23.0764 49.0657 22.6851C48.6541 22.4199 48.3984 21.9626 48.33 21.485C48.2028 20.7 48.45 19.9259 48.6493 19.1758C49.505 15.9833 50.3559 12.7896 51.2093 9.59714C51.4469 8.6754 51.6761 7.71165 52.281 6.94954C52.7611 6.31224 53.4752 5.86337 54.2505 5.67974ZM56.2536 8.74021C55.8168 10.3221 55.3907 11.9063 54.9898 13.4965C56.0244 13.5253 57.059 13.4977 58.0947 13.5133C58.3468 12.8676 58.4704 12.1823 58.6648 11.5186C58.8976 10.5969 59.1857 9.68836 59.3777 8.75701C58.3372 8.72821 57.2954 8.73781 56.2536 8.74021Z" fill="white"/>
<path id="Vector_9" d="M85.8419 5.5611C87.4357 5.5347 89.0295 5.5491 90.6222 5.5539C89.332 10.5167 87.9734 15.4638 86.6556 20.4206C86.4035 21.3111 86.2019 22.2149 85.9211 23.097C84.3344 23.097 82.7478 23.1114 81.1611 23.0898C82.695 17.2401 84.29 11.406 85.8419 5.5611Z" fill="white"/>
<path id="Vector_10" d="M92.1741 5.55605C95.327 5.53685 98.4799 5.55485 101.633 5.54645C102.265 5.54165 102.942 5.58965 103.482 5.95691C103.935 6.25816 104.192 6.79224 104.219 7.32632C104.28 8.02003 104.09 8.69813 103.906 9.35943C102.661 13.9309 101.465 18.5156 100.199 23.0799C98.6155 23.0847 97.0325 23.1063 95.4507 23.0811C96.1588 20.3399 96.9113 17.6107 97.6362 14.8731C98.1631 12.8268 98.7692 10.7985 99.2444 8.73894C98.1991 8.72334 97.1525 8.71853 96.1071 8.74134C94.8145 13.5205 93.5508 18.3068 92.2618 23.0859C90.6679 23.1099 89.0741 23.1051 87.4802 23.0883C89.0273 17.2398 90.6019 11.3973 92.1741 5.55605Z" fill="white"/>
<path id="Vector_11" d="M112.157 5.86341C112.771 5.60057 113.446 5.53696 114.108 5.54657C116.271 5.55497 118.434 5.53696 120.597 5.55617C121.374 5.56937 122.278 5.85141 122.615 6.62073C123.009 7.56287 122.701 8.60824 122.409 9.53358C120.831 9.52878 119.251 9.54678 117.673 9.52398C117.726 9.26234 117.775 8.9995 117.824 8.73785C116.782 8.72225 115.741 8.72585 114.7 8.73545C114.322 10.0497 113.954 11.3675 113.628 12.6961C115.189 12.7117 116.749 12.6961 118.31 12.7021C118.894 12.7237 119.507 12.7657 120.03 13.0525C120.453 13.283 120.759 13.7042 120.85 14.1771C120.991 14.8756 120.82 15.5849 120.636 16.2582C120.289 17.5064 119.961 18.7594 119.616 20.0076C119.371 20.8921 118.922 21.7551 118.181 22.3215C117.405 22.9276 116.39 23.1113 115.429 23.1005C113.347 23.0945 111.266 23.1065 109.186 23.0945C108.356 23.0693 107.373 22.8664 106.943 22.0707C106.479 21.1322 106.853 20.0736 107.093 19.1266C107.629 19.063 108.17 19.0594 108.709 19.087C109.759 19.1543 110.812 19.0138 111.863 19.1002C111.809 19.3607 111.773 19.6223 111.726 19.884C112.758 19.8888 113.79 19.8828 114.823 19.8876C115.226 18.5866 115.553 17.2604 115.88 15.9366C114.246 15.9126 112.614 15.939 110.981 15.9258C110.274 15.9138 109.487 15.7601 109.01 15.1936C108.586 14.686 108.578 13.9791 108.664 13.3586C108.837 12.4416 109.137 11.5535 109.366 10.6497C109.622 9.77721 109.805 8.88188 110.124 8.02855C110.486 7.0816 111.2 6.24267 112.157 5.86341Z" fill="white"/>
<path id="Vector_12" d="M125.056 5.53857C126.606 5.48096 128.16 5.50497 129.712 5.54937C131.394 5.55057 133.076 5.54457 134.759 5.55057C135.498 5.55057 136.34 5.7258 136.79 6.3703C137.243 7.0508 137.126 7.92934 136.947 8.68185C135.962 12.3808 134.972 16.0774 133.984 19.7764C133.669 20.9525 132.998 22.1263 131.864 22.6736C130.828 23.2077 129.635 23.0901 128.512 23.0997C127.38 23.1093 126.247 23.0817 125.117 23.1129C124.678 24.7007 124.29 26.3018 123.829 27.8836C122.242 27.8872 120.655 27.8968 119.068 27.8776C120.734 21.5214 122.468 15.182 124.159 8.83188C124.464 7.73611 124.728 6.62834 125.056 5.53857ZM128.981 8.74906C128.697 9.6432 128.492 10.5613 128.236 11.4639C127.497 14.2711 126.719 17.0687 126.001 19.882C127.055 19.8856 128.109 19.8952 129.161 19.876C130.142 16.165 131.148 12.4612 132.105 8.74546C131.064 8.72986 130.022 8.73946 128.981 8.74906Z" fill="white"/>
<path id="Vector_13" d="M139.704 6.51854C140.425 5.82723 141.445 5.53559 142.428 5.54879C144.632 5.54759 146.836 5.54519 149.04 5.54999C149.728 5.55239 150.487 5.70481 150.958 6.2485C151.403 6.77058 151.432 7.51109 151.337 8.16039C151.227 8.82289 151.016 9.46379 150.852 10.1143C149.687 14.4398 148.552 18.7736 147.367 23.0931C144.402 23.1099 141.438 23.0931 138.474 23.1003C137.589 23.0991 136.583 23.1495 135.864 22.541C135.252 22.0021 135.221 21.0936 135.389 20.3507C135.653 19.2333 135.968 18.1291 136.254 17.0166C136.494 16.1632 136.666 15.2883 136.971 14.453C137.297 13.5924 137.888 12.8027 138.72 12.3766C139.341 12.0502 140.051 11.9218 140.749 11.9218C142.355 11.9134 143.962 11.929 145.569 11.917C145.873 10.8656 146.162 9.80944 146.402 8.74248C145.363 8.71368 144.324 8.73408 143.286 8.73048C143.206 9.00052 143.092 9.25856 143.02 9.531C141.442 9.5322 139.862 9.5454 138.285 9.5238C138.508 8.43403 138.864 7.29626 139.704 6.51854ZM141.534 15.1491C141.131 16.7273 140.677 18.2923 140.288 19.873C141.337 19.8754 142.386 19.903 143.435 19.873C143.86 18.2899 144.298 16.7105 144.693 15.1191C143.64 15.1107 142.583 15.0578 141.534 15.1491Z" fill="white"/>
<path id="Vector_14" d="M153.642 6.89307C154.334 5.99894 155.475 5.54767 156.589 5.55127C158.712 5.54167 160.834 5.55247 162.957 5.54647C163.577 5.54527 164.232 5.55367 164.792 5.85731C165.265 6.10095 165.595 6.58463 165.658 7.11271C165.761 7.93963 165.521 8.75816 165.262 9.53468C163.696 9.52868 162.129 9.54428 160.564 9.52628C160.597 9.26944 160.633 9.0138 160.666 8.75696C159.632 8.72935 158.597 8.73175 157.563 8.74616C156.559 12.4547 155.559 16.1657 154.577 19.8803C155.629 19.8863 156.68 19.8935 157.733 19.8767C157.799 19.6198 157.887 19.3702 157.956 19.1133C159.021 19.0257 160.089 19.1301 161.157 19.1037C161.674 19.0977 162.192 19.0557 162.71 19.1109C162.486 20.1971 162.132 21.3313 161.293 22.1066C160.561 22.8183 159.513 23.092 158.514 23.098C156.396 23.1016 154.276 23.098 152.157 23.0992C151.466 23.0896 150.701 23.0079 150.168 22.5183C149.717 22.1138 149.584 21.4705 149.611 20.8884C149.657 20.1455 149.902 19.4374 150.087 18.7209C150.869 15.7864 151.654 12.8508 152.439 9.91634C152.722 8.87098 152.93 7.75 153.642 6.89307Z" fill="white"/>
<path id="Vector_15" d="M168.465 6.35793C169.167 5.77945 170.095 5.54421 170.993 5.54901C173.116 5.54421 175.239 5.55141 177.363 5.54541C178.026 5.54541 178.744 5.58622 179.299 5.99308C179.647 6.24392 179.83 6.64838 180 7.03004V7.96138C179.21 10.8634 178.458 13.7763 177.673 16.6795C175.019 16.7719 172.362 16.6783 169.707 16.7263C169.406 17.7705 169.135 18.8242 168.868 19.8792C169.914 19.8876 170.96 19.8972 172.006 19.8732C172.093 19.6212 172.175 19.3667 172.264 19.1147C173.081 19.0283 173.901 19.1351 174.719 19.0955C175.478 19.0643 176.239 19.0547 176.997 19.1135C176.778 20.2309 176.397 21.3938 175.516 22.168C174.754 22.8713 173.686 23.1077 172.678 23.1005C170.557 23.0969 168.436 23.1041 166.317 23.0969C165.562 23.0789 164.687 22.9265 164.232 22.2556C163.759 21.5439 163.876 20.6341 164.076 19.8504C165.06 16.1586 166.05 12.4693 167.035 8.77871C167.278 7.86417 167.713 6.95923 168.465 6.35793ZM171.852 8.7547C171.43 10.3329 170.981 11.9064 170.605 13.4966C171.653 13.5086 172.702 13.535 173.748 13.4834C174.141 11.904 174.634 10.3485 174.971 8.7559C173.932 8.7355 172.891 8.7211 171.852 8.7547Z" fill="white"/>
<path id="Vector_16" d="M26.3705 24.729C26.5481 24.4422 26.7101 24.0389 27.1014 24.0161C27.9379 23.9573 28.7781 24.0113 29.617 23.9933C30.1439 24.0077 30.6912 23.9213 31.1964 24.1109C31.5397 27.3502 30.8148 30.6351 29.4718 33.5804C29.3637 33.7592 29.3001 34.1073 29.0205 33.962C28.8537 33.1891 28.8729 32.3886 28.712 31.6145C28.4432 31.9913 28.334 32.4486 28.1684 32.8759C26.895 36.2892 25.6312 39.7061 24.353 43.1158C24.2954 43.4039 24.0253 43.4723 23.7661 43.4411C23.7661 43.2034 23.7733 42.9658 23.8057 42.7306C24.2738 39.5873 24.725 36.4416 25.1883 33.2971C25.2687 32.7186 25.3779 32.1426 25.4067 31.5581C24.8847 32.2506 24.4838 33.0235 24.0001 33.7412C23.9173 33.9008 23.7445 33.9632 23.5933 34.0364C23.6245 30.7539 24.7694 27.5638 26.3705 24.729Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,15 @@
<svg width="170" height="23" viewBox="0 0 170 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="sologenic logo">
<path id="Vector" d="M10.4087 1.16977C8.35984 1.16977 6.34819 1.76581 4.63455 2.92065C2.92092 4.07549 1.57982 5.67737 0.79751 7.57726C0.0151999 9.47716 -0.20832 11.5633 0.201462 13.575C0.611243 15.5866 1.57982 17.4493 3.03268 18.9021C4.48554 20.355 6.34819 21.3608 8.35984 21.7334C10.3715 22.1431 12.4577 21.9196 14.3576 21.1373C16.2574 20.355 17.8966 19.0139 19.0142 17.3003C20.169 15.5866 20.765 13.575 20.765 11.5261C20.765 8.76936 19.6847 6.1244 17.7103 4.18725C15.8104 2.2501 13.1655 1.16977 10.4087 1.16977ZM13.4635 16.1082C12.5322 16.7787 11.3773 17.114 10.2225 17.0767C9.14215 17.1512 8.06182 16.816 7.16775 16.1454C6.79522 15.8474 6.53445 15.5121 6.34819 15.0651C6.16192 14.6553 6.05016 14.2083 6.08742 13.7612C6.05016 13.1279 6.23643 12.5319 6.64621 12.0476C7.05599 11.6378 7.54028 11.3398 8.06182 11.1535C8.69512 10.93 9.32842 10.7438 9.99897 10.632C10.595 10.5202 11.1538 10.2967 11.6753 10.0732C11.8616 9.9987 12.0106 9.88694 12.1224 9.73793C12.2341 9.58892 12.3086 9.40266 12.3086 9.21639C12.3086 9.03013 12.2714 8.88111 12.1969 8.69485C12.1224 8.54584 12.0106 8.39682 11.8616 8.32232C11.4891 8.06155 11.042 7.94979 10.5578 7.98705C10.0735 7.94979 9.58919 8.0988 9.17941 8.35957C8.99314 8.47133 8.88138 8.6576 8.76962 8.80661C8.65786 8.99287 8.58336 9.17914 8.58336 9.40266H6.45994C6.4972 8.95562 6.64621 8.50859 6.83247 8.0988C7.05599 7.68902 7.35401 7.31649 7.72654 7.05572C8.54611 6.45968 9.51468 6.16165 10.5205 6.19891C11.5636 6.1244 12.6067 6.45968 13.4635 7.13023C13.7988 7.391 14.0595 7.76353 14.2458 8.17331C14.4321 8.58309 14.5066 8.99287 14.5066 9.4399C14.5066 9.73793 14.4693 9.9987 14.3948 10.2967C14.283 10.5575 14.134 10.8183 13.9478 11.0418C13.538 11.4516 13.0537 11.7496 12.4949 11.9359C11.9361 12.1594 11.3401 12.3084 10.744 12.4574C10.148 12.5691 9.55193 12.7554 8.99314 12.9789C8.76962 13.0534 8.62061 13.2397 8.50885 13.426C8.39709 13.6122 8.35984 13.8357 8.35984 14.0593C8.35984 14.2455 8.39709 14.4318 8.4716 14.5808C8.54611 14.7298 8.65787 14.8788 8.80688 15.0278C9.21666 15.3631 9.7382 15.5121 10.2597 15.4376C10.8558 15.4749 11.4518 15.2886 11.8989 14.9161C12.3086 14.6181 12.5694 14.171 12.6812 13.6867H14.9163C14.8791 14.2083 14.6928 14.6926 14.4693 15.1396C14.2085 15.4004 13.8733 15.7729 13.4635 16.1082Z" fill="white"/>
<path id="Vector_2" d="M30.6369 17.2257C29.7801 17.2257 28.9233 17.0767 28.141 16.7787C27.4704 16.5179 26.8744 16.0708 26.4273 15.512C25.9803 14.9533 25.7195 14.32 25.645 13.6122H28.439C28.5507 14.0592 28.7743 14.4317 29.1468 14.6925C29.5938 14.9905 30.0781 15.1395 30.6369 15.1395C31.1212 15.1768 31.5682 15.065 31.978 14.767C32.0898 14.6552 32.2015 14.5435 32.276 14.3945C32.3505 14.2455 32.3878 14.0964 32.3878 13.9102C32.3878 13.7239 32.3505 13.5004 32.2388 13.3514C32.127 13.1651 31.978 13.0534 31.7917 12.9789C31.2329 12.7553 30.6742 12.6063 30.1154 12.4946C29.6683 12.3828 29.184 12.2711 28.6998 12.122C28.2527 11.973 27.8057 11.7868 27.3959 11.5632C27.0234 11.3397 26.6881 11.0417 26.4273 10.7064C26.1666 10.3339 26.0548 9.84962 26.0548 9.40258C26.0548 8.95555 26.1666 8.50851 26.3528 8.06148C26.5391 7.65169 26.8371 7.27917 27.2096 6.98115C28.1037 6.27334 29.2585 5.93806 30.3761 6.01257C31.4565 5.97532 32.5368 6.27334 33.3936 6.90664C33.7661 7.20466 34.1014 7.57719 34.3249 7.98697C34.5485 8.39675 34.6975 8.88104 34.7347 9.32808H32.127C31.978 8.54577 31.382 8.13598 30.3389 8.13598C29.9291 8.09873 29.4821 8.21049 29.1468 8.434C29.035 8.50851 28.9233 8.62027 28.8488 8.76928C28.7743 8.9183 28.737 9.06731 28.737 9.21632C28.737 9.55159 28.9605 9.77511 29.3703 9.96137C29.8918 10.1849 30.4506 10.3712 31.0467 10.4829C31.7917 10.6692 32.4623 10.8554 33.0956 11.0417C33.6544 11.228 34.1759 11.526 34.5857 11.973C34.9955 12.4573 35.1818 13.0906 35.1445 13.7239C35.1818 14.3572 34.9955 14.9905 34.623 15.512C34.2504 16.0708 33.6916 16.5179 33.0583 16.7787C32.276 17.0767 31.4565 17.2257 30.6369 17.2257Z" fill="white"/>
<path id="Vector_3" d="M42.1108 17.2257C41.1422 17.2257 40.1736 17.0022 39.3168 16.5179C38.4973 16.0336 37.8267 15.3631 37.3424 14.5435C36.8581 13.6494 36.5974 12.6436 36.6346 11.6378C36.5974 10.6319 36.8581 9.58886 37.3797 8.73204C37.864 7.91248 38.5345 7.24192 39.3541 6.75764C40.2109 6.27335 41.1795 6.04984 42.148 6.04984C43.1166 6.04984 44.0852 6.3106 44.942 6.75764C45.7616 7.24192 46.4321 7.91248 46.9164 8.73204C47.4007 9.62611 47.6242 10.6319 47.6242 11.6378C47.6242 12.6436 47.3634 13.6494 46.9164 14.5435C46.4321 15.3631 45.7616 16.0336 44.942 16.5179C44.0479 16.9649 43.0794 17.2257 42.1108 17.2257ZM42.1108 14.8043C42.4461 14.8043 42.8186 14.7297 43.1166 14.5807C43.4146 14.4317 43.7127 14.2455 43.9734 13.9847C44.495 13.2769 44.7557 12.4573 44.7557 11.5633C44.7557 10.7064 44.4577 9.84963 43.9734 9.14182C43.7499 8.88105 43.4519 8.69479 43.1166 8.54578C42.7813 8.39676 42.4461 8.32226 42.1108 8.32226C41.7755 8.32226 41.403 8.39676 41.105 8.54578C40.7697 8.69479 40.5089 8.88105 40.2481 9.14182C39.7266 9.84963 39.4658 10.6692 39.4658 11.5633C39.4658 12.4201 39.7266 13.2769 40.2481 13.9847C40.4717 14.2455 40.7697 14.4317 41.105 14.5807C41.403 14.767 41.7383 14.8043 42.1108 14.8043Z" fill="white"/>
<path id="Vector_4" d="M49.4497 17.2258V1.16977H52.2064V17.2258H49.4497Z" fill="white"/>
<path id="Vector_5" d="M59.6198 17.2257C58.6512 17.2257 57.6827 17.0022 56.8259 16.5179C56.0063 16.0336 55.3357 15.3631 54.8514 14.5435C54.3672 13.6494 54.1064 12.6436 54.1436 11.6378C54.1064 10.6319 54.3672 9.58886 54.8887 8.73204C55.373 7.91248 56.0435 7.24192 56.8631 6.75764C57.7199 6.27335 58.6885 6.04984 59.6571 6.04984C60.6256 6.04984 61.5942 6.3106 62.451 6.75764C63.2706 7.24192 63.9412 7.91248 64.4254 8.73204C64.9097 9.62611 65.1332 10.6319 65.1332 11.6378C65.1332 12.6436 64.8725 13.6494 64.4254 14.5435C63.9412 15.3631 63.2706 16.0336 62.451 16.5179C61.557 16.9649 60.5884 17.2257 59.6198 17.2257ZM59.6198 14.8043C59.9551 14.8043 60.3276 14.7297 60.6256 14.5807C60.9609 14.4317 61.2217 14.2455 61.4825 13.9847C62.004 13.2769 62.2648 12.4573 62.2648 11.5633C62.2648 10.7064 61.9667 9.84963 61.4825 9.14182C61.2589 8.88105 60.9609 8.69479 60.6256 8.54578C60.2904 8.39676 59.9551 8.32226 59.6198 8.32226C59.2845 8.32226 58.912 8.39676 58.614 8.54578C58.2787 8.69479 58.0179 8.88105 57.7572 9.14182C57.2356 9.84963 56.9749 10.6692 56.9749 11.5633C56.9749 12.4201 57.2356 13.2769 57.7572 13.9847C57.9807 14.2455 58.2787 14.4317 58.614 14.5807C58.9493 14.7297 59.2473 14.8043 59.6198 14.8043Z" fill="white"/>
<path id="Vector_6" d="M77.4639 6.12436H73.4778H73.4406C72.8818 5.9381 72.323 5.8636 71.727 5.8636C70.9074 5.82634 70.1251 6.0126 69.38 6.38513C68.784 6.68316 68.2997 7.16745 67.9644 7.72624C67.6291 8.32228 67.4801 8.95558 67.4801 9.62613C67.4429 10.1477 67.5546 10.7065 67.7782 11.1908C68.0017 11.675 68.337 12.1221 68.7467 12.4574L69.0075 12.6809L66.8841 14.767V15.0278C67.0331 15.1768 67.2194 15.3258 67.4056 15.4376C67.6664 15.6238 67.9272 15.7356 68.2252 15.8474L68.7467 16.0709L68.2997 16.4062C67.7782 16.7414 67.3684 17.1885 67.1076 17.71C66.9213 18.1198 66.8096 18.5296 66.7723 18.9766C66.7351 19.6472 66.9586 20.3177 67.3684 20.8392C67.8154 21.3608 68.4115 21.7706 69.1193 21.9568C69.9761 22.2176 70.8701 22.3666 71.7642 22.3294C72.6955 22.3666 73.6641 22.1803 74.5209 21.7706C75.1542 21.4725 75.6758 20.9883 76.0483 20.3922C76.3836 19.8707 76.5326 19.2746 76.5326 18.6413C76.5326 18.2315 76.4953 17.859 76.3091 17.4865C76.1601 17.114 75.9365 16.7787 75.6385 16.5179C74.7444 15.8474 73.6269 15.5121 72.5093 15.5493C71.6525 15.4748 70.9446 15.4003 70.4604 15.3258C70.0878 15.2886 69.6781 15.2141 69.3055 15.0651C69.0448 14.9905 68.8212 14.8788 68.5977 14.6925L68.2997 14.469L69.8643 13.0161L70.0506 13.0534C70.6094 13.2024 71.1682 13.3142 71.727 13.2769C72.5465 13.3142 73.3288 13.1279 74.0366 12.7554C74.6327 12.4574 75.117 11.9731 75.4523 11.4143C75.7875 10.8182 75.9738 10.1849 75.9365 9.51438C75.9365 8.76932 75.7503 8.06151 75.3032 7.42821L74.968 6.98118L77.3894 6.86942L77.4639 6.12436ZM69.7526 16.3689L69.8271 16.3316H69.9388C70.5349 16.4062 71.2799 16.5179 72.0995 16.5552C72.9563 16.5179 73.8131 16.7787 74.5209 17.263C74.7444 17.4492 74.9307 17.6728 75.0425 17.9335C75.1542 18.1943 75.2287 18.4923 75.2287 18.7531C75.2287 19.1256 75.1542 19.4981 74.968 19.8334C74.7817 20.1687 74.5209 20.4667 74.2229 20.653C73.4778 21.1373 72.621 21.3608 71.727 21.3235C70.8329 21.3608 69.9388 21.1373 69.1565 20.7275C68.784 20.5412 68.5232 20.2432 68.2997 19.9079C68.1134 19.5726 68.0017 19.1629 68.0389 18.7531C68.0389 18.3433 68.1879 17.9335 68.3742 17.561C68.7095 17.0395 69.1938 16.6297 69.7526 16.3689ZM73.8876 11.675C73.2916 12.1593 72.5093 12.4201 71.727 12.3828C70.9447 12.4201 70.1623 12.1593 69.529 11.675C69.231 11.4143 69.0075 11.079 68.8957 10.7437C68.7467 10.3712 68.6722 9.99866 68.7095 9.62613C68.6722 9.2536 68.7467 8.84382 68.8957 8.50855C69.0448 8.13602 69.2683 7.83799 69.529 7.57722C70.1623 7.09294 70.9074 6.83217 71.727 6.86942C72.5093 6.83217 73.2916 7.09294 73.8876 7.57722C74.1857 7.83799 74.4092 8.13602 74.5209 8.50855C74.6699 8.88107 74.7444 9.2536 74.7072 9.62613C74.7444 9.99866 74.6699 10.4084 74.5209 10.7437C74.4092 11.079 74.1857 11.4143 73.8876 11.675Z" fill="white"/>
<path id="Vector_7" d="M88.081 8.47125C87.6712 7.72619 87.0752 7.09289 86.3674 6.64585C85.5478 6.16157 84.6165 5.93805 83.6852 5.93805C82.7166 5.9008 81.748 6.16157 80.8912 6.64585C80.1089 7.09289 79.4383 7.8007 79.0286 8.58301C78.5815 9.51433 78.3208 10.5202 78.358 11.5632C78.3208 12.6063 78.5815 13.6121 79.0286 14.5435C79.4756 15.363 80.1089 16.0336 80.8912 16.4806C81.7108 16.9649 82.6421 17.1884 83.6107 17.1884C84.6165 17.2257 85.5851 16.9649 86.4046 16.4434C87.2242 15.8846 87.8575 15.1023 88.23 14.1709H86.9634C86.7027 14.767 86.2929 15.2513 85.7713 15.5865C85.138 15.9963 84.3557 16.2198 83.6107 16.1826C82.9401 16.1826 82.2696 16.0336 81.7108 15.6983C81.1147 15.363 80.6304 14.8787 80.2952 14.3199C79.8854 13.6121 79.6619 12.8298 79.6619 12.0103V11.675H88.7143C88.7143 11.5632 88.7143 11.4887 88.7143 11.4142C88.7143 11.2652 88.7143 11.0789 88.7143 10.9299C88.6771 10.0731 88.4535 9.2163 88.081 8.47125ZM79.6246 10.8182L79.6619 10.4829C79.6991 9.96136 79.8109 9.47707 80.0344 9.03004C80.2579 8.583 80.5932 8.17322 80.9657 7.83795C81.7108 7.2419 82.6421 6.94388 83.5734 6.94388C84.542 6.90662 85.4733 7.2419 86.2184 7.8752C86.5909 8.21047 86.8889 8.62025 87.0752 9.06729C87.2614 9.51432 87.3732 9.99861 87.3732 10.4829V10.8182H79.6246Z" fill="white"/>
<path id="Vector_8" d="M99.4058 6.98107C98.996 6.60854 98.5117 6.27326 97.9902 6.087C97.4687 5.90073 96.9099 5.78898 96.3511 5.82623C95.5688 5.82623 94.8237 6.0125 94.1531 6.42228C93.5571 6.75755 93.0356 7.20458 92.6258 7.76338L92.067 8.50844L92.1042 6.087H90.8376V17.0393H92.1415V11.3024C92.067 10.1103 92.4395 8.95547 93.1846 8.02415C93.5198 7.65162 93.9296 7.3536 94.4139 7.13008C94.861 6.94382 95.3825 6.83206 95.904 6.83206C96.3511 6.7948 96.8354 6.86931 97.2451 7.05558C97.6549 7.24184 98.0647 7.50261 98.3627 7.83789C98.9588 8.6947 99.2568 9.70053 99.1823 10.7436V17.0393H100.523V10.5201C100.635 9.29075 100.263 7.9869 99.4058 6.98107Z" fill="white"/>
<path id="Vector_9" d="M104.659 1.20696C104.472 1.0207 104.211 0.908936 103.913 0.908936C103.615 0.908936 103.392 1.0207 103.168 1.20696C103.057 1.28147 102.982 1.39322 102.945 1.54223C102.908 1.65399 102.87 1.803 102.87 1.91476C102.87 2.06377 102.87 2.17553 102.945 2.32455C102.982 2.4363 103.057 2.58531 103.168 2.65982C103.28 2.77158 103.392 2.84609 103.504 2.88334C103.615 2.92059 103.764 2.95784 103.913 2.95784C104.062 2.95784 104.174 2.92059 104.323 2.88334C104.435 2.84609 104.547 2.77158 104.659 2.65982C104.77 2.54806 104.845 2.4363 104.882 2.32455C104.919 2.21279 104.957 2.06377 104.957 1.91476C104.957 1.76575 104.919 1.65399 104.882 1.54223C104.808 1.43047 104.733 1.31872 104.659 1.20696ZM103.243 6.19884V17.1884H104.584V6.19884H103.243Z" fill="white"/>
<path id="Vector_10" d="M115.946 13.9847C115.76 14.6552 115.313 15.2513 114.754 15.6238C114.083 16.0708 113.264 16.2943 112.481 16.2571C111.774 16.2571 111.103 16.0708 110.507 15.7356C109.874 15.363 109.352 14.8042 109.017 14.1337C108.644 13.3514 108.458 12.4573 108.458 11.5632C108.458 10.6692 108.644 9.81234 109.017 8.99278C109.352 8.35948 109.837 7.83795 110.47 7.46542C111.103 7.09289 111.811 6.90662 112.519 6.90662C113.338 6.90662 114.121 7.09289 114.791 7.53992C115.387 7.91245 115.797 8.47124 115.983 9.1418H117.324C117.064 8.21047 116.505 7.42816 115.76 6.86937C114.828 6.19882 113.674 5.82629 112.519 5.86354C111.55 5.86354 110.582 6.08706 109.725 6.57135C108.905 7.05563 108.235 7.72619 107.788 8.54575C107.303 9.47707 107.08 10.5202 107.08 11.5632C107.08 12.6063 107.341 13.6494 107.788 14.5807C108.235 15.4003 108.905 16.1081 109.725 16.5551C110.582 17.0394 111.55 17.2629 112.519 17.2629C113.674 17.3002 114.828 16.9276 115.797 16.2571C116.542 15.6983 117.101 14.8787 117.362 13.9847H115.946Z" fill="white"/>
<path id="Vector_11" fill-rule="evenodd" clip-rule="evenodd" d="M138.484 2.02648C137.031 1.31868 135.392 0.983401 133.79 1.02065H128.426V17.3747H133.79C135.429 17.4492 137.031 17.0766 138.484 16.3688C139.676 15.7355 140.645 14.7297 141.241 13.5376C141.837 12.1593 142.135 10.7064 142.135 9.21628C142.135 7.72617 141.837 6.27331 141.241 4.89495C140.645 3.6656 139.676 2.65978 138.484 2.02648ZM131.22 3.40483H133.716C134.871 3.36758 136.025 3.5911 137.068 4.11264C137.851 4.55968 138.484 5.26748 138.819 6.08704C139.192 7.09287 139.378 8.13595 139.378 9.21628C139.415 10.2594 139.229 11.3397 138.819 12.3083C138.484 13.1278 137.851 13.8356 137.068 14.2454C136.025 14.767 134.871 14.9905 133.716 14.916H131.22V3.40483ZM144.631 1.02065H144.445V17.3747H154.987V15.0277H147.238V10.2594H154.279V7.94968H147.238V3.33033H154.987V0.983398H144.631V1.02065ZM164.859 9.21628L169.814 17.0766L170 17.3747H166.796L166.759 17.3002L163.108 11.526L159.755 17.3002L159.718 17.3747H156.552L156.738 17.0766L161.618 9.10452L156.701 1.31868L156.514 1.02065H159.718L159.755 1.09516L163.369 6.8321L166.722 1.13241L166.759 1.0579H169.925L169.739 1.35593L164.859 9.21628Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,10 @@
<svg width="151" height="23" viewBox="0 0 151 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="xaman labs">
<path id="Vector" d="M144.288 1.2362C144.767 0.886599 145.308 0.611817 145.886 0.468621C146.516 0.441529 147.183 0.365416 147.776 0.631168C148.501 0.944652 149.229 1.38843 149.621 2.10054C150.31 3.18935 150.383 4.6368 149.76 5.76947C149.145 6.73959 148.248 7.47879 147.526 8.36119C144.799 11.3103 142.105 14.289 139.386 17.242C138.728 18.0418 137.954 18.7345 137.301 19.5383C136.616 20.3884 135.617 20.9651 134.53 21.0863C133.359 21.1573 132.187 20.6284 131.422 19.746C129.906 18.0818 128.285 16.5182 126.769 14.8528C125.83 13.8246 124.602 12.9396 124.168 11.558C123.815 10.5388 124.1 9.38937 124.707 8.52632C125.209 7.75616 126.067 7.28787 126.934 7.04921C127.626 7.02082 128.365 6.9331 129.01 7.24916C130.332 7.79744 131.122 9.0617 132.127 10.0125C132.84 10.6743 133.433 11.4548 134.151 12.1088C134.592 11.9605 134.816 11.4935 135.132 11.1787C137.608 8.45795 140.104 5.75657 142.58 3.03713C143.19 2.47466 143.627 1.74707 144.288 1.2362Z" fill="white"/>
<path id="Vector_2" d="M3.19574 1.71612C4.11555 1.23493 5.0818 1.85674 5.76425 2.46436C7.33425 3.98792 8.84232 5.58114 10.4252 7.08921C10.7606 6.99246 10.9477 6.67253 11.1876 6.44419C11.6443 5.91268 12.2094 5.48696 12.6519 4.94127C13.1266 4.34655 13.7058 3.84601 14.2296 3.29515C14.8617 2.64238 15.5351 1.98446 16.3892 1.63356C16.7517 1.58325 17.1284 1.58712 17.4922 1.63872C18.1501 1.88512 18.7087 2.34051 19.1925 2.84105C19.8168 3.46673 20.4232 4.17239 20.6541 5.04447C20.7534 5.56179 20.4528 6.02879 20.2116 6.45838C19.3653 7.69941 18.1939 8.65534 17.18 9.74931C16.5633 10.3905 15.9118 10.9981 15.2991 11.6444C15.0346 12.0082 15.4848 12.2869 15.7067 12.5242C16.7388 13.5976 17.8482 14.6012 18.8158 15.7378C19.573 16.4783 20.409 17.2562 20.6567 18.3308C20.7199 19.0622 20.2413 19.7008 19.8156 20.2504C19.0209 21.1212 18.1256 22.1158 16.8755 22.2255C15.6899 22.0049 14.8708 21.0412 14.0374 20.253C13.3833 19.6582 12.8892 18.9126 12.2107 18.3411C11.6637 17.887 11.2289 17.3207 10.7219 16.8279C10.5117 16.7866 10.2407 16.7479 10.0963 16.9465C8.77524 18.2972 7.42971 19.6247 6.09579 20.9625C5.45592 21.5392 4.73349 22.1661 3.84077 22.2409C2.74422 21.9778 1.87988 21.1844 1.1381 20.3781C0.694318 19.8608 0.29698 19.2674 0.189906 18.581C0.303431 17.6006 0.930398 16.7672 1.64122 16.1209C2.47202 15.3611 3.18413 14.4838 4.02267 13.7317C4.5503 13.2596 4.96312 12.6803 5.46882 12.1862C5.72296 12.0005 5.61976 11.6444 5.394 11.4832C4.20198 10.3079 3.08221 9.06171 1.88246 7.89679C1.11488 7.14727 0.280209 6.28809 0.186035 5.16574C0.597564 3.63831 1.83989 2.45146 3.19574 1.71612Z" fill="white"/>
<path id="Vector_3" d="M100.95 2.10571C101.739 1.77546 102.605 1.88253 103.437 1.86318C104.201 1.8348 104.998 2.00638 105.624 2.46048C106.098 2.85008 105.964 3.61379 106.389 3.99952C107.315 3.03972 108.433 2.17796 109.775 1.92382C111.37 1.72515 113.045 1.91866 114.476 2.68753C115.376 3.18033 116.219 3.80472 116.904 4.57359C117.597 5.43019 118.28 6.31517 118.725 7.33045C119.278 8.55471 119.497 9.89766 119.608 11.2264C119.608 13.8943 119.607 16.5634 119.608 19.2325C119.518 19.9691 119.488 20.8322 118.858 21.3379C117.998 22.019 116.838 21.8759 115.815 21.8888C114.975 21.9146 114.043 21.721 113.478 21.0515C113.014 20.569 113.022 19.8505 112.925 19.2325C112.909 16.6911 112.925 14.151 112.919 11.6109C112.95 10.602 112.431 9.58289 111.567 9.05009C110.194 8.12125 108.202 8.37152 107.057 9.54935C106.59 10.1273 106.285 10.8626 106.319 11.6134C106.314 14.1097 106.32 16.606 106.315 19.1009C106.238 19.8776 106.142 20.7574 105.504 21.2966C104.806 21.9597 103.788 21.823 102.916 21.9855C102.089 21.8565 101.168 21.912 100.454 21.4037C99.8932 20.898 99.5823 20.1136 99.6171 19.3615C99.6184 14.2452 99.612 9.1275 99.6223 4.00984C99.692 3.21387 100.133 2.35082 100.95 2.10571Z" fill="white"/>
<path id="Vector_4" d="M26.9263 2.78556C28.8497 1.71868 31.2944 1.51614 33.2811 2.53271C33.9609 2.82039 34.455 3.37899 34.9659 3.88727C35.1491 3.48219 35.2484 3.0268 35.5464 2.68365C36.0779 2.09151 36.9074 1.85672 37.6815 1.86575C38.6697 1.86188 39.7185 1.79222 40.628 2.25148C41.3001 2.72106 41.6084 3.58798 41.5826 4.38652C41.5916 9.37647 41.5865 14.3677 41.5852 19.3589C41.6136 20.1472 41.3362 21.0089 40.6693 21.4798C40.1119 21.8191 39.4398 21.89 38.8 21.8784C37.8711 21.8681 36.8829 21.9313 36.025 21.5107C35.4742 21.2398 35.2136 20.64 35.1194 20.0646C35.042 20.0672 34.9659 20.0672 34.8898 20.0672C33.8384 21.3392 32.1691 21.9481 30.5436 21.8758C28.9323 21.9881 27.352 21.3895 26.0593 20.4555C23.2702 18.5127 21.2449 15.214 21.4422 11.7411C21.3868 10.6768 21.6112 9.62287 21.9286 8.61275C22.8355 6.16164 24.6429 4.05627 26.9263 2.78556ZM30.5952 8.59082C29.278 8.93527 28.3182 10.1789 28.0512 11.4818C27.8177 13.4105 29.6147 15.3765 31.5795 15.1791C32.5625 15.2398 33.4862 14.6502 34.0293 13.8581C34.6731 13.0351 34.9672 11.8753 34.5647 10.882C34.1893 9.84476 33.3907 8.89527 32.2955 8.59856C31.7317 8.54954 31.1602 8.5547 30.5952 8.59082Z" fill="white"/>
<path id="Vector_5" d="M45.9882 2.11727C46.85 1.71993 47.8214 1.90054 48.7387 1.87216C49.5037 1.95085 50.3951 2.16371 50.7989 2.89259C51.0917 3.32476 51.1446 3.84724 51.1717 4.35423C51.5407 4.14008 51.7303 3.74145 52.0141 3.43958C52.7107 2.66167 53.6486 2.0618 54.6832 1.87216C55.6688 1.85539 56.688 1.75992 57.6336 2.10566C58.9907 2.49784 60.1544 3.42926 60.9129 4.61224C61.0445 4.75157 61.1232 5.05989 61.3683 4.96443C61.9282 4.33488 62.4494 3.64857 63.1705 3.18931C64.2284 2.44107 65.4488 1.73541 66.7943 1.8541C67.8999 1.77669 69.0093 2.05019 69.9769 2.58556C70.8193 3.06159 71.5185 3.74919 72.1506 4.47162C73.4716 6.30996 73.8406 8.62819 73.9528 10.8342C73.9464 13.7613 73.9644 16.6898 73.9451 19.6169C73.8664 20.4438 73.482 21.3946 72.6318 21.6836C71.3237 22.1261 69.8595 22.1274 68.5591 21.6578C67.6728 21.3378 67.3839 20.3277 67.2729 19.484C67.2316 16.6459 67.2832 13.8052 67.2458 10.9658C67.2007 9.83052 66.3802 8.50434 65.1159 8.57143C64.3471 8.48628 63.4518 8.74559 63.097 9.49124C62.6726 10.215 62.71 11.0651 62.6235 11.8701C62.6171 14.4038 62.6364 16.9362 62.6145 19.4698C62.63 20.36 62.2069 21.374 61.3128 21.69C60.4175 21.9816 59.4629 22.068 58.5276 21.9635C57.9522 21.85 57.324 21.8164 56.8428 21.441C56.3177 21.0424 56.012 20.3677 56.0172 19.7124C56.021 19.2015 55.8198 18.6971 55.9746 18.1901C56.0275 17.3322 56.0468 16.4627 55.9127 15.6126C55.8907 15.3507 56.0159 15.0978 55.9785 14.8385C55.8546 14.3664 56.0933 13.8955 55.9823 13.4208C55.7501 12.2313 56.1642 10.949 55.6366 9.81504C55.305 9.05391 54.4884 8.46951 53.6383 8.57143C52.8152 8.46693 51.9973 8.98941 51.7032 9.7557C51.302 10.5336 51.4258 11.425 51.2788 12.2597C51.2814 14.3225 51.2633 16.3866 51.2878 18.4494C51.4568 19.0441 51.2775 19.6388 51.2272 20.2335C51.0556 20.8412 50.6712 21.4475 50.0494 21.6668C48.7412 22.1067 47.3002 22.1119 45.9805 21.7094C45.1252 21.4307 44.6879 20.4567 44.6608 19.6169C44.6543 14.5405 44.6569 9.46286 44.6595 4.38648C44.5937 3.46538 45.1033 2.46558 45.9882 2.11727Z" fill="white"/>
<path id="Vector_6" d="M84.1715 1.99472C85.7531 1.64511 87.4534 1.98311 88.8118 2.85519C89.2362 3.13642 89.5355 3.5673 89.9638 3.84466C90.1793 3.40604 90.2618 2.88615 90.6295 2.53654C91.1881 2.02568 91.9789 1.83346 92.7233 1.86313C93.6869 1.8799 94.7216 1.75477 95.5975 2.24886C96.2838 2.70812 96.5767 3.59439 96.5496 4.39164C96.5522 9.42158 96.556 14.4515 96.5483 19.4815C96.5728 20.1523 96.3509 20.8605 95.8581 21.3314C95.3047 21.7571 94.5745 21.8939 93.8908 21.8758C92.8897 21.8693 91.8305 21.9442 90.912 21.472C90.4618 21.1366 90.1341 20.6412 90.1419 20.0646C89.809 20.0362 89.6013 20.3484 89.3717 20.5367C88.3319 21.5752 86.7993 21.9197 85.3725 21.8771C84.294 21.9145 83.191 21.6978 82.2493 21.1585C79.8562 19.9975 78.0179 17.8521 77.0091 15.4126C76.5962 14.2374 76.3486 12.9925 76.4079 11.7424C76.3434 8.54821 78.1211 5.51915 80.6264 3.62277C81.6675 2.8268 82.8608 2.18952 84.1715 1.99472ZM85.6821 8.58433C83.818 8.97522 82.457 11.2612 83.2723 13.0544C83.7096 14.0697 84.6385 14.8618 85.7028 15.152C86.4755 15.2023 87.3063 15.2604 87.9875 14.8166C88.9253 14.2 89.7097 13.1692 89.7007 12.0043C89.7755 10.7839 89.0234 9.64347 88.0649 8.94942C87.3721 8.44243 86.4845 8.56756 85.6821 8.58433Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -310,3 +310,9 @@ main article .card-grid {
text-align: center;
background-color: $gray-800;
}
.card-subhead {
font-size: 1rem;
margin-bottom: 0.25rem;
margin-top: 0.5rem;
}

View File

@@ -1,11 +1,13 @@
/* Use Cases ---------------------------------------------------------------- */
// Define each category's logos
$infrastructure-logos: "xrp-ledger", "gatehub", "towolabs", "xrpscan", "xrp-toolkit", "bithomp", "onthedex";
$infrastructure-logos: "xrp-ledger", "gatehub", "towolabs", "xrpscan",
"xrp-toolkit", "bithomp", "onthedex";
$developer-tooling-logos: "cryptum", "evernode", "threezy", "tokenize";
$interoperability-logos: "multichain";
$wallet-logos: "crossmark", "edge", "gem-wallet", "xumm";
$nfts-logos: "aesthetes", "audiotarky", "nftmaster", "peerkat", "sologenic_dex", "xrp-cafe", "xrp-oval";
$wallet-logos: "crossmark", "edge", "gem-wallet", "xumm";
$nfts-logos: "aesthetes", "audiotarky", "nftmaster", "peerkat", "sologenic_dex",
"xrp-cafe", "xrp-oval";
$exchanges-logos: "sologenic_dex", "xpmarket";
$gaming-logos: "forte", "ledger-city";
$security-logos: "anchain";
@@ -36,8 +38,8 @@ $custody-logos: "gatehub", "bitgo";
}
}
}
html.light{
.cryptum{
html.light {
.cryptum {
content: url(../img/uses/lightmode/cryptum.jpg) !important;
height: 58px;
max-width: max-content;
@@ -69,6 +71,11 @@ html.light{
content: url(../img/uses/right-arrow.svg);
}
.right-arrow-button.right-arrow img {
background-color: transparent;
border: none;
cursor: pointer;
}
.html.light {
.arrow-button.left-arrow img {
@@ -164,12 +171,14 @@ html.light{
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg,
#b480ff -0.32%,
#5f00e6 32.7%,
#1aa4ff 61.53%,
#19ff83 100.32%,
#19ff83 100.32%);
background: linear-gradient(
90deg,
#b480ff -0.32%,
#5f00e6 32.7%,
#1aa4ff 61.53%,
#19ff83 100.32%,
#19ff83 100.32%
);
}
.content-section {
@@ -289,7 +298,6 @@ html.light{
margin: 10px 11px;
}
.close {
color: #aaaaaa;
float: right;
@@ -332,7 +340,6 @@ html.light{
.use-case-circle:hover {
border-color: #838386;
}
.circle-content {
@@ -388,11 +395,13 @@ html.light{
font-weight: 400;
font-size: 32px;
line-height: 38px;
background: linear-gradient(90deg,
#feff01 0%,
#ff2d9a 30.82%,
#e24cff 64.01%,
#9a52ff 100%);
background: linear-gradient(
90deg,
#feff01 0%,
#ff2d9a 30.82%,
#e24cff 64.01%,
#9a52ff 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
@@ -409,7 +418,7 @@ html.light{
html.light {
.section-separator {
background: #C1C1C2;
background: #c1c1c2;
}
.section-text-description {
@@ -449,11 +458,13 @@ html.light {
font-weight: 400;
font-size: 32px;
line-height: 38px;
background: linear-gradient(90deg,
#b480ff -0.32%,
#5f00e6 32.7%,
#1aa4ff 61.53%,
#19ff83 100.32%);
background: linear-gradient(
90deg,
#b480ff -0.32%,
#5f00e6 32.7%,
#1aa4ff 61.53%,
#19ff83 100.32%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
@@ -543,3 +554,343 @@ html.light {
padding-left: 0;
transition: all 0.2s ease-in-out;
}
.page-tokenization {
.tokenization-graphic {
content: url('../img/backgrounds/tokenization-illustration.svg');
width: 100%;
height: 100%;
}
.show-md {
display: none;
@include media-breakpoint-down(md) {
display: block;
}
}
.hide-md {
display: block;
@include media-breakpoint-down(md) {
display: none;
}
}
.tokenization-use-case {
font-size: 12px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid $gray-600;
}
.tokenization-use-case .arrow-button img {
width: 15px;
height: 15px;
}
.tokenization-stats {
width: 100%;
height: 250px;
border-radius: 8px;
background: linear-gradient(88deg, #9A52FF -14.32%, #32E685 45.35%, #19A3FF 100.76%);
padding: 4rem 2rem;
display: grid;
grid-template-columns: repeat(4, 1fr);
@include media-breakpoint-down(md) {
display: block;
height: 100%;
width: 100%;
padding: 0 25%;
}
}
.stat-container {
color: $black;
text-align: center;
border-right: 2px solid black;
@include media-breakpoint-down(md) {
border-right: none;
padding-bottom: 3rem;
padding-top: 2rem;
border-bottom: 2px solid black;
}
}
.stat-container:last-child {
border: none;
}
.stat-container .stat {
font-size: 3rem;
font-weight: 300;
}
.stat-container p {
font-weight: 400;
}
/* Work-around for border gradient and radius */
.security-card {
position: relative;
border-radius: 0.5rem;
background-color: transparent;
white-space: normal;
box-sizing: border-box;
}
.security-card::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: inherit;
padding: 1px;
background: linear-gradient(90deg, #d91aff 26.41%, #1aa4ff 100.32%);
mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
mask-composite: exclude;
-webkit-mask-composite: xor;
z-index: -1;
}
.security-card p {
margin-bottom: 0 !important;
}
.security-card .h6 {
@include media-breakpoint-down(sm) {
font-size: 1.25rem;
}
}
.security-card-grid {
gap: 1rem;
grid-template-columns: repeat(2, 1fr);
@media (min-width: 1200px) {
grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
grid-template-columns: repeat(1, 1fr);
}
}
.video-external-link .link-text {
margin-left: 0.25rem;
}
.video-external-link {
margin-bottom: 9px;
}
.tokenization-color-bar {
align-self: stretch;
height: 0.25rem;
border-radius: 2rem;
background: var(--Gradient-3, linear-gradient(90deg, #FEFF01 0%, #FF2D9A 30.82%, #E24CFF 64.01%, #9A52FF 100%));
}
.project-cards-container {
gap: 3rem;
}
.project-cards {
width: 100%;
}
.project-cards .project-name {
word-break: break-word;
}
.project-cards .card {
min-height: 240px;
}
.project-cards .col::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0.25rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
.project-cards .col.odd::before {
background: linear-gradient(90deg, #D91AFF 26.41%, #1AA4FF 100.32%);
}
.project-cards .col.even::before {
background: linear-gradient(90deg, #4BB7FF -0.32%, #32E685 30.61%);
}
.project-cards .project-logo {
width: 100%;
height: 50px;
vertical-align: center;
padding: 0 0.5rem;
}
.project-cards img {
max-width: 100%;
height: auto;
display: block;
box-sizing: border-box;
}
.amy {
content: url("../img/logos/amy.svg");
}
.carbonland {
content: url("../img/logos/carbonland.svg");
}
.evernode {
content: url("../img/logos/evernode.svg");
}
.nautilus {
content: url("../img/logos/nautilus.svg");
}
.onXRP {
content: url("../img/logos/onXRP.svg");
}
.raised-in-space {
content: url("../img/logos/raised-in-space.svg");
}
.sologenic {
content: url("../img/logos/sologenic.svg");
}
.xaman {
content: url("../img/logos/xaman-labs.svg");
}
.xrpcafe {
content: url("../img/logos/xrpcafe.svg");
}
.prev img {
content: url("../img/icons/prev.svg");
}
.next img {
content: url("../img/icons/prev.svg");
transform: scaleX(-1);
}
.arrow-wrapper {
gap: 1rem;
}
.arrow-button {
background-color: #232325;
border-radius: 0.25rem;
align-items: center;
justify-content: center;
}
.next.hover-color:hover img {
content: url("../img/icons/next-purple.svg");
transform: scaleX(1);
}
.prev.hover-color:hover img {
content: url("../img/icons/next-purple.svg");
transform: scaleX(-1);
}
.related-articles {
gap: 2.5rem;
}
.related-articles .col {
background-color: $black;
padding: 2rem !important;
border-radius: 0.5rem;
}
.related-articles .time {
position: relative;
padding-top: 0.5rem;
}
.related-articles .time::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 4px;
background-color: #32E685;
}
.project-cards a,
.related-articles a {
text-decoration: none;
}
.project-cards a:hover{
.project-name{
color: $purple;
}
}
.related-articles a:hover {
.h5 {
color: $purple;
}
}
.article-card-container {
position: relative;
width: 100%;
&:nth-child(1) .article-card-background {
background-image: linear-gradient(86deg, #B20058 -21.16%, #E24CFF 31.78%, #9A52FF 101.64%);
}
&:nth-child(2) .article-card-background {
background-image: linear-gradient(22deg, #B480FF -6.54%, #5F00E5 50.87%, #1AA4FF 114.16%);
}
&:nth-child(3) .article-card-background {
background-image: linear-gradient(162deg, #B480FF -11.11%, #1AA4FF 56.26%, #2DCF78 112.84%);
}
}
.article-card-background {
height: calc(100% + 1.5rem);
width: 100%;
z-index: 1;
background-size: cover;
position: absolute;
top: -0.75rem;
border-radius: 0.5rem;
}
.article-card {
width: 100%;
height: 100%;
position: relative;
top: 0;
left: 0.75rem;
z-index: 2;
display: block;
}
}

View File

@@ -1181,3 +1181,34 @@ main article .card-grid {
background-color: $gray-200;
}
}
.page-tokenization {
.project-cards .project-logo {
filter: invert(100%);
}
.article-card {
background-color: $white;
}
.article-card-background {
filter: drop-shadow(0px 1px 18px rgba(24, 24, 24, 0.50));
}
.evernode {
content: url("../img/logos/evernode.svg");
}
.prev img {
content: url("../img/icons/prev_light.svg");
}
.next img {
content: url("../img/icons/prev_light.svg");
transform: scaleX(-1);
}
.arrow-button {
background-color: $gray-200;
}
}

View File

@@ -75,7 +75,7 @@
- page: ./docs/use-cases/payments/index.md
label: Payments
labelTranslationKey: topnav.docs.payments
- page: ./docs/use-cases/tokenization/index.md
- page: ./docs/use-cases/tokenization/index.page.tsx
label: Tokenization
labelTranslationKey: topnav.docs.tokenization
- page: ./docs/use-cases/defi/index.md