mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
feat: create hackathon page and update card page
This commit is contained in:
@@ -60,12 +60,20 @@
|
||||
* Handle initial load.
|
||||
*/
|
||||
if (!$page.url.pathname.startsWith('/auth')) {
|
||||
const acceptedRoutes = ['/login', '/register', '/recover', '/invite', '/card'];
|
||||
const acceptedRoutes = [
|
||||
'/login',
|
||||
'/register',
|
||||
'/recover',
|
||||
'/invite',
|
||||
'/card',
|
||||
'/hackathon'
|
||||
];
|
||||
if ($user) {
|
||||
if (
|
||||
!$page.url.pathname.startsWith('/console') &&
|
||||
!$page.url.pathname.startsWith('/invite') &&
|
||||
!$page.url.pathname.startsWith('/card')
|
||||
!$page.url.pathname.startsWith('/card') &&
|
||||
!$page.url.pathname.startsWith('/hackathon')
|
||||
) {
|
||||
await goto(`${base}/console`, {
|
||||
replaceState: true
|
||||
|
||||
@@ -32,7 +32,8 @@ export const load: LayoutLoad = async ({ depends, url }) => {
|
||||
'/auth/magic-url',
|
||||
'/auth/oauth2/success',
|
||||
'/auth/oauth2/failure',
|
||||
'/card'
|
||||
'/card',
|
||||
'/hackathon'
|
||||
];
|
||||
|
||||
if (!acceptedRoutes.some((n) => url.pathname.startsWith(n))) {
|
||||
|
||||
@@ -100,29 +100,12 @@
|
||||
</h3>
|
||||
|
||||
<div class="content">
|
||||
{#if variant === 'owner'}
|
||||
<div class="hoodie-container">
|
||||
<img
|
||||
src="/images/hoodies-bg.png"
|
||||
alt="red background"
|
||||
aria-hidden="true"
|
||||
class="bg" />
|
||||
<img src="/images/hoodie-1.png" class="hoodie" alt="Cloud Beta hoodies" />
|
||||
<img src="/images/hoodie-2.png" class="hoodie" alt="Cloud Beta hoodies" />
|
||||
</div>
|
||||
{/if}
|
||||
<div>
|
||||
<div class="u-flex u-cross-center u-gap-8">
|
||||
<h4 class="eyebrow-heading-1">Cloud is live in public</h4>
|
||||
<h4 class="eyebrow-heading-1 beta-tag">Beta</h4>
|
||||
</div>
|
||||
<p class="u-margin-block-start-8">
|
||||
{#if variant === 'owner'}
|
||||
Share your Cloud card for a chance to win an exclusive Cloud hoodie!
|
||||
{:else}
|
||||
Create your Cloud account and unlock your exclusive card!
|
||||
{/if}
|
||||
</p>
|
||||
{#if variant === 'owner'}
|
||||
<h4 class="eyebrow-heading-2">Share your card</h4>
|
||||
{:else if variant === 'external'}
|
||||
<h4 class="eyebrow-heading-2">Share card</h4>
|
||||
{/if}
|
||||
{#if variant === 'external'}
|
||||
<a
|
||||
href="/register"
|
||||
@@ -132,7 +115,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<img class="card-preview" src={base64.front} alt="The front of the card" />
|
||||
<ul class="buttons-list u-margin-block-start-32">
|
||||
<ul class="buttons-list u-margin-block-start-16">
|
||||
<li class="buttons-list-item">
|
||||
<a
|
||||
class="button is-text"
|
||||
@@ -268,72 +251,6 @@
|
||||
align-items: center;
|
||||
gap: 1.5rem;
|
||||
margin-block-start: 2.5rem;
|
||||
|
||||
.beta-tag {
|
||||
background-color: var(--beta-bg);
|
||||
color: var(--beta-fg);
|
||||
padding-inline: 0.75rem; // 12px
|
||||
padding-block: 0.25rem; // 4px
|
||||
border-radius: 0.375rem; // 6px
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.hoodie-container {
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
|
||||
.bg {
|
||||
display: block;
|
||||
width: 9.9375rem; // 159px
|
||||
height: 7.375rem; // 118px
|
||||
aspect-ratio: 358 / 265.69;
|
||||
|
||||
background-color: #ec2f65;
|
||||
border-radius: 12px;
|
||||
transition: 300ms ease;
|
||||
}
|
||||
|
||||
.hoodie {
|
||||
display: block;
|
||||
position: absolute;
|
||||
object-fit: contain;
|
||||
width: 5.8125rem; // 93px
|
||||
height: 5.8125rem; // 93px
|
||||
|
||||
transition: 300ms ease;
|
||||
|
||||
&:nth-child(2) {
|
||||
top: 1rem;
|
||||
left: 0.1875rem;
|
||||
}
|
||||
|
||||
&:nth-child(3) {
|
||||
top: 0.5625rem; // 9px
|
||||
right: 0.1875rem; // 3px
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.bg {
|
||||
box-shadow: 0 0 30px var(--glow);
|
||||
}
|
||||
|
||||
.hoodie:nth-child(2) {
|
||||
scale: 1.5;
|
||||
rotate: -5deg;
|
||||
translate: -1rem 1rem;
|
||||
}
|
||||
|
||||
.hoodie:nth-child(3) {
|
||||
scale: 1.5;
|
||||
rotate: 5deg;
|
||||
translate: 1rem -1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-preview {
|
||||
@@ -478,38 +395,6 @@
|
||||
margin-block-start: 1rem;
|
||||
padding-block-end: 2rem;
|
||||
border-block-end: 1px solid var(--sep-clr);
|
||||
|
||||
.hoodie-container {
|
||||
.bg {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.hoodie {
|
||||
width: 65%;
|
||||
height: auto;
|
||||
|
||||
&:nth-child(2) {
|
||||
top: 10%;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
&:nth-child(3) {
|
||||
top: 0%;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.hoodie:nth-child(2) {
|
||||
scale: 1.25;
|
||||
}
|
||||
|
||||
.hoodie:nth-child(3) {
|
||||
scale: 1.25;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-preview {
|
||||
|
||||
@@ -20,13 +20,13 @@
|
||||
onMount(() => {
|
||||
loading.set(false);
|
||||
|
||||
// Check if user already viewed cloud card
|
||||
// Check if user already viewed cloud hackathon page
|
||||
if (isCloud) {
|
||||
const viewed = localStorage.getItem('cloud-card-viewed');
|
||||
const viewed = localStorage.getItem('cloud-hackathon-viewed');
|
||||
|
||||
if (viewed !== data.account.$id) {
|
||||
localStorage.setItem('cloud-card-viewed', data.account.$id);
|
||||
goto('/card');
|
||||
localStorage.setItem('cloud-hackathon-viewed', data.account.$id);
|
||||
goto('/hackathon');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<script>
|
||||
import { Shell } from '$lib/layout';
|
||||
import AppwriteLogo from '$lib/images/appwrite-gray-light.svg';
|
||||
import Footer from '$lib/layout/footer.svelte';
|
||||
</script>
|
||||
|
||||
<Shell>
|
||||
<a class="logo" slot="header" href={`/console`}>
|
||||
<img src={AppwriteLogo} width="132" height="34" alt="Appwrite" />
|
||||
</a>
|
||||
<slot />
|
||||
<Footer slot="footer" />
|
||||
</Shell>
|
||||
@@ -0,0 +1,179 @@
|
||||
<script lang="ts">
|
||||
import Button from '$lib/elements/forms/button.svelte';
|
||||
import CloudDark from './cloud-dark.svg';
|
||||
import CloudLight from './cloud-light.svg';
|
||||
import HashnodeDark from './hashnode-dark.svg';
|
||||
import HashnodeLight from './hashnode-light.svg';
|
||||
import Badge from './hackathon-badge.svg';
|
||||
import { tooltip } from '$lib/actions/tooltip';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<!-- HTML Meta Tags -->
|
||||
<title>Appwrite Cloud - Join Our Hackathon</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="wrapper">
|
||||
<section class="ht-cta">
|
||||
<h1 class="ht-title text">
|
||||
Join Our
|
||||
<br />
|
||||
<span class="ht-title-primary">Cloud Hackathon</span>
|
||||
</h1>
|
||||
<ol class="u-margin-block-start-52 numeric-list">
|
||||
<li class="numeric-list-item">
|
||||
<span class="text"> Build an open-source app using Appwrite Cloud</span>
|
||||
</li>
|
||||
<li class="numeric-list-item">
|
||||
<span class="text">
|
||||
Publish an article on your Hashnode blog to launch your app
|
||||
</span>
|
||||
</li>
|
||||
<li class="numeric-list-item">
|
||||
<span class="text">
|
||||
Submit your project on <a
|
||||
class="link"
|
||||
href="https://builtwith.appwrite.io"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer">Built with Appwrite</a> website
|
||||
</span>
|
||||
</li>
|
||||
</ol>
|
||||
<div class="u-margin-block-start-32 u-flex u-gap-16">
|
||||
<Button external href="https://cloud.appwrite.io">Get started</Button>
|
||||
<Button
|
||||
secondary
|
||||
external
|
||||
href="https://hashnode.com/hackathons/appwrite?utm_campaign=Cloud%20public%20Beta&utm_content=248635813&utm_medium=social&utm_source=twitter&hss_channel=tw-806598100764807170#participate">
|
||||
More details
|
||||
</Button>
|
||||
</div>
|
||||
<div class="u-margin-block-start-100">
|
||||
<div class="u-only-light buttons-list" />
|
||||
<ul class="inline-links">
|
||||
<li class="inline-links-item">
|
||||
<div class="u-only-light">
|
||||
<img src={CloudLight} alt="Appwrite Cloud" height="15" width="170" />
|
||||
</div>
|
||||
<div class="u-only-dark">
|
||||
<img src={CloudDark} alt="Appwrite Cloud" height="15" width="170" />
|
||||
</div>
|
||||
</li>
|
||||
<li class="inline-links-item">
|
||||
<div class="u-only-light">
|
||||
<img src={HashnodeLight} alt="Hashnode" height="17" width="99" />
|
||||
</div>
|
||||
<div class="u-only-dark">
|
||||
<img src={HashnodeDark} alt="Hashnode" height="17" width="99" />
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="ht-img">
|
||||
<div
|
||||
class="card ht-card u-flex u-cross-center u-main-center"
|
||||
use:tooltip={{
|
||||
content: 'Join us on Cloud Hackathon to unlock this badge'
|
||||
}}>
|
||||
<img height="200" width="200" src={Badge} alt="hackathon-badge" />
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
:global(.main-content) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
position: relative;
|
||||
|
||||
grid-template-columns: 1fr 1fr;
|
||||
padding-block: 4rem;
|
||||
gap: max(4rem, 10vw);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ht-cta {
|
||||
padding-inline-start: 4rem;
|
||||
}
|
||||
|
||||
.ht-card {
|
||||
aspect-ratio: 1;
|
||||
width: 21.25rem;
|
||||
height: 21.25rem;
|
||||
}
|
||||
.ht-title {
|
||||
font-size: 3.5rem;
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
|
||||
&-primary {
|
||||
color: hsl(var(--color-primary-100));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.wrapper {
|
||||
display: block;
|
||||
padding-block: 2rem;
|
||||
|
||||
max-width: min(100%, 500px);
|
||||
margin: 0 auto;
|
||||
}
|
||||
.ht-cta {
|
||||
padding-inline: 1rem;
|
||||
}
|
||||
.ht-img {
|
||||
padding: 2rem;
|
||||
}
|
||||
.ht-card {
|
||||
padding: 1rem;
|
||||
height: auto;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.numeric-list {
|
||||
--p-numeric-border-color: var(--color-neutral-10);
|
||||
--p-numeric-bg-color: var(--color-neutral-5);
|
||||
--p-numeric-text-color: var(--color-neutral-100);
|
||||
counter-reset: number;
|
||||
display: grid;
|
||||
row-gap: pxToRem(24);
|
||||
&-item {
|
||||
counter-increment: number;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
column-gap: pxToRem(24);
|
||||
&::before {
|
||||
content: counter(number);
|
||||
flex-shrink: 0;
|
||||
display: grid;
|
||||
place-content: center;
|
||||
inline-size: pxToRem(32);
|
||||
block-size: pxToRem(32);
|
||||
background-color: hsl(var(--p-numeric-bg-color));
|
||||
color: hsl(var(--p-numeric-text-color));
|
||||
border: solid pxToRem(1) hsl(var(--p-numeric-border-color));
|
||||
border-radius: var(--border-radius-circular);
|
||||
}
|
||||
}
|
||||
}
|
||||
:global(.theme-dark) {
|
||||
.numeric-list {
|
||||
--p-numeric-border-color: var(--color-neutral-150);
|
||||
--p-numeric-bg-color: var(--color-neutral-200);
|
||||
--p-numeric-text-color: var(--color-neutral-50);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,8 @@
|
||||
import { isCloud } from '$lib/system';
|
||||
import { redirect } from '@sveltejs/kit';
|
||||
|
||||
export async function load({ parent }) {
|
||||
if (!isCloud) throw redirect(303, '/');
|
||||
const { account } = await parent();
|
||||
if (!account) throw redirect(303, '/login');
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<svg width="168" height="15" viewBox="0 0 168 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.09214 12.3824H2.03071L1.28256 14.4532H0L3.36671 5.19476H4.76951L8.12286 14.4532H6.8403L6.09214 12.3824ZM5.74478 11.3938L4.06143 6.69107L2.37807 11.3938H5.74478Z" fill="white"/>
|
||||
<path d="M18.4879 7.86675C18.4879 8.64163 18.2207 9.28736 17.6863 9.80394C17.1608 10.3116 16.3547 10.5655 15.2681 10.5655H13.4779V14.4532H12.2621V5.14132H15.2681C16.3191 5.14132 17.1163 5.39516 17.6596 5.90283C18.2118 6.41051 18.4879 7.06515 18.4879 7.86675ZM15.2681 9.56346C15.945 9.56346 16.4438 9.4165 16.7645 9.12259C17.0851 8.82867 17.2454 8.41005 17.2454 7.86675C17.2454 6.71779 16.5863 6.14331 15.2681 6.14331H13.4779V9.56346H15.2681Z" fill="white"/>
|
||||
<path d="M28.8967 7.86675C28.8967 8.64163 28.6295 9.28736 28.0951 9.80394C27.5696 10.3116 26.7635 10.5655 25.6769 10.5655H23.8867V14.4532H22.6709V5.14132H25.6769C26.7279 5.14132 27.525 5.39516 28.0683 5.90283C28.6206 6.41051 28.8967 7.06515 28.8967 7.86675ZM25.6769 9.56346C26.3538 9.56346 26.8526 9.4165 27.1732 9.12259C27.4939 8.82867 27.6542 8.41005 27.6542 7.86675C27.6542 6.71779 26.9951 6.14331 25.6769 6.14331H23.8867V9.56346H25.6769Z" fill="white"/>
|
||||
<path d="M44.783 5.14132L42.0843 14.4532H40.7216L38.5573 6.95827L36.3128 14.4532L34.9634 14.4666L32.3582 5.14132H33.6542L35.6849 13.0371L37.9293 5.14132H39.2921L41.4297 13.0103L43.4737 5.14132H44.783Z" fill="white"/>
|
||||
<path d="M53.6886 14.4532L51.4708 10.6456H50.0012V14.4532H48.7855V5.14132H51.7915C52.4951 5.14132 53.0874 5.26156 53.5683 5.50204C54.0582 5.74252 54.4234 6.06761 54.6638 6.47731C54.9043 6.88702 55.0246 7.35462 55.0246 7.88011C55.0246 8.52139 54.8375 9.08696 54.4634 9.57682C54.0983 10.0667 53.5461 10.3918 52.8068 10.5521L55.1448 14.4532H53.6886ZM50.0012 9.67034H51.7915C52.4505 9.67034 52.9449 9.51003 53.2744 9.18939C53.604 8.85984 53.7687 8.42341 53.7687 7.88011C53.7687 7.3279 53.604 6.90038 53.2744 6.59755C52.9538 6.29473 52.4594 6.14331 51.7915 6.14331H50.0012V9.67034Z" fill="white"/>
|
||||
<path d="M60.8014 5.14132V14.4532H59.5856V5.14132H60.8014Z" fill="white"/>
|
||||
<path d="M71.2768 5.14132V6.12995H68.7385V14.4532H67.5227V6.12995H64.9709V5.14132H71.2768Z" fill="white"/>
|
||||
<path d="M76.6611 6.12995V9.24283H80.0546V10.2448H76.6611V13.4512H80.4553V14.4532H75.4454V5.12796H80.4553V6.12995H76.6611Z" fill="white"/>
|
||||
<path d="M84.3791 9.7505C84.3791 8.82421 84.5795 8.00035 84.9803 7.27891C85.3811 6.54857 85.9378 5.983 86.6503 5.5822C87.3717 5.17249 88.1867 4.96764 89.0952 4.96764C90.2085 4.96764 91.1615 5.26156 91.9542 5.8494C92.7469 6.43723 93.2768 7.23883 93.544 8.25419H91.0324C90.8453 7.8623 90.5781 7.56392 90.2308 7.35907C89.8923 7.15422 89.5049 7.05179 89.0684 7.05179C88.3648 7.05179 87.7948 7.29672 87.3584 7.78659C86.922 8.27645 86.7037 8.93109 86.7037 9.7505C86.7037 10.5699 86.922 11.2246 87.3584 11.7144C87.7948 12.2043 88.3648 12.4492 89.0684 12.4492C89.5049 12.4492 89.8923 12.3468 90.2308 12.1419C90.5781 11.9371 90.8453 11.6387 91.0324 11.2468H93.544C93.2768 12.2622 92.7469 13.0638 91.9542 13.6516C91.1615 14.2305 90.2085 14.52 89.0952 14.52C88.1867 14.52 87.3717 14.3196 86.6503 13.9188C85.9378 13.5091 85.3811 12.9435 84.9803 12.2221C84.5795 11.5007 84.3791 10.6768 84.3791 9.7505Z" fill="white"/>
|
||||
<path d="M99.8996 12.6897H102.892V14.4532H97.6151V5.07452H99.8996V12.6897Z" fill="white"/>
|
||||
<path d="M111.089 14.5467C110.208 14.5467 109.397 14.3419 108.658 13.9322C107.928 13.5225 107.344 12.9524 106.908 12.2221C106.48 11.4828 106.266 10.6545 106.266 9.73714C106.266 8.81976 106.48 7.9959 106.908 7.26555C107.344 6.53521 107.928 5.96518 108.658 5.55548C109.397 5.14577 110.208 4.94092 111.089 4.94092C111.971 4.94092 112.777 5.14577 113.508 5.55548C114.247 5.96518 114.826 6.53521 115.244 7.26555C115.672 7.9959 115.886 8.81976 115.886 9.73714C115.886 10.6545 115.672 11.4828 115.244 12.2221C114.817 12.9524 114.238 13.5225 113.508 13.9322C112.777 14.3419 111.971 14.5467 111.089 14.5467ZM111.089 12.4626C111.838 12.4626 112.434 12.2132 112.88 11.7144C113.334 11.2156 113.561 10.5566 113.561 9.73714C113.561 8.90883 113.334 8.24974 112.88 7.75987C112.434 7.2611 111.838 7.01171 111.089 7.01171C110.332 7.01171 109.727 7.25664 109.272 7.74651C108.827 8.23638 108.604 8.89992 108.604 9.73714C108.604 10.5655 108.827 11.229 109.272 11.7278C109.727 12.2176 110.332 12.4626 111.089 12.4626Z" fill="white"/>
|
||||
<path d="M122.073 5.07452V10.6857C122.073 11.2468 122.211 11.6788 122.487 11.9816C122.763 12.2844 123.169 12.4359 123.703 12.4359C124.237 12.4359 124.647 12.2844 124.932 11.9816C125.217 11.6788 125.36 11.2468 125.36 10.6857V5.07452H127.644V10.6723C127.644 11.5096 127.466 12.2176 127.11 12.7966C126.754 13.3755 126.273 13.8119 125.667 14.1059C125.07 14.3998 124.402 14.5467 123.663 14.5467C122.924 14.5467 122.26 14.4042 121.672 14.1192C121.093 13.8253 120.635 13.3889 120.296 12.8099C119.958 12.2221 119.789 11.5096 119.789 10.6723V5.07452H122.073Z" fill="white"/>
|
||||
<path d="M135.434 5.07452C136.423 5.07452 137.287 5.27046 138.026 5.66236C138.765 6.05425 139.335 6.60646 139.736 7.31899C140.146 8.02262 140.351 8.83757 140.351 9.76386C140.351 10.6812 140.146 11.4962 139.736 12.2087C139.335 12.9213 138.761 13.4735 138.013 13.8654C137.273 14.2573 136.414 14.4532 135.434 14.4532H131.92V5.07452H135.434ZM135.287 12.4759C136.151 12.4759 136.824 12.2399 137.304 11.7679C137.785 11.2958 138.026 10.6278 138.026 9.76386C138.026 8.89992 137.785 8.22747 137.304 7.74651C136.824 7.26555 136.151 7.02507 135.287 7.02507H134.205V12.4759H135.287Z" fill="white"/>
|
||||
<path d="M152.571 14.6905C150.322 14.6905 148.498 12.8488 148.498 10.5768C148.498 8.45138 150.094 6.70241 152.141 6.48572C152.042 6.10327 151.989 5.70178 151.989 5.28779C151.989 2.6913 154.073 0.586426 156.643 0.586426C158.829 0.586426 160.664 2.10894 161.163 4.16152C161.397 4.12917 161.636 4.11245 161.879 4.11245C164.771 4.11245 167.116 6.48043 167.116 9.40149C167.116 12.3225 164.771 14.6905 161.879 14.6905H152.571Z" fill="url(#paint0_linear_1024_23937)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1024_23937" x1="157.807" y1="0.586426" x2="157.807" y2="19.0754" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0.7"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,22 @@
|
||||
<svg width="168" height="15" viewBox="0 0 168 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.09214 12.3824H2.03071L1.28256 14.4532H0L3.36671 5.19476H4.76951L8.12286 14.4532H6.8403L6.09214 12.3824ZM5.74478 11.3938L4.06143 6.69107L2.37807 11.3938H5.74478Z" fill="#F02E65"/>
|
||||
<path d="M18.4879 7.86675C18.4879 8.64163 18.2207 9.28736 17.6863 9.80394C17.1608 10.3116 16.3547 10.5655 15.2681 10.5655H13.4779V14.4532H12.2621V5.14132H15.2681C16.3191 5.14132 17.1163 5.39516 17.6596 5.90283C18.2118 6.41051 18.4879 7.06515 18.4879 7.86675ZM15.2681 9.56346C15.945 9.56346 16.4438 9.4165 16.7645 9.12259C17.0851 8.82867 17.2454 8.41005 17.2454 7.86675C17.2454 6.71779 16.5863 6.14331 15.2681 6.14331H13.4779V9.56346H15.2681Z" fill="#F02E65"/>
|
||||
<path d="M28.8967 7.86675C28.8967 8.64163 28.6295 9.28736 28.0951 9.80394C27.5696 10.3116 26.7635 10.5655 25.6769 10.5655H23.8867V14.4532H22.6709V5.14132H25.6769C26.7279 5.14132 27.525 5.39516 28.0683 5.90283C28.6206 6.41051 28.8967 7.06515 28.8967 7.86675ZM25.6769 9.56346C26.3538 9.56346 26.8526 9.4165 27.1732 9.12259C27.4939 8.82867 27.6542 8.41005 27.6542 7.86675C27.6542 6.71779 26.9951 6.14331 25.6769 6.14331H23.8867V9.56346H25.6769Z" fill="#F02E65"/>
|
||||
<path d="M44.783 5.14132L42.0843 14.4532H40.7216L38.5573 6.95827L36.3128 14.4532L34.9634 14.4666L32.3582 5.14132H33.6542L35.6849 13.0371L37.9293 5.14132H39.2921L41.4297 13.0103L43.4737 5.14132H44.783Z" fill="#F02E65"/>
|
||||
<path d="M53.6886 14.4532L51.4708 10.6456H50.0012V14.4532H48.7855V5.14132H51.7915C52.4951 5.14132 53.0874 5.26156 53.5683 5.50204C54.0582 5.74252 54.4234 6.06761 54.6638 6.47731C54.9043 6.88702 55.0246 7.35462 55.0246 7.88011C55.0246 8.52139 54.8375 9.08696 54.4634 9.57682C54.0983 10.0667 53.5461 10.3918 52.8068 10.5521L55.1448 14.4532H53.6886ZM50.0012 9.67034H51.7915C52.4505 9.67034 52.9449 9.51003 53.2744 9.18939C53.604 8.85984 53.7687 8.42341 53.7687 7.88011C53.7687 7.3279 53.604 6.90038 53.2744 6.59755C52.9538 6.29473 52.4594 6.14331 51.7915 6.14331H50.0012V9.67034Z" fill="#F02E65"/>
|
||||
<path d="M60.8014 5.14132V14.4532H59.5856V5.14132H60.8014Z" fill="#F02E65"/>
|
||||
<path d="M71.2768 5.14132V6.12995H68.7385V14.4532H67.5227V6.12995H64.9709V5.14132H71.2768Z" fill="#F02E65"/>
|
||||
<path d="M76.6611 6.12995V9.24283H80.0546V10.2448H76.6611V13.4512H80.4553V14.4532H75.4454V5.12796H80.4553V6.12995H76.6611Z" fill="#F02E65"/>
|
||||
<path d="M84.3791 9.7505C84.3791 8.82421 84.5795 8.00035 84.9803 7.27891C85.3811 6.54857 85.9378 5.983 86.6503 5.5822C87.3717 5.17249 88.1867 4.96764 89.0952 4.96764C90.2085 4.96764 91.1615 5.26156 91.9542 5.8494C92.7469 6.43723 93.2768 7.23883 93.544 8.25419H91.0324C90.8453 7.8623 90.5781 7.56392 90.2308 7.35907C89.8923 7.15422 89.5049 7.05179 89.0684 7.05179C88.3648 7.05179 87.7948 7.29672 87.3584 7.78659C86.922 8.27645 86.7037 8.93109 86.7037 9.7505C86.7037 10.5699 86.922 11.2246 87.3584 11.7144C87.7948 12.2043 88.3648 12.4492 89.0684 12.4492C89.5049 12.4492 89.8923 12.3468 90.2308 12.1419C90.5781 11.9371 90.8453 11.6387 91.0324 11.2468H93.544C93.2768 12.2622 92.7469 13.0638 91.9542 13.6516C91.1615 14.2305 90.2085 14.52 89.0952 14.52C88.1867 14.52 87.3717 14.3196 86.6503 13.9188C85.9378 13.5091 85.3811 12.9435 84.9803 12.2221C84.5795 11.5007 84.3791 10.6768 84.3791 9.7505Z" fill="#F02E65"/>
|
||||
<path d="M99.8996 12.6897H102.892V14.4532H97.6151V5.07452H99.8996V12.6897Z" fill="#F02E65"/>
|
||||
<path d="M111.089 14.5467C110.208 14.5467 109.397 14.3419 108.658 13.9322C107.928 13.5225 107.344 12.9524 106.908 12.2221C106.48 11.4828 106.266 10.6545 106.266 9.73714C106.266 8.81976 106.48 7.9959 106.908 7.26555C107.344 6.53521 107.928 5.96518 108.658 5.55548C109.397 5.14577 110.208 4.94092 111.089 4.94092C111.971 4.94092 112.777 5.14577 113.508 5.55548C114.247 5.96518 114.826 6.53521 115.244 7.26555C115.672 7.9959 115.886 8.81976 115.886 9.73714C115.886 10.6545 115.672 11.4828 115.244 12.2221C114.817 12.9524 114.238 13.5225 113.508 13.9322C112.777 14.3419 111.971 14.5467 111.089 14.5467ZM111.089 12.4626C111.838 12.4626 112.434 12.2132 112.88 11.7144C113.334 11.2156 113.561 10.5566 113.561 9.73714C113.561 8.90883 113.334 8.24974 112.88 7.75987C112.434 7.2611 111.838 7.01171 111.089 7.01171C110.332 7.01171 109.727 7.25664 109.272 7.74651C108.827 8.23638 108.604 8.89992 108.604 9.73714C108.604 10.5655 108.827 11.229 109.272 11.7278C109.727 12.2176 110.332 12.4626 111.089 12.4626Z" fill="#F02E65"/>
|
||||
<path d="M122.073 5.07452V10.6857C122.073 11.2468 122.211 11.6788 122.487 11.9816C122.763 12.2844 123.169 12.4359 123.703 12.4359C124.237 12.4359 124.647 12.2844 124.932 11.9816C125.217 11.6788 125.36 11.2468 125.36 10.6857V5.07452H127.644V10.6723C127.644 11.5096 127.466 12.2176 127.11 12.7966C126.754 13.3755 126.273 13.8119 125.667 14.1059C125.07 14.3998 124.402 14.5467 123.663 14.5467C122.924 14.5467 122.26 14.4042 121.672 14.1192C121.093 13.8253 120.635 13.3889 120.296 12.8099C119.958 12.2221 119.789 11.5096 119.789 10.6723V5.07452H122.073Z" fill="#F02E65"/>
|
||||
<path d="M135.434 5.07452C136.423 5.07452 137.287 5.27046 138.026 5.66236C138.765 6.05425 139.335 6.60646 139.736 7.31899C140.146 8.02262 140.351 8.83757 140.351 9.76386C140.351 10.6812 140.146 11.4962 139.736 12.2087C139.335 12.9213 138.761 13.4735 138.013 13.8654C137.273 14.2573 136.414 14.4532 135.434 14.4532H131.92V5.07452H135.434ZM135.287 12.4759C136.151 12.4759 136.824 12.2399 137.304 11.7679C137.785 11.2958 138.026 10.6278 138.026 9.76386C138.026 8.89992 137.785 8.22747 137.304 7.74651C136.824 7.26555 136.151 7.02507 135.287 7.02507H134.205V12.4759H135.287Z" fill="#F02E65"/>
|
||||
<path d="M152.571 14.6905C150.321 14.6905 148.498 12.8488 148.498 10.5768C148.498 8.45138 150.094 6.70241 152.141 6.48572C152.042 6.10327 151.989 5.70178 151.989 5.28779C151.989 2.6913 154.073 0.586426 156.643 0.586426C158.829 0.586426 160.664 2.10894 161.163 4.16152C161.397 4.12917 161.636 4.11245 161.879 4.11245C164.771 4.11245 167.115 6.48043 167.115 9.40149C167.115 12.3225 164.771 14.6905 161.879 14.6905H152.571Z" fill="url(#paint0_linear_1041_25461)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1041_25461" x1="157.807" y1="0.586426" x2="157.807" y2="19.0754" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F02E65"/>
|
||||
<stop offset="1" stop-color="#F02E65" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,154 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="100" cy="100" r="97" fill="url(#paint0_linear_1062_27346)" stroke="white" stroke-width="6"/>
|
||||
<path d="M39.8226 156.243L46.5542 148.604L47.7068 149.62L44.7814 152.94L48.5898 156.295L51.5151 152.976L52.6714 153.995L45.9399 161.634L44.7836 160.615L47.7188 157.284L43.9104 153.928L40.9752 157.259L39.8226 156.243Z" fill="white"/>
|
||||
<path d="M53.3154 166.951L51.9182 166.11L60.3077 159.275L61.8284 160.19L59.7177 170.804L58.3205 169.963L60.1506 161.339L60.0824 161.298L53.3154 166.951ZM55.6056 163.675L60.1379 166.403L59.4714 167.51L54.9391 164.783L55.6056 163.675Z" fill="white"/>
|
||||
<path d="M76.4139 170.44L74.9628 169.891C75.0241 169.56 75.0233 169.248 74.9604 168.955C74.8975 168.662 74.787 168.392 74.6289 168.144C74.4709 167.897 74.2712 167.68 74.03 167.493C73.7919 167.307 73.5209 167.157 73.217 167.042C72.6682 166.835 72.1247 166.788 71.5864 166.9C71.0511 167.013 70.5572 167.288 70.1046 167.727C69.6552 168.166 69.2852 168.771 68.9947 169.54C68.7019 170.315 68.5788 171.016 68.6254 171.643C68.6751 172.271 68.8655 172.804 69.1965 173.24C69.5275 173.677 69.9643 173.998 70.5069 174.203C70.8077 174.317 71.1082 174.384 71.4084 174.405C71.7128 174.425 72.0056 174.395 72.2866 174.317C72.5677 174.239 72.8281 174.113 73.0678 173.937C73.3119 173.76 73.5208 173.531 73.6944 173.249L75.1437 173.802C74.8894 174.241 74.5762 174.615 74.2042 174.925C73.8365 175.232 73.4252 175.463 72.9701 175.617C72.5194 175.769 72.0431 175.839 71.5411 175.827C71.0392 175.814 70.5262 175.709 70.0022 175.511C69.1775 175.2 68.5164 174.727 68.0191 174.092C67.5229 173.455 67.227 172.7 67.1313 171.828C67.0387 170.957 67.1839 170.014 67.5669 169C67.9511 167.983 68.4668 167.181 69.1141 166.593C69.7626 166.002 70.483 165.632 71.2755 165.485C72.0692 165.335 72.8768 165.415 73.6985 165.726C74.2039 165.917 74.6476 166.167 75.0298 166.478C75.4162 166.787 75.7319 167.147 75.9768 167.559C76.223 167.967 76.3852 168.415 76.4636 168.901C76.5431 169.385 76.5265 169.898 76.4139 170.44Z" fill="white"/>
|
||||
<path d="M81.6348 178.973L83.4635 168.957L84.9747 169.232L84.1015 174.016L84.2237 174.038L89.2982 170.022L91.2007 170.369L86.3376 174.141L89.3866 180.388L87.5673 180.056L85.1466 174.99L83.7148 176.133L83.1461 179.249L81.6348 178.973Z" fill="white"/>
|
||||
<path d="M97.7125 181.081L96.0819 181.071L99.8052 170.911L101.58 170.921L105.185 181.124L103.554 181.115L100.724 172.766L100.645 172.765L97.7125 181.081ZM98.0092 177.095L103.299 177.126L103.291 178.418L98.0017 178.388L98.0092 177.095Z" fill="white"/>
|
||||
<path d="M110.219 171.852L109.997 170.548L117.765 169.224L117.987 170.527L114.855 171.061L116.345 179.795L114.835 180.052L113.346 171.319L110.219 171.852Z" fill="white"/>
|
||||
<path d="M127.242 177.284L123.755 167.717L125.198 167.191L126.714 171.349L131.483 169.61L129.967 165.453L131.415 164.925L134.902 174.492L133.454 175.019L131.934 170.848L127.165 172.586L128.685 176.758L127.242 177.284Z" fill="white"/>
|
||||
<path d="M147.385 162.116C147.94 163.05 148.246 163.955 148.304 164.831C148.36 165.704 148.197 166.498 147.817 167.214C147.437 167.925 146.87 168.504 146.115 168.953C145.357 169.403 144.573 169.626 143.764 169.62C142.957 169.61 142.182 169.371 141.441 168.901C140.699 168.432 140.052 167.731 139.498 166.799C138.943 165.865 138.638 164.961 138.582 164.088C138.525 163.212 138.686 162.419 139.065 161.708C139.446 160.992 140.015 160.41 140.773 159.959C141.528 159.511 142.31 159.292 143.118 159.301C143.926 159.307 144.701 159.544 145.443 160.014C146.183 160.48 146.83 161.181 147.385 162.116ZM146.077 162.892C145.654 162.18 145.182 161.649 144.662 161.298C144.143 160.944 143.609 160.759 143.062 160.745C142.515 160.727 141.991 160.867 141.489 161.165C140.985 161.464 140.61 161.859 140.364 162.347C140.117 162.833 140.024 163.39 140.084 164.017C140.145 164.64 140.388 165.308 140.811 166.02C141.234 166.732 141.705 167.266 142.224 167.621C142.744 167.971 143.278 168.155 143.825 168.174C144.37 168.189 144.894 168.047 145.399 167.748C145.9 167.45 146.275 167.058 146.522 166.572C146.77 166.081 146.864 165.525 146.802 164.902C146.742 164.275 146.5 163.605 146.077 162.892Z" fill="white"/>
|
||||
<path d="M155.528 148.964L162.26 156.603L161.201 157.537L152.381 155.356L152.31 155.419L157.247 161.021L156.094 162.037L149.363 154.398L150.429 153.458L159.26 155.643L159.33 155.58L154.387 149.97L155.528 148.964Z" fill="white"/>
|
||||
<path d="M78.1516 131.8C67.9067 131.8 59.6016 123.495 59.6016 113.25C59.6016 103.666 66.8703 95.7791 76.1959 94.8021C75.7429 93.0774 75.5016 91.267 75.5016 89.4002C75.5016 77.6918 84.9931 68.2002 96.7016 68.2002C106.659 68.2002 115.014 75.0657 117.289 84.3214C118.356 84.1756 119.445 84.1002 120.552 84.1002C133.724 84.1002 144.402 94.7782 144.402 107.95C144.402 121.122 133.724 131.8 120.552 131.8H78.1516Z" fill="url(#paint1_linear_1062_27346)"/>
|
||||
<path d="M86.2752 30.8798C86.2752 31.1252 86.0982 31.3241 85.8798 31.3241C85.6614 31.3241 85.4844 31.1252 85.4844 30.8798C85.4844 30.6345 85.6614 30.4355 85.8798 30.4355C86.0982 30.4355 86.2752 30.6345 86.2752 30.8798Z" fill="url(#paint2_linear_1062_27346)"/>
|
||||
<path d="M111.582 30.8798C111.582 31.1252 111.405 31.3241 111.186 31.3241C110.968 31.3241 110.791 31.1252 110.791 30.8798C110.791 30.6345 110.968 30.4355 111.186 30.4355C111.405 30.4355 111.582 30.6345 111.582 30.8798Z" fill="url(#paint3_linear_1062_27346)"/>
|
||||
<path d="M56.4814 43.3959C56.4814 43.6413 56.3044 43.8402 56.086 43.8402C55.8676 43.8402 55.6906 43.6413 55.6906 43.3959C55.6906 43.1505 55.8676 42.9516 56.086 42.9516C56.3044 42.9516 56.4814 43.1505 56.4814 43.3959Z" fill="url(#paint4_linear_1062_27346)"/>
|
||||
<path d="M77.3125 84.6698C77.3125 84.9151 77.1354 85.114 76.9171 85.114C76.6987 85.114 76.5216 84.9151 76.5216 84.6698C76.5216 84.4244 76.6987 84.2255 76.9171 84.2255C77.1354 84.2255 77.3125 84.4244 77.3125 84.6698Z" fill="url(#paint5_linear_1062_27346)"/>
|
||||
<path d="M86.2752 93.5555C86.2752 93.8009 86.0982 93.9998 85.8798 93.9998C85.6614 93.9998 85.4844 93.8009 85.4844 93.5555C85.4844 93.3102 85.6614 93.1113 85.8798 93.1113C86.0982 93.1113 86.2752 93.3102 86.2752 93.5555Z" fill="url(#paint6_linear_1062_27346)"/>
|
||||
<path d="M86.2752 75.6527C86.2752 75.8981 86.0982 76.097 85.8798 76.097C85.6614 76.097 85.4844 75.8981 85.4844 75.6527C85.4844 75.4073 85.6614 75.2084 85.8798 75.2084C86.0982 75.2084 86.2752 75.4073 86.2752 75.6527Z" fill="url(#paint7_linear_1062_27346)"/>
|
||||
<path d="M86.2752 75.6527C86.2752 75.8981 86.0982 76.097 85.8798 76.097C85.6614 76.097 85.4844 75.8981 85.4844 75.6527C85.4844 75.4073 85.6614 75.2084 85.8798 75.2084C86.0982 75.2084 86.2752 75.4073 86.2752 75.6527Z" fill="url(#paint8_linear_1062_27346)"/>
|
||||
<path d="M151.387 50.3479C151.387 50.5933 151.21 50.7922 150.992 50.7922C150.773 50.7922 150.596 50.5933 150.596 50.3479C150.596 50.1025 150.773 49.9036 150.992 49.9036C151.21 49.9036 151.387 50.1025 151.387 50.3479Z" fill="url(#paint9_linear_1062_27346)"/>
|
||||
<path d="M98.4013 66.8982C98.4013 67.1436 98.2243 67.3425 98.0059 67.3425C97.7875 67.3425 97.6105 67.1436 97.6105 66.8982C97.6105 66.6528 97.7875 66.4539 98.0059 66.4539C98.2243 66.4539 98.4013 66.6528 98.4013 66.8982Z" fill="url(#paint10_linear_1062_27346)"/>
|
||||
<path d="M103.674 63.805C103.674 64.0503 103.497 64.2493 103.278 64.2493C103.06 64.2493 102.883 64.0503 102.883 63.805C102.883 63.5596 103.06 63.3607 103.278 63.3607C103.497 63.3607 103.674 63.5596 103.674 63.805Z" fill="url(#paint11_linear_1062_27346)"/>
|
||||
<path d="M119.49 54.1619C119.49 54.4073 119.313 54.6062 119.095 54.6062C118.876 54.6062 118.699 54.4073 118.699 54.1619C118.699 53.9165 118.876 53.7176 119.095 53.7176C119.313 53.7176 119.49 53.9165 119.49 54.1619Z" fill="url(#paint12_linear_1062_27346)"/>
|
||||
<path d="M124.762 57.1238C124.762 57.3692 124.585 57.5681 124.367 57.5681C124.149 57.5681 123.972 57.3692 123.972 57.1238C123.972 56.8785 124.149 56.6795 124.367 56.6795C124.585 56.6795 124.762 56.8785 124.762 57.1238Z" fill="url(#paint13_linear_1062_27346)"/>
|
||||
<path d="M132.671 48.238C132.671 48.4834 132.494 48.6823 132.275 48.6823C132.057 48.6823 131.88 48.4834 131.88 48.238C131.88 47.9927 132.057 47.7938 132.275 47.7938C132.494 47.7938 132.671 47.9927 132.671 48.238Z" fill="url(#paint14_linear_1062_27346)"/>
|
||||
<path d="M111.582 93.5555C111.582 93.8009 111.405 93.9998 111.186 93.9998C110.968 93.9998 110.791 93.8009 110.791 93.5555C110.791 93.3102 110.968 93.1113 111.186 93.1113C111.405 93.1113 111.582 93.3102 111.582 93.5555Z" fill="url(#paint15_linear_1062_27346)"/>
|
||||
<path d="M27.2264 93.5555C27.2264 93.8009 27.0494 93.9998 26.831 93.9998C26.6126 93.9998 26.4355 93.8009 26.4355 93.5555C26.4355 93.3102 26.6126 93.1113 26.831 93.1113C27.0494 93.1113 27.2264 93.3102 27.2264 93.5555Z" fill="url(#paint16_linear_1062_27346)"/>
|
||||
<path d="M45.796 84.2189C45.796 84.4643 45.619 84.6632 45.4006 84.6632C45.1822 84.6632 45.0052 84.4643 45.0052 84.2189C45.0052 83.9735 45.1822 83.7746 45.4006 83.7746C45.619 83.7746 45.796 83.9735 45.796 84.2189Z" fill="url(#paint17_linear_1062_27346)"/>
|
||||
<path d="M90.8994 44.4554C90.8994 44.7008 90.7224 44.8997 90.504 44.8997C90.2856 44.8997 90.1086 44.7008 90.1086 44.4554C90.1086 44.2101 90.2856 44.0111 90.504 44.0111C90.7224 44.0111 90.8994 44.2101 90.8994 44.4554Z" fill="url(#paint18_linear_1062_27346)"/>
|
||||
<path d="M63.017 83.4171C63.017 83.6625 62.84 83.8614 62.6216 83.8614C62.4033 83.8614 62.2262 83.6625 62.2262 83.4171C62.2262 83.1717 62.4033 82.9728 62.6216 82.9728C62.84 82.9728 63.017 83.1717 63.017 83.4171Z" fill="url(#paint19_linear_1062_27346)"/>
|
||||
<path d="M48.4563 47.9044C48.4563 48.1498 48.2792 48.3487 48.0608 48.3487C47.8425 48.3487 47.6654 48.1498 47.6654 47.9044C47.6654 47.6591 47.8425 47.4602 48.0608 47.4602C48.2792 47.4602 48.4563 47.6591 48.4563 47.9044Z" fill="url(#paint20_linear_1062_27346)"/>
|
||||
<path d="M33.7582 79.2595C33.7582 79.5049 33.5812 79.7038 33.3628 79.7038C33.1444 79.7038 32.9674 79.5049 32.9674 79.2595C32.9674 79.0141 33.1444 78.8152 33.3628 78.8152C33.5812 78.8152 33.7582 79.0141 33.7582 79.2595Z" fill="url(#paint21_linear_1062_27346)"/>
|
||||
<path d="M120.75 70.6494C120.75 70.8948 120.573 71.0937 120.354 71.0937C120.136 71.0937 119.959 70.8948 119.959 70.6494C119.959 70.4041 120.136 70.2052 120.354 70.2052C120.573 70.2052 120.75 70.4041 120.75 70.6494Z" fill="url(#paint22_linear_1062_27346)"/>
|
||||
<path d="M179.475 54.8564C179.475 55.1018 179.298 55.3007 179.08 55.3007C178.861 55.3007 178.684 55.1018 178.684 54.8564C178.684 54.6111 178.861 54.4121 179.08 54.4121C179.298 54.4121 179.475 54.6111 179.475 54.8564Z" fill="url(#paint23_linear_1062_27346)"/>
|
||||
<path d="M169.317 79.4473C169.317 79.6927 169.14 79.8916 168.921 79.8916C168.703 79.8916 168.526 79.6927 168.526 79.4473C168.526 79.202 168.703 79.003 168.921 79.003C169.14 79.003 169.317 79.202 169.317 79.4473Z" fill="url(#paint24_linear_1062_27346)"/>
|
||||
<path d="M33.6121 72.8925L33.0285 74.1626L26.4096 67.6649L27.0448 66.2826L36.2863 67.0726L35.7027 68.3427L28.1828 67.6027L28.1543 67.6647L33.6121 72.8925ZM30.6045 71.2526L32.4976 67.1326L33.5044 67.5952L31.6113 71.7152L30.6045 71.2526Z" fill="white"/>
|
||||
<path d="M39.6176 61.3814L32.4786 56.3614L34.268 53.8167C34.6585 53.2613 35.0832 52.8723 35.5419 52.6496C36.0007 52.4269 36.4692 52.3483 36.9476 52.4138C37.4236 52.4777 37.8801 52.6632 38.317 52.9704C38.7562 53.2793 39.0867 53.6488 39.3085 54.0792C39.5296 54.5056 39.6133 54.9742 39.5597 55.4852C39.5053 55.9922 39.2836 56.5223 38.8947 57.0754L37.6642 58.8253L36.7509 58.183L37.9128 56.5308C38.1595 56.1799 38.2993 55.8527 38.3321 55.5493C38.3625 55.2442 38.3079 54.9662 38.1684 54.7153C38.0288 54.4643 37.8242 54.2441 37.5547 54.0545C37.2851 53.8649 37.0098 53.7478 36.7287 53.7029C36.4477 53.6581 36.1703 53.7044 35.8965 53.8418C35.6244 53.9769 35.3625 54.2234 35.1108 54.5813L34.1598 55.9338L40.375 60.3043L39.6176 61.3814Z" fill="white"/>
|
||||
<path d="M47.4104 51.3134L41.257 45.1247L43.4629 42.9313C43.9444 42.4526 44.4304 42.1436 44.921 42.0044C45.4115 41.8652 45.8866 41.8696 46.3462 42.0175C46.8038 42.1635 47.2209 42.4258 47.5975 42.8046C47.9761 43.1853 48.237 43.6069 48.3803 44.0693C48.5236 44.5278 48.5243 45.0039 48.3823 45.4976C48.2402 45.9874 47.9295 46.4706 47.45 46.9474L45.9331 48.4557L45.1459 47.6639L46.5782 46.2398C46.8824 45.9373 47.0771 45.6395 47.1623 45.3465C47.2455 45.0514 47.2403 44.7682 47.1467 44.4967C47.053 44.2253 46.89 43.9727 46.6577 43.739C46.4253 43.5053 46.1747 43.3419 45.9058 43.2487C45.6369 43.1555 45.3556 43.1527 45.0621 43.2403C44.7706 43.3258 44.4697 43.5228 44.1594 43.8313L42.987 44.9971L48.3442 50.385L47.4104 51.3134Z" fill="white"/>
|
||||
<path d="M58.1752 41.7549L51.3669 35.7824L52.5252 35.0232L57.652 39.7439L57.7198 39.6995L55.4941 33.0774L56.6418 32.3253L61.8279 37.0121L61.8957 36.9677L59.6071 30.3818L60.769 29.6203L63.5249 38.2487L62.4165 38.9752L57.2971 34.5146L57.2401 34.552L59.2872 41.0261L58.1752 41.7549Z" fill="white"/>
|
||||
<path d="M71.1554 34.2885L67.9363 26.1766L70.8277 25.0291C71.4562 24.7797 72.0206 24.6811 72.5211 24.7331C73.0243 24.784 73.4548 24.9601 73.8127 25.2612C74.1696 25.5597 74.447 25.9585 74.6451 26.4576C74.8421 26.954 74.9112 27.4324 74.8524 27.8928C74.7953 28.3495 74.5995 28.765 74.265 29.1391C73.9333 29.5123 73.4531 29.8235 72.8247 30.0729L70.6343 30.9421L70.2162 29.8885L72.2957 29.0633C72.6918 28.9061 72.9914 28.7215 73.1945 28.5095C73.4003 28.2964 73.5184 28.0585 73.5486 27.7959C73.5789 27.5333 73.5337 27.2501 73.4132 26.9464C73.2917 26.6401 73.127 26.3983 72.9191 26.221C72.7138 26.0427 72.4622 25.9439 72.1642 25.9246C71.8677 25.9016 71.5175 25.9703 71.1135 26.1306L69.5767 26.7405L72.3793 33.8028L71.1554 34.2885ZM73.7074 29.0395L77.164 31.904L75.7698 32.4573L72.3528 29.5771L73.7074 29.0395Z" fill="white"/>
|
||||
<path d="M82.5421 21.3869L84.5263 29.8856L83.244 30.185L81.2598 21.6863L82.5421 21.3869Z" fill="white"/>
|
||||
<path d="M90.8215 20.9961L90.7298 19.8663L97.4619 19.3201L97.5536 20.4499L94.8395 20.6701L95.4536 28.239L94.1454 28.3451L93.5313 20.7762L90.8215 20.9961Z" fill="white"/>
|
||||
<path d="M104.589 28.0833L105.412 19.3949L110.859 19.9109L110.752 21.0394L106.616 20.6476L106.365 23.2948L110.217 23.6597L110.11 24.784L106.258 24.4191L106.006 27.079L110.194 27.4757L110.087 28.6041L104.589 28.0833Z" fill="white"/>
|
||||
<path d="M134.613 29.7307L133.388 29.2154C133.451 28.9337 133.46 28.6664 133.415 28.4134C133.371 28.1604 133.284 27.9254 133.157 27.7084C133.029 27.4915 132.865 27.2992 132.664 27.1316C132.466 26.9651 132.239 26.8278 131.982 26.7199C131.519 26.525 131.055 26.4671 130.59 26.546C130.128 26.626 129.696 26.8466 129.295 27.2079C128.896 27.5702 128.56 28.0761 128.287 28.7256C128.012 29.3803 127.884 29.977 127.904 30.5155C127.927 31.0551 128.073 31.5172 128.343 31.9018C128.613 32.2865 128.977 32.5751 129.435 32.7678C129.689 32.8746 129.944 32.9419 130.201 32.9696C130.461 32.9958 130.712 32.9799 130.956 32.9219C131.199 32.8639 131.426 32.7636 131.637 32.6212C131.851 32.4772 132.038 32.2873 132.195 32.0516L133.419 32.5709C133.187 32.9388 132.907 33.2494 132.579 33.5027C132.254 33.7545 131.895 33.9392 131.5 34.0568C131.109 34.1729 130.699 34.2177 130.269 34.1912C129.84 34.1647 129.404 34.0584 128.961 33.8723C128.265 33.5794 127.713 33.1534 127.307 32.5944C126.902 32.0328 126.673 31.3769 126.618 30.6267C126.567 29.8776 126.721 29.0749 127.081 28.2186C127.442 27.3596 127.909 26.6884 128.482 26.2051C129.056 25.7192 129.685 25.4258 130.368 25.3249C131.053 25.2213 131.742 25.3154 132.436 25.6072C132.863 25.7867 133.235 26.0156 133.553 26.2939C133.874 26.5708 134.133 26.8892 134.33 27.2494C134.528 27.6069 134.653 27.9953 134.704 28.4146C134.757 28.8313 134.727 29.27 134.613 29.7307Z" fill="white"/>
|
||||
<path d="M138.028 38.2824L142.762 30.9511L143.869 31.6654L139.749 38.0446L143.071 40.1899L142.456 41.1421L138.028 38.2824Z" fill="white"/>
|
||||
<path d="M156.13 47.0572C155.491 47.7354 154.818 48.2017 154.11 48.4559C153.404 48.7081 152.711 48.762 152.032 48.6175C151.356 48.4728 150.744 48.1424 150.196 47.6262C149.646 47.108 149.278 46.5151 149.091 45.8474C148.909 45.1796 148.923 44.4848 149.135 43.7631C149.346 43.0413 149.77 42.3423 150.407 41.6661C151.046 40.9878 151.719 40.5226 152.425 40.2704C153.133 40.0162 153.824 39.9613 154.5 40.106C155.179 40.2505 155.794 40.5818 156.344 41.1C156.892 41.6162 157.258 42.2082 157.44 42.876C157.627 43.5437 157.615 44.2384 157.403 44.9602C157.193 45.6799 156.769 46.3789 156.13 47.0572ZM155.181 46.163C155.668 45.6461 155.994 45.1319 156.16 44.6205C156.33 44.109 156.355 43.6259 156.237 43.1712C156.123 42.7164 155.884 42.3176 155.52 41.9747C155.154 41.6299 154.741 41.4141 154.28 41.3274C153.821 41.2386 153.34 41.2932 152.838 41.491C152.339 41.6888 151.847 42.0462 151.36 42.5632C150.873 43.0801 150.544 43.5944 150.375 44.1059C150.209 44.6173 150.183 45.1004 150.297 45.5552C150.413 46.0079 150.654 46.4067 151.02 46.7515C151.384 47.0943 151.796 47.3102 152.255 47.399C152.717 47.4876 153.198 47.4331 153.697 47.2353C154.199 47.0374 154.694 46.68 155.181 46.163Z" fill="white"/>
|
||||
<path d="M168.195 55.1119L168.962 56.1873L164.289 59.5206C163.791 59.8753 163.267 60.0728 162.717 60.1131C162.169 60.1517 161.634 60.0378 161.112 59.7712C160.593 59.5031 160.13 59.0845 159.724 58.5156C159.32 57.9489 159.076 57.3764 158.991 56.7981C158.909 56.2182 158.976 55.6753 159.191 55.1695C159.408 54.662 159.765 54.2309 160.262 53.8762L164.935 50.5429L165.7 51.6149L161.114 54.8864C160.792 55.1157 160.557 55.39 160.408 55.7092C160.26 56.0308 160.208 56.3734 160.251 56.737C160.296 57.099 160.447 57.4592 160.703 57.8177C160.96 58.1785 161.253 58.4393 161.58 58.6C161.911 58.7614 162.252 58.8223 162.6 58.7829C162.951 58.7458 163.287 58.6126 163.608 58.3833L168.195 55.1119Z" fill="white"/>
|
||||
<path d="M166.454 69.6939L165.275 67.1266L173.205 63.4828L174.422 66.1313C174.779 66.9084 174.927 67.6486 174.865 68.3521C174.807 69.0544 174.55 69.6898 174.095 70.2583C173.644 70.8282 173.007 71.3023 172.183 71.6807C171.357 72.0603 170.578 72.2354 169.846 72.2062C169.114 72.1796 168.458 71.9558 167.877 71.535C167.299 71.113 166.824 70.4993 166.454 69.6939ZM166.87 67.8427L167.47 69.1476C167.747 69.7517 168.091 70.2016 168.502 70.4973C168.916 70.7919 169.385 70.9389 169.91 70.9384C170.438 70.9367 171.015 70.7918 171.643 70.5035C172.265 70.2177 172.747 69.8757 173.089 69.4777C173.433 69.0822 173.627 68.638 173.673 68.145C173.718 67.652 173.608 67.1164 173.343 66.5382L172.709 65.1597L166.87 67.8427Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1062_27346" x1="100" y1="0" x2="100" y2="233.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1B1B28"/>
|
||||
<stop offset="0.260417" stop-color="#272739"/>
|
||||
<stop offset="1" stop-color="#C81B4C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1062_27346" x1="102.002" y1="68.2002" x2="102.002" y2="142.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6993"/>
|
||||
<stop offset="0.206489" stop-color="#F02E65"/>
|
||||
<stop offset="0.651581" stop-color="#F02E65" stop-opacity="0.33"/>
|
||||
<stop offset="1" stop-color="#F02E65" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint23_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint24_linear_1062_27346" x1="220.891" y1="-21.0002" x2="220.891" y2="129.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 24 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="100" height="17" viewBox="0 0 100 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.10869 5.65421C0.579492 7.20474 0.579492 9.71836 2.10869 11.2687L6.53833 15.7603C8.06753 17.3107 10.5466 17.3107 12.0756 15.7603L16.5054 11.2687C18.0345 9.71821 18.0345 7.2046 16.5054 5.65421L12.0756 1.16279C10.5464 -0.387596 8.06739 -0.387596 6.53833 1.16279L2.10869 5.65421ZM11.245 10.4266C12.3154 9.34126 12.3154 7.5817 11.245 6.49647C10.1747 5.4111 8.4393 5.4111 7.369 6.49647C6.29856 7.58184 6.29856 9.34126 7.369 10.4266C8.43944 11.5119 10.1747 11.5119 11.2451 10.4266H11.245Z" fill="white"/>
|
||||
<path d="M21.4213 14.9122V1.80273H23.9832V7.32707L23.6758 6.91145C23.8921 6.34574 24.2394 5.93011 24.7176 5.66457C25.2072 5.38749 25.7765 5.24895 26.4255 5.24895C27.1315 5.24895 27.7464 5.39904 28.2701 5.69921C28.8053 5.99938 29.2209 6.42078 29.5169 6.9634C29.813 7.49448 29.961 8.11791 29.961 8.83371V14.9122H27.3991V9.38788C27.3991 9.01843 27.3251 8.70094 27.177 8.4354C27.0404 8.16987 26.8411 7.96205 26.5793 7.81197C26.3288 7.66188 26.0327 7.58684 25.6911 7.58684C25.3609 7.58684 25.0649 7.66188 24.803 7.81197C24.5411 7.96205 24.3362 8.16987 24.1881 8.4354C24.0515 8.70094 23.9832 9.01843 23.9832 9.38788V14.9122H21.4213Z" fill="white"/>
|
||||
<path d="M34.1904 15.12C33.5186 15.12 32.9379 15.0103 32.4483 14.791C31.9587 14.5716 31.583 14.2599 31.3211 13.8558C31.0592 13.4402 30.9282 12.9495 30.9282 12.3838C30.9282 11.8528 31.0478 11.3852 31.2869 10.9811C31.526 10.5655 31.8904 10.2191 32.38 9.94204C32.881 9.66496 33.5015 9.46869 34.2417 9.35324L37.0939 8.88566V10.7906L34.7028 11.2235C34.3384 11.2928 34.0595 11.414 33.8659 11.5872C33.6723 11.7489 33.5756 11.9855 33.5756 12.2972C33.5756 12.5859 33.6837 12.811 33.9001 12.9726C34.1164 13.1343 34.384 13.2151 34.7028 13.2151C35.1241 13.2151 35.4941 13.1227 35.813 12.938C36.1318 12.7533 36.3766 12.5051 36.5474 12.1933C36.7296 11.8701 36.8207 11.5179 36.8207 11.137V8.67785C36.8207 8.31995 36.6783 8.01978 36.3937 7.77733C36.1204 7.53488 35.7446 7.41366 35.2664 7.41366C34.811 7.41366 34.4068 7.54066 34.0538 7.79465C33.7122 8.04864 33.4617 8.38345 33.3023 8.79907L31.2528 7.81197C31.4349 7.28089 31.7253 6.82486 32.1238 6.44387C32.5223 6.06288 33.0005 5.76848 33.5585 5.56067C34.1164 5.35286 34.7256 5.24895 35.386 5.24895C36.1716 5.24895 36.8662 5.39326 37.4697 5.68189C38.0731 5.97052 38.54 6.3746 38.8702 6.89413C39.2118 7.40212 39.3826 7.99669 39.3826 8.67785V14.9122H36.9914V13.3883L37.5721 13.2844C37.2989 13.7 36.9971 14.0463 36.6669 14.3234C36.3367 14.5889 35.9667 14.7852 35.5568 14.9122C35.1469 15.0508 34.6914 15.12 34.1904 15.12Z" fill="white"/>
|
||||
<path d="M44.5749 15.12C43.5501 15.12 42.6563 14.8776 41.8934 14.3927C41.1419 13.8962 40.6295 13.2324 40.3562 12.4011L42.235 11.5006C42.4741 12.0086 42.7986 12.4069 43.2085 12.6955C43.6184 12.9842 44.0739 13.1285 44.5749 13.1285C44.9392 13.1285 45.2182 13.0534 45.4117 12.9034C45.6053 12.7533 45.7021 12.5455 45.7021 12.2799C45.7021 12.1414 45.6679 12.0259 45.5996 11.9336C45.5313 11.8297 45.4288 11.7373 45.2922 11.6565C45.1556 11.5757 44.9848 11.5064 44.7798 11.4487L43.1914 10.9984C42.4285 10.7791 41.8421 10.4269 41.4322 9.94204C41.0223 9.4456 40.8174 8.86257 40.8174 8.19296C40.8174 7.60415 40.9654 7.0904 41.2614 6.65168C41.5575 6.21297 41.9731 5.87239 42.5082 5.62994C43.0434 5.37595 43.6583 5.24895 44.3528 5.24895C45.2637 5.24895 46.0608 5.46831 46.7439 5.90702C47.4385 6.33419 47.9281 6.94031 48.2128 7.72538L46.317 8.6259C46.1803 8.23336 45.9298 7.92165 45.5655 7.69074C45.2125 7.4483 44.8083 7.32707 44.3528 7.32707C44.0226 7.32707 43.7607 7.39634 43.5672 7.53488C43.385 7.67342 43.2939 7.86392 43.2939 8.10637C43.2939 8.23336 43.3281 8.34881 43.3964 8.45272C43.4647 8.55663 43.5729 8.64899 43.7209 8.7298C43.8803 8.81062 44.0739 8.88566 44.3016 8.95493L45.7875 9.40519C46.5618 9.63609 47.1538 9.98822 47.5638 10.4616C47.9737 10.9234 48.1786 11.4949 48.1786 12.176C48.1786 12.7648 48.0249 13.2786 47.7175 13.7173C47.4214 14.156 47.0058 14.5024 46.4707 14.7564C45.9355 14.9988 45.3036 15.12 44.5749 15.12Z" fill="white"/>
|
||||
<path d="M49.3682 14.9122V1.80273H51.9301V7.32707L51.6227 6.91145C51.839 6.34574 52.1863 5.93011 52.6645 5.66457C53.1541 5.38749 53.7234 5.24895 54.3724 5.24895C55.0784 5.24895 55.6933 5.39904 56.217 5.69921C56.7522 5.99938 57.1678 6.42078 57.4638 6.9634C57.7599 7.49448 57.9079 8.11791 57.9079 8.83371V14.9122H55.346V9.38788C55.346 9.01843 55.272 8.70094 55.1239 8.4354C54.9873 8.16987 54.788 7.96205 54.5262 7.81197C54.2757 7.66188 53.9796 7.58684 53.638 7.58684C53.3078 7.58684 53.0118 7.66188 52.7499 7.81197C52.488 7.96205 52.2831 8.16987 52.135 8.4354C51.9984 8.70094 51.9301 9.01843 51.9301 9.38788V14.9122H49.3682Z" fill="white"/>
|
||||
<path d="M59.2509 14.9122V5.45676H61.642V7.32707L61.5054 6.91145C61.7217 6.34574 62.069 5.93011 62.5472 5.66457C63.0368 5.38749 63.6062 5.24895 64.2552 5.24895C64.9611 5.24895 65.576 5.39904 66.0998 5.69921C66.6349 5.99938 67.0505 6.42078 67.3465 6.9634C67.6426 7.49448 67.7906 8.11791 67.7906 8.83371V14.9122H65.2287V9.38788C65.2287 9.01843 65.1547 8.70094 65.0067 8.4354C64.87 8.16987 64.6708 7.96205 64.4089 7.81197C64.1584 7.66188 63.8623 7.58684 63.5208 7.58684C63.1906 7.58684 62.8945 7.66188 62.6326 7.81197C62.3707 7.96205 62.1658 8.16987 62.0178 8.4354C61.8811 8.70094 61.8128 9.01843 61.8128 9.38788V14.9122H59.2509Z" fill="white"/>
|
||||
<path d="M73.7621 15.12C72.8399 15.12 71.9973 14.9064 71.2344 14.4793C70.4829 14.0521 69.8794 13.4691 69.424 12.7302C68.9799 11.9798 68.7579 11.1312 68.7579 10.1845C68.7579 9.22624 68.9799 8.37768 69.424 7.63879C69.8794 6.8999 70.4829 6.31687 71.2344 5.88971C71.9973 5.46254 72.8399 5.24895 73.7621 5.24895C74.6844 5.24895 75.5213 5.46254 76.2728 5.88971C77.0243 6.31687 77.6221 6.8999 78.0662 7.63879C78.5216 8.37768 78.7493 9.22624 78.7493 10.1845C78.7493 11.1312 78.5216 11.9798 78.0662 12.7302C77.6221 13.4691 77.0243 14.0521 76.2728 14.4793C75.5213 14.9064 74.6844 15.12 73.7621 15.12ZM73.7621 12.7821C74.229 12.7821 74.6332 12.6725 74.9748 12.4531C75.3278 12.2337 75.601 11.9278 75.7946 11.5353C75.9996 11.1427 76.102 10.6925 76.102 10.1845C76.102 9.6765 75.9996 9.23202 75.7946 8.85103C75.601 8.45849 75.3278 8.15255 74.9748 7.93319C74.6332 7.70229 74.229 7.58684 73.7621 7.58684C73.2953 7.58684 72.8854 7.70229 72.5324 7.93319C72.1795 8.15255 71.9005 8.45849 71.6955 8.85103C71.502 9.23202 71.4052 9.6765 71.4052 10.1845C71.4052 10.6925 71.502 11.1427 71.6955 11.5353C71.9005 11.9278 72.1795 12.2337 72.5324 12.4531C72.8854 12.6725 73.2953 12.7821 73.7621 12.7821Z" fill="white"/>
|
||||
<path d="M84.3064 15.12C83.3955 15.12 82.5814 14.9007 81.8641 14.462C81.1467 14.0232 80.5774 13.4287 80.1561 12.6782C79.7462 11.9278 79.5413 11.0966 79.5413 10.1845C79.5413 9.26088 79.7519 8.42963 80.1732 7.69074C80.5945 6.94031 81.1638 6.34574 81.8812 5.90702C82.5985 5.46831 83.4012 5.24895 84.2894 5.24895C84.9725 5.24895 85.576 5.38172 86.0998 5.64726C86.6349 5.90125 87.0562 6.26492 87.3637 6.73827L86.9708 7.2578V1.80273H89.5328V14.9122H87.1416V13.1804L87.3807 13.7173C87.0619 14.1791 86.6292 14.5312 86.0827 14.7737C85.5362 15.0046 84.9441 15.12 84.3064 15.12ZM84.6139 12.7821C85.0807 12.7821 85.4906 12.6725 85.8436 12.4531C86.1966 12.2337 86.4698 11.9278 86.6634 11.5353C86.8684 11.1427 86.9708 10.6925 86.9708 10.1845C86.9708 9.6765 86.8684 9.22624 86.6634 8.83371C86.4698 8.44117 86.1966 8.13523 85.8436 7.91587C85.4906 7.69652 85.0807 7.58684 84.6139 7.58684C84.147 7.58684 83.7257 7.70229 83.35 7.93319C82.9856 8.15255 82.701 8.45849 82.496 8.85103C82.2911 9.23202 82.1886 9.6765 82.1886 10.1845C82.1886 10.6925 82.2911 11.1427 82.496 11.5353C82.701 11.9278 82.9856 12.2337 83.35 12.4531C83.7257 12.6725 84.147 12.7821 84.6139 12.7821Z" fill="white"/>
|
||||
<path d="M95.5593 15.12C94.5686 15.12 93.709 14.9007 92.9803 14.462C92.2515 14.0117 91.6879 13.4113 91.2894 12.6609C90.8909 11.9105 90.6916 11.0792 90.6916 10.1672C90.6916 9.22047 90.8966 8.37768 91.3065 7.63879C91.7278 6.8999 92.2914 6.31687 92.9973 5.88971C93.7033 5.46254 94.5003 5.24895 95.3885 5.24895C96.1286 5.24895 96.7833 5.37018 97.3526 5.61262C97.9219 5.84352 98.4001 6.17256 98.7873 6.59973C99.1858 7.0269 99.4875 7.52334 99.6925 8.08905C99.8974 8.64321 99.9999 9.24933 99.9999 9.9074C99.9999 10.0921 99.9885 10.2768 99.9658 10.4616C99.9544 10.6347 99.9259 10.7848 99.8804 10.9118H92.8949V9.00689H98.4286L97.216 9.9074C97.3298 9.41096 97.3241 8.97225 97.1989 8.59126C97.0736 8.19873 96.8516 7.89278 96.5328 7.67343C96.2254 7.44252 95.8439 7.32707 95.3885 7.32707C94.9444 7.32707 94.563 7.43675 94.2441 7.65611C93.9253 7.87546 93.6862 8.19873 93.5268 8.6259C93.3674 9.05307 93.3048 9.5726 93.3389 10.1845C93.2934 10.7156 93.356 11.1831 93.5268 11.5872C93.6976 11.9913 93.9595 12.3088 94.3125 12.5397C94.6654 12.759 95.0924 12.8687 95.5934 12.8687C96.0489 12.8687 96.436 12.7764 96.7548 12.5916C97.085 12.4069 97.3412 12.1529 97.5234 11.8297L99.5729 12.8168C99.3907 13.2786 99.1004 13.6827 98.7019 14.029C98.3147 14.3754 97.8536 14.6467 97.3184 14.8429C96.7833 15.0277 96.1969 15.12 95.5593 15.12Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.8 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="100" height="17" viewBox="0 0 100 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.10882 5.65421C0.579614 7.20474 0.579614 9.71836 2.10882 11.2687L6.53845 15.7603C8.06765 17.3107 10.5467 17.3107 12.0757 15.7603L16.5055 11.2687C18.0346 9.71821 18.0346 7.2046 16.5055 5.65421L12.0757 1.16279C10.5465 -0.387596 8.06751 -0.387596 6.53845 1.16279L2.10882 5.65421ZM11.2451 10.4266C12.3155 9.34126 12.3155 7.5817 11.2451 6.49647C10.1748 5.4111 8.43942 5.4111 7.36913 6.49647C6.29868 7.58184 6.29868 9.34126 7.36913 10.4266C8.43957 11.5119 10.1748 11.5119 11.2452 10.4266H11.2451Z" fill="#F02E65"/>
|
||||
<path d="M21.4214 14.9122V1.80273H23.9833V7.32707L23.6759 6.91145C23.8922 6.34574 24.2395 5.93011 24.7177 5.66457C25.2073 5.38749 25.7766 5.24895 26.4257 5.24895C27.1316 5.24895 27.7465 5.39904 28.2702 5.69921C28.8054 5.99938 29.221 6.42078 29.517 6.9634C29.8131 7.49448 29.9611 8.11791 29.9611 8.83371V14.9122H27.3992V9.38788C27.3992 9.01843 27.3252 8.70094 27.1772 8.4354C27.0405 8.16987 26.8413 7.96205 26.5794 7.81197C26.3289 7.66188 26.0328 7.58684 25.6912 7.58684C25.361 7.58684 25.065 7.66188 24.8031 7.81197C24.5412 7.96205 24.3363 8.16987 24.1883 8.4354C24.0516 8.70094 23.9833 9.01843 23.9833 9.38788V14.9122H21.4214Z" fill="#F02E65"/>
|
||||
<path d="M34.1905 15.12C33.5187 15.12 32.938 15.0103 32.4484 14.791C31.9588 14.5716 31.5831 14.2599 31.3212 13.8558C31.0593 13.4402 30.9284 12.9495 30.9284 12.3838C30.9284 11.8528 31.0479 11.3852 31.287 10.9811C31.5261 10.5655 31.8905 10.2191 32.3801 9.94204C32.8811 9.66496 33.5017 9.46869 34.2418 9.35324L37.094 8.88566V10.7906L34.7029 11.2235C34.3386 11.2928 34.0596 11.414 33.866 11.5872C33.6725 11.7489 33.5757 11.9855 33.5757 12.2972C33.5757 12.5859 33.6838 12.811 33.9002 12.9726C34.1165 13.1343 34.3841 13.2151 34.7029 13.2151C35.1242 13.2151 35.4943 13.1227 35.8131 12.938C36.1319 12.7533 36.3767 12.5051 36.5475 12.1933C36.7297 11.8701 36.8208 11.5179 36.8208 11.137V8.67785C36.8208 8.31995 36.6784 8.01978 36.3938 7.77733C36.1205 7.53488 35.7448 7.41366 35.2665 7.41366C34.8111 7.41366 34.4069 7.54066 34.0539 7.79465C33.7123 8.04864 33.4618 8.38345 33.3024 8.79907L31.2529 7.81197C31.4351 7.28089 31.7254 6.82486 32.1239 6.44387C32.5224 6.06288 33.0007 5.76848 33.5586 5.56067C34.1165 5.35286 34.7257 5.24895 35.3861 5.24895C36.1718 5.24895 36.8663 5.39326 37.4698 5.68189C38.0733 5.97052 38.5401 6.3746 38.8703 6.89413C39.2119 7.40212 39.3827 7.99669 39.3827 8.67785V14.9122H36.9916V13.3883L37.5723 13.2844C37.299 13.7 36.9973 14.0463 36.6671 14.3234C36.3369 14.5889 35.9668 14.7852 35.5569 14.9122C35.147 15.0508 34.6915 15.12 34.1905 15.12Z" fill="#F02E65"/>
|
||||
<path d="M44.575 15.12C43.5502 15.12 42.6564 14.8776 41.8935 14.3927C41.142 13.8962 40.6296 13.2324 40.3564 12.4011L42.2351 11.5006C42.4742 12.0086 42.7987 12.4069 43.2086 12.6955C43.6185 12.9842 44.074 13.1285 44.575 13.1285C44.9393 13.1285 45.2183 13.0534 45.4119 12.9034C45.6054 12.7533 45.7022 12.5455 45.7022 12.2799C45.7022 12.1414 45.6681 12.0259 45.5997 11.9336C45.5314 11.8297 45.4289 11.7373 45.2923 11.6565C45.1557 11.5757 44.9849 11.5064 44.7799 11.4487L43.1915 10.9984C42.4287 10.7791 41.8423 10.4269 41.4324 9.94204C41.0224 9.4456 40.8175 8.86257 40.8175 8.19296C40.8175 7.60415 40.9655 7.0904 41.2616 6.65168C41.5576 6.21297 41.9732 5.87239 42.5084 5.62994C43.0435 5.37595 43.6584 5.24895 44.3529 5.24895C45.2638 5.24895 46.0609 5.46831 46.7441 5.90702C47.4386 6.33419 47.9282 6.94031 48.2129 7.72538L46.3171 8.6259C46.1804 8.23336 45.9299 7.92165 45.5656 7.69074C45.2126 7.4483 44.8084 7.32707 44.3529 7.32707C44.0227 7.32707 43.7609 7.39634 43.5673 7.53488C43.3851 7.67342 43.294 7.86392 43.294 8.10637C43.294 8.23336 43.3282 8.34881 43.3965 8.45272C43.4648 8.55663 43.573 8.64899 43.721 8.7298C43.8804 8.81062 44.074 8.88566 44.3017 8.95493L45.7876 9.40519C46.5619 9.63609 47.154 9.98822 47.5639 10.4616C47.9738 10.9234 48.1787 11.4949 48.1787 12.176C48.1787 12.7648 48.025 13.2786 47.7176 13.7173C47.4215 14.156 47.0059 14.5024 46.4708 14.7564C45.9356 14.9988 45.3037 15.12 44.575 15.12Z" fill="#F02E65"/>
|
||||
<path d="M49.3683 14.9122V1.80273H51.9302V7.32707L51.6228 6.91145C51.8391 6.34574 52.1864 5.93011 52.6646 5.66457C53.1542 5.38749 53.7235 5.24895 54.3726 5.24895C55.0785 5.24895 55.6934 5.39904 56.2171 5.69921C56.7523 5.99938 57.1679 6.42078 57.4639 6.9634C57.76 7.49448 57.908 8.11791 57.908 8.83371V14.9122H55.3461V9.38788C55.3461 9.01843 55.2721 8.70094 55.1241 8.4354C54.9874 8.16987 54.7882 7.96205 54.5263 7.81197C54.2758 7.66188 53.9797 7.58684 53.6382 7.58684C53.308 7.58684 53.0119 7.66188 52.75 7.81197C52.4881 7.96205 52.2832 8.16987 52.1352 8.4354C51.9985 8.70094 51.9302 9.01843 51.9302 9.38788V14.9122H49.3683Z" fill="#F02E65"/>
|
||||
<path d="M59.251 14.9122V5.45676H61.6421V7.32707L61.5055 6.91145C61.7218 6.34574 62.0691 5.93011 62.5474 5.66457C63.037 5.38749 63.6063 5.24895 64.2553 5.24895C64.9612 5.24895 65.5761 5.39904 66.0999 5.69921C66.635 5.99938 67.0506 6.42078 67.3467 6.9634C67.6427 7.49448 67.7907 8.11791 67.7907 8.83371V14.9122H65.2288V9.38788C65.2288 9.01843 65.1548 8.70094 65.0068 8.4354C64.8702 8.16987 64.6709 7.96205 64.409 7.81197C64.1585 7.66188 63.8625 7.58684 63.5209 7.58684C63.1907 7.58684 62.8946 7.66188 62.6327 7.81197C62.3709 7.96205 62.1659 8.16987 62.0179 8.4354C61.8813 8.70094 61.8129 9.01843 61.8129 9.38788V14.9122H59.251Z" fill="#F02E65"/>
|
||||
<path d="M73.7623 15.12C72.84 15.12 71.9974 14.9064 71.2345 14.4793C70.483 14.0521 69.8795 13.4691 69.4241 12.7302C68.98 11.9798 68.758 11.1312 68.758 10.1845C68.758 9.22624 68.98 8.37768 69.4241 7.63879C69.8795 6.8999 70.483 6.31687 71.2345 5.88971C71.9974 5.46254 72.84 5.24895 73.7623 5.24895C74.6846 5.24895 75.5215 5.46254 76.273 5.88971C77.0244 6.31687 77.6222 6.8999 78.0663 7.63879C78.5217 8.37768 78.7495 9.22624 78.7495 10.1845C78.7495 11.1312 78.5217 11.9798 78.0663 12.7302C77.6222 13.4691 77.0244 14.0521 76.273 14.4793C75.5215 14.9064 74.6846 15.12 73.7623 15.12ZM73.7623 12.7821C74.2291 12.7821 74.6333 12.6725 74.9749 12.4531C75.3279 12.2337 75.6012 11.9278 75.7947 11.5353C75.9997 11.1427 76.1022 10.6925 76.1022 10.1845C76.1022 9.6765 75.9997 9.23202 75.7947 8.85103C75.6012 8.45849 75.3279 8.15255 74.9749 7.93319C74.6333 7.70229 74.2291 7.58684 73.7623 7.58684C73.2954 7.58684 72.8855 7.70229 72.5326 7.93319C72.1796 8.15255 71.9006 8.45849 71.6957 8.85103C71.5021 9.23202 71.4053 9.6765 71.4053 10.1845C71.4053 10.6925 71.5021 11.1427 71.6957 11.5353C71.9006 11.9278 72.1796 12.2337 72.5326 12.4531C72.8855 12.6725 73.2954 12.7821 73.7623 12.7821Z" fill="#F02E65"/>
|
||||
<path d="M84.3066 15.12C83.3957 15.12 82.5815 14.9007 81.8642 14.462C81.1469 14.0232 80.5775 13.4287 80.1563 12.6782C79.7463 11.9278 79.5414 11.0966 79.5414 10.1845C79.5414 9.26088 79.752 8.42963 80.1733 7.69074C80.5946 6.94031 81.1639 6.34574 81.8813 5.90702C82.5986 5.46831 83.4013 5.24895 84.2895 5.24895C84.9727 5.24895 85.5761 5.38172 86.0999 5.64726C86.6351 5.90125 87.0564 6.26492 87.3638 6.73827L86.9709 7.2578V1.80273H89.5329V14.9122H87.1417V13.1804L87.3809 13.7173C87.062 14.1791 86.6294 14.5312 86.0828 14.7737C85.5363 15.0046 84.9442 15.12 84.3066 15.12ZM84.614 12.7821C85.0808 12.7821 85.4907 12.6725 85.8437 12.4531C86.1967 12.2337 86.47 11.9278 86.6635 11.5353C86.8685 11.1427 86.9709 10.6925 86.9709 10.1845C86.9709 9.6765 86.8685 9.22624 86.6635 8.83371C86.47 8.44117 86.1967 8.13523 85.8437 7.91587C85.4907 7.69652 85.0808 7.58684 84.614 7.58684C84.1472 7.58684 83.7259 7.70229 83.3501 7.93319C82.9858 8.15255 82.7011 8.45849 82.4961 8.85103C82.2912 9.23202 82.1887 9.6765 82.1887 10.1845C82.1887 10.6925 82.2912 11.1427 82.4961 11.5353C82.7011 11.9278 82.9858 12.2337 83.3501 12.4531C83.7259 12.6725 84.1472 12.7821 84.614 12.7821Z" fill="#F02E65"/>
|
||||
<path d="M95.5594 15.12C94.5688 15.12 93.7091 14.9007 92.9804 14.462C92.2517 14.0117 91.688 13.4113 91.2895 12.6609C90.891 11.9105 90.6917 11.0792 90.6917 10.1672C90.6917 9.22047 90.8967 8.37768 91.3066 7.63879C91.7279 6.8999 92.2915 6.31687 92.9975 5.88971C93.7034 5.46254 94.5005 5.24895 95.3886 5.24895C96.1287 5.24895 96.7834 5.37018 97.3527 5.61262C97.922 5.84352 98.4003 6.17256 98.7874 6.59973C99.1859 7.0269 99.4877 7.52334 99.6926 8.08905C99.8976 8.64321 100 9.24933 100 9.9074C100 10.0921 99.9886 10.2768 99.9659 10.4616C99.9545 10.6347 99.926 10.7848 99.8805 10.9118H92.895V9.00689H98.4287L97.2161 9.9074C97.3299 9.41096 97.3243 8.97225 97.199 8.59126C97.0738 8.19873 96.8517 7.89278 96.5329 7.67343C96.2255 7.44252 95.844 7.32707 95.3886 7.32707C94.9445 7.32707 94.5631 7.43675 94.2443 7.65611C93.9254 7.87546 93.6863 8.19873 93.5269 8.6259C93.3675 9.05307 93.3049 9.5726 93.3391 10.1845C93.2935 10.7156 93.3561 11.1831 93.5269 11.5872C93.6977 11.9913 93.9596 12.3088 94.3126 12.5397C94.6656 12.759 95.0925 12.8687 95.5935 12.8687C96.049 12.8687 96.4361 12.7764 96.7549 12.5916C97.0851 12.4069 97.3413 12.1529 97.5235 11.8297L99.573 12.8168C99.3909 13.2786 99.1005 13.6827 98.702 14.029C98.3149 14.3754 97.8537 14.6467 97.3186 14.8429C96.7834 15.0277 96.197 15.12 95.5594 15.12Z" fill="#F02E65"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
Reference in New Issue
Block a user