remove website files

This commit is contained in:
Matthew Sevey 2022-05-26 13:16:26 -04:00
parent 98d6884391
commit 2c00bdd86f
No known key found for this signature in database
GPG Key ID: 9ADDD344F13057F6
182 changed files with 0 additions and 17609 deletions

View File

@ -1,54 +0,0 @@
name: Deploy website to Skynet
on:
push:
branches:
- master
paths:
- "packages/website/**"
pull_request:
paths:
- "packages/website/**"
defaults:
run:
working-directory: packages/website
env:
PORTAL_DOMAIN: siasky.net
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
cache-dependency-path: packages/website/yarn.lock
- run: yarn
- run: yarn build
- name: "Integration tests"
uses: cypress-io/github-action@v3
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
working-directory: packages/website
install: false
record: true
start: yarn develop
wait-on: http://localhost:8000
wait-on-timeout: 120
config: baseUrl=http://localhost:8000
- name: "Deploy to Skynet"
uses: skynetlabs/deploy-to-skynet-action@v2
with:
upload-dir: packages/website/public
github-token: ${{ secrets.GITHUB_TOKEN }}
registry-seed: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && secrets.WEBSITE_REGISTRY_SEED || '' }}

View File

@ -21,7 +21,6 @@ jobs:
- packages/dnslink-api/Dockerfile
- packages/handshake-api/Dockerfile
- packages/health-check/Dockerfile
- packages/website/Dockerfile
steps:
- uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v2.0.0

View File

@ -1,23 +0,0 @@
name: Lint - packages/website
on:
pull_request:
paths:
- packages/website/**
defaults:
run:
working-directory: packages/website
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: yarn
- run: yarn prettier --check .

View File

@ -1,74 +0,0 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# dotenv environment variable files
.env*
# gatsby files
.cache/
public
# Mac files
.DS_Store
# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity
# Cypress
cypress/screenshots
cypress/videos

View File

@ -1,5 +0,0 @@
.cache
package.json
package-lock.json
public
static/piwik.js

View File

@ -1,3 +0,0 @@
{
"printWidth": 120
}

View File

@ -1,26 +0,0 @@
FROM node:18.1.0-alpine
RUN apk add --no-cache build-base~=0.5 python3~=3.9
WORKDIR /usr/app
# disable gatsby telemetry and installing cypress binary
ENV GATSBY_TELEMETRY_DISABLED 1
ENV CYPRESS_INSTALL_BINARY 0
COPY packages/website/package.json \
packages/website/yarn.lock \
./
RUN yarn --frozen-lockfile
COPY packages/website/data ./data
COPY packages/website/src ./src
COPY packages/website/static ./static
COPY packages/website/gatsby-*.js \
packages/website/postcss.config.js \
packages/website/tailwind.config.js \
./
EXPOSE 9000
CMD ["sh", "-c", "yarn build && yarn serve --host 0.0.0.0"]

View File

@ -1,5 +0,0 @@
{
"baseUrl": "http://localhost:8000",
"projectId": "gey76p",
"videoUploadOnPasses": false
}

View File

@ -1,5 +0,0 @@
{
"name": "Using fixtures to represent data",
"email": "hello@cypress.io",
"body": "Fixtures are a great way to mock data for responses to routes"
}

View File

@ -1,34 +0,0 @@
/// <reference types="cypress" />
context("Skynet website", () => {
Cypress.on("uncaught:exception", (err, runnable) => {
return false; // returning false here prevents Cypress from failing the test
});
beforeEach(() => {
cy.visit("");
});
it("should render page title", () => {
cy.contains("Decentralized Internet");
});
it("should be able to upload a file", () => {
cy.intercept("POST", "/skynet/skyfile").as("upload");
cy.wait(1000); // delay for drag-and-drop to work properly every time
cy.get('.home-upload-dropzone input[type="file"]').selectFile("cypress/fixtures/example.json", { force: true });
cy.get(".home-uploaded-files").children().should("have.length", 1);
// wait max 2 minutes, the portal might be slow at times
cy.wait("@upload", { responseTimeout: 2 * 60 * 1000 });
cy.contains(".upload-file", "example.json").within(() => {
cy.get("a").invoke("text").should("include", "AADXKUI_ddg_CEkQ747MzMVndJDbCma5jtkgmAzFbl9-Iw");
cy.contains("Copy").click();
cy.contains("Copied").should("be.visible");
});
});
});

View File

@ -1,22 +0,0 @@
/// <reference types="cypress" />
// ***********************************************************
// This example plugins/index.js can be used to load plugins
//
// You can change the location of this file or turn off loading
// the plugins file with the 'pluginsFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/plugins-guide
// ***********************************************************
// This function is called when a project is opened or re-opened (e.g. due to
// the project's config changing)
/**
* @type {Cypress.PluginConfig}
*/
// eslint-disable-next-line no-unused-vars
module.exports = (on, config) => {
// `on` is used to hook into various events Cypress emits
// `config` is the resolved Cypress config
};

View File

@ -1,25 +0,0 @@
// ***********************************************
// This example commands.js shows you how to
// create various custom commands and overwrite
// existing commands.
//
// For more comprehensive examples of custom
// commands please read more here:
// https://on.cypress.io/custom-commands
// ***********************************************
//
//
// -- This is a parent command --
// Cypress.Commands.add('login', (email, password) => { ... })
//
//
// -- This is a child command --
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
//
//
// -- This is a dual command --
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
//
//
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })

View File

@ -1,20 +0,0 @@
// ***********************************************************
// This example support/index.js is processed and
// loaded automatically before your test files.
//
// This is a great place to put global configuration and
// behavior that modifies Cypress.
//
// You can change the location of this file or turn off
// automatically serving support files with the
// 'supportFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/configuration
// ***********************************************************
// Import commands.js using ES2015 syntax:
import "./commands";
// Alternatively you can use CommonJS syntax:
// require('./commands')

View File

@ -1,54 +0,0 @@
- header: Skynet Labs
links:
- title: About us
href: https://skynetlabs.com/about
- title: Brand Guidelines
href: https://support.skynetlabs.com/key-concepts/skynet-brand-guidelines
- title: Careers
href: https://jobs.lever.co/SkynetLabs
- title: Terms of Use
href: /terms
- title: Privacy Policy
href: /privacy
- header: Developers
links:
- title: Developer Guide
href: https://docs.skynetlabs.com
- title: API & SDK Documentation
href: https://sdk.skynetlabs.com
- title: Portal Setup
href: https://support.skynetlabs.com/the-technology/running-a-web-portal
- title: Github
href: https://github.com/SkynetLabs
- title: Gitlab
href: https://gitlab.com/SkynetLabs
- header: Technology
links:
- title: What is Skynet?
href: https://support.skynetlabs.com
- title: Frequent Questions
href: https://support.skynetlabs.com/key-concepts/faqs
- title: Skynet Wiki
href: https://skynet.guide/
- title: Support
href: https://support.skynetlabs.com
- header: Ecosystem
links:
- title: Sia Foundation
href: https://sia.tech
- title: Sia Foundation Forum
href: https://forum.sia.tech
- title: SiaStats
href: https://siastats.info
- title: Skynet AppStore
href: https://skapp.hns.siasky.net/
- header: Skynet Webportals
links:
- title: Siasky.net
href: https://siasky.net/
- title: SkynetFree.net
href: https://skynetfree.net/
- title: SkynetPro.net
href: https://skynetpro.net/
- title: FilePortal.org
href: https://fileportal.org/

View File

@ -1,23 +0,0 @@
/**
* Implement Gatsby's Browser APIs in this file.
*
* See: https://www.gatsbyjs.com/docs/browser-apis/
*/
import "normalize.css";
import "@fontsource/sora/300.css"; // light
import "@fontsource/sora/400.css"; // normal
import "@fontsource/sora/500.css"; // medium
import "@fontsource/sora/600.css"; // semibold
import "@fontsource/source-sans-pro/400.css"; // normal
import "@fontsource/source-sans-pro/600.css"; // semibold
import "./src/styles/global.css";
import * as React from "react";
import Layout from "./src/components/Layout";
export const wrapPageElement = ({ element, props }) => {
// props provide same data to Layout as Page element will get
// including location, data, etc - you don't need to pass it
return <Layout {...props}>{element}</Layout>;
};

View File

@ -1,130 +0,0 @@
const { defaultIcons } = require("gatsby-plugin-manifest/common");
if (!process.env.PORTAL_DOMAIN) {
throw new Error("PORTAL_DOMAIN cannot be empty");
}
module.exports = {
siteMetadata: {
title: `Skynet`,
description: `Skynet is a decentralized file sharing and content distribution protocol`,
author: `Skynet Labs`,
siteUrl: `https://${process.env.PORTAL_DOMAIN}`,
image: `/icons/icon-512x512.png`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/data/`,
},
},
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-plugin-svgr`,
`gatsby-plugin-robots-txt`,
`gatsby-transformer-sharp`,
`gatsby-transformer-yaml`,
{
resolve: `gatsby-plugin-env-variables`,
options: {
allowList: ["PORTAL_DOMAIN", "WEBSITE_CONTACT_EMAIL", "WEBSITE_ABUSE_EMAIL"],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Skynet`,
short_name: `Skynet`,
start_url: `/`,
background_color: `#f1f7f2`,
theme_color: `#f1f7f2`,
display: `minimal-ui`,
icon: `src/images/logo-sq.svg`, // This path is relative to the root of the site.
icons: [
...defaultIcons,
// when we're serving content from the portal on our pathnames that do not have
// favicon defined (basically all non-html content), we want the browsers to be
// able to fall back to favicon.ico (firefox does that)
{
src: `favicon.ico`,
sizes: `32x32`,
type: `image/x-icon`,
},
],
description: `Skynet portal homepage and upload widget`,
},
},
{
resolve: "gatsby-plugin-sitemap",
options: {
output: "/",
createLinkInHead: true,
excludes: ["/using-typescript/"],
query: `
{
site {
siteMetadata {
siteUrl
}
}
allSitePage {
nodes {
path
}
}
}
`,
resolvePages: ({ allSitePage: { nodes: allPages } }) => {
const pathToDateMap = {};
// modify pages to filter out hidden news items and add date
const pages = allPages
.filter((page) => {
if (pathToDateMap[page.path] && pathToDateMap[page.path].hidden) {
return false;
}
return true;
})
.map((page) => {
return { ...page, ...pathToDateMap[page.path] };
});
return pages;
},
serialize: ({ path, date }) => {
let entry = {
url: path,
changefreq: "daily",
priority: 0.5,
};
if (date) {
entry.priority = 0.7;
entry.lastmod = date;
}
return entry;
},
},
},
],
};

View File

@ -1,10 +0,0 @@
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
fallback: {
crypto: require.resolve("crypto-browserify"),
stream: require.resolve("stream-browserify"),
},
},
});
};

View File

@ -1,7 +0,0 @@
/**
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.com/docs/ssr-apis/
*/
// You can delete this file if you're not using it

View File

@ -1,77 +0,0 @@
{
"name": "website",
"private": true,
"description": "Skynet Portal",
"version": "0.1.0",
"author": "Skynet Labs.",
"dependencies": {
"@fontsource/sora": "4.5.8",
"@fontsource/source-sans-pro": "4.5.9",
"@svgr/webpack": "6.2.1",
"bytes": "3.1.2",
"classnames": "2.3.1",
"copy-text-to-clipboard": "3.0.1",
"crypto-browserify": "3.12.0",
"framer-motion": "6.3.3",
"gatsby": "4.13.1",
"gatsby-background-image": "1.6.0",
"gatsby-plugin-env-variables": "2.2.0",
"gatsby-plugin-image": "2.13.0",
"gatsby-plugin-manifest": "4.13.0",
"gatsby-plugin-postcss": "5.13.0",
"gatsby-plugin-react-helmet": "5.13.0",
"gatsby-plugin-robots-txt": "1.7.1",
"gatsby-plugin-sharp": "4.13.0",
"gatsby-plugin-sitemap": "5.13.0",
"gatsby-plugin-svgr": "3.0.0-beta.0",
"gatsby-source-filesystem": "4.13.0",
"gatsby-transformer-sharp": "4.13.0",
"gatsby-transformer-yaml": "4.13.0",
"gbimage-bridge": "0.2.1",
"http-status-codes": "2.2.0",
"ms": "2.1.3",
"nanoid": "3.3.4",
"normalize.css": "8.0.1",
"path-browserify": "1.0.1",
"polished": "4.2.2",
"postcss": "8.4.13",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "14.2.0",
"react-helmet": "6.1.0",
"react-use": "17.3.2",
"skynet-js": "4.1.0",
"stream-browserify": "3.0.0",
"swr": "1.3.0"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.2",
"autoprefixer": "10.4.7",
"cross-env": "7.0.3",
"cypress": "9.6.0",
"prettier": "2.6.2",
"tailwindcss": "3.0.24"
},
"keywords": [
"gatsby"
],
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "gatsby build",
"develop": "cross-env GATSBY_API_URL=https://siasky.net gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"cypress": "cypress"
},
"repository": {
"type": "git",
"url": "https://github.com/SkynetLabs/skynet-webportal"
},
"bugs": {
"url": "https://github.com/SkynetLabs/skynet-webportal/issues"
}
}

View File

@ -1,3 +0,0 @@
module.exports = {
plugins: [require("autoprefixer"), require("tailwindcss")],
};

View File

@ -1,52 +0,0 @@
import * as React from "react";
import {
DiscordSmall,
TwitterSmall,
RedditSmall,
MediumSmall,
YoutubeSmall,
TikTokSmall,
} from "../../components/Icons";
import Link from "../Link";
const social = [
{ name: "Discord", Icon: DiscordSmall, href: "https://discord.gg/skynetlabs" },
{ name: "Twitter", Icon: TwitterSmall, href: "https://twitter.com/SkynetLabs" },
{ name: "Reddit", Icon: RedditSmall, href: "https://www.reddit.com/r/siacoin" },
{ name: "Medium", Icon: MediumSmall, href: "https://blog.sia.tech" },
{ name: "Youtube", Icon: YoutubeSmall, href: "https://www.youtube.com/c/SiaTVOfficial/featured" },
{ name: "TikTok", Icon: TikTokSmall, href: "https://www.tiktok.com/@decentralizedfuture" },
];
const SectionHeader = ({ children }) => <h3 className="uppercase text-xs text-palette-600 desktop:mb-1">{children}</h3>;
const SectionTitle = ({ children }) => (
<h3 className="text-lg desktop:text-3xl font-semibold mb-4 desktop:mb-6">{children}</h3>
);
const CommunitySection = () => {
return (
<div className="grid gap-y-12 desktop:grid-cols-3 desktop:gap-x-8 max-w-full">
<div className="tablet:col-span-2">
<SectionHeader>Community</SectionHeader>
<SectionTitle>Join Skynet community</SectionTitle>
<div className="grid grid-cols-2 tablet:grid-cols-6 max-w-full">
{social.map(({ name, Icon, href }) => (
<Link
key={name}
href={href}
className="text-palette-600 text-sm font-light flex items-center flex-shrink-0 flex-grow-0 whitespace-nowrap leading-10 space-x-2 hover:text-palette-500 transition-colors duration-200"
>
<Icon className="fill-current" />
<span>{name}</span>
</Link>
))}
</div>
</div>
</div>
);
};
CommunitySection.propTypes = {};
CommunitySection.defaultProps = {};
export default CommunitySection;

View File

@ -1 +0,0 @@
export { default } from "./CommunitySection";

View File

@ -1,9 +0,0 @@
import * as React from "react";
import { useDomain } from "../hooks/useDomain";
export const DomainName = () => {
const domain = useDomain();
return <span className="capitalize">{domain}</span>;
};

View File

@ -1,49 +0,0 @@
import * as React from "react";
import { LogoWhiteText } from "../Icons";
import Link from "../Link";
import emails from "../../services/emails";
const Footer = () => {
return (
<div className="bg-palette-600 px-8 py-12">
<div className="max-w-content mx-auto">
<div className="flex justify-between items-center">
<div className="flex items-center">
<LogoWhiteText />
<span className="ml-8 text-palette-300 text-sm font-content hidden desktop:inline">
{new Date().getFullYear()} Skynet Labs
</span>
</div>
<div className="flex flex-col text-right space-y-2">
<div>
<span className="font-content text-palette-300 text-base mr-2">contact us at</span>
<Link
href={`mailto:${emails.contact}`}
className="font-content text-palette-300 text-base underline-primary hover:text-primary transition-colors duration-200"
>
{emails.contact}
</Link>
</div>
<div>
<span className="font-content text-palette-300 text-base mr-2">report abuse at</span>
<Link
href={`mailto:${emails.report}`}
className="font-content text-palette-300 text-base underline-primary hover:text-primary transition-colors duration-200"
>
{emails.report}
</Link>
</div>
</div>
</div>
</div>
</div>
);
};
Footer.propTypes = {};
Footer.defaultProps = {};
export default Footer;

View File

@ -1 +0,0 @@
export { default } from "./Footer";

View File

@ -1,96 +0,0 @@
import * as React from "react";
import { useStaticQuery, graphql } from "gatsby";
import classnames from "classnames";
import { motion, AnimatePresence } from "framer-motion";
import Link from "../Link";
const FooterNavigation = () => {
const { allFooterYaml } = useStaticQuery(graphql`
query FooterQuery {
allFooterYaml {
nodes {
header
links {
href
title
}
}
}
}
`);
const sections = allFooterYaml.nodes;
const [activeSection, setActiveSection] = React.useState(sections[0]);
return (
<div className="bg-palette-500 px-8 py-14">
<div className="max-w-content mx-auto grid grid-cols-1 desktop:grid-cols-5 desktop:gap-x-6 gap-y-4 desktop:gap-y-0">
{sections.map((section) => (
<div key={section.header}>
{/* desktop */}
<div className="hidden desktop:block">
<div className="text-lg text-palette-300 font-light">{section.header}</div>
<ul>
{section.links.map(({ title, ...rest }) => (
<li key={title} className="mt-2 first:mt-4">
<Link
{...rest}
className="text-white font-content hover:text-primary transition-colors duration-200"
>
{title}
</Link>
</li>
))}
</ul>
</div>
{/* mobile */}
<div className="desktop:hidden">
<button
type="button"
className={classnames("text-lg font-light hover:text-primary transition-colors duration-200", {
"text-primary": activeSection === section,
"text-palette-300": activeSection !== section,
})}
onClick={() => setActiveSection(activeSection === section ? null : section)}
>
{section.header}
</button>
<AnimatePresence initial={false}>
{activeSection === section && (
<motion.ul
initial="collapsed"
animate="open"
exit="collapsed"
variants={{
open: { opacity: 1, height: "auto" },
collapsed: { opacity: 0, height: 0 },
}}
className="overflow-hidden"
transition={{ duration: 0.8, ease: [0.04, 0.62, 0.23, 0.98] }}
>
{section.links.map(({ title, ...rest }) => (
<li key={title} className="mt-1 first:mt-4">
<Link
{...rest}
className="text-white font-content hover:text-primary transition-colors duration-200"
>
{title}
</Link>
</li>
))}
</motion.ul>
)}
</AnimatePresence>
</div>
</div>
))}
</div>
</div>
);
};
FooterNavigation.propTypes = {};
FooterNavigation.defaultProps = {};
export default FooterNavigation;

View File

@ -1 +0,0 @@
export { default } from "./FooterNavigation";

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="66" height="66" viewBox="0 0 66 66">
<g fill="none" fill-rule="evenodd">
<circle cx="33" cy="33" r="32" fill="#00C65E"/>
<path stroke="#0D0D0D" stroke-width="2" d="M59.7279532,50.4620828 C62.9634424,45.4615529 64.8418319,39.5010119 64.8418319,33.1017494 C64.8418319,15.4286374 50.5149439,1.1017494 32.8418319,1.1017494 C15.1687199,1.1017494 0.84183186,15.4286374 0.84183186,33.1017494" transform="rotate(-2 32.842 25.782)"/>
<rect width="2" height="16" x="31.903" y="24.903" fill="#0D0D0D"/>
<rect width="16" height="2" x="24.903" y="31.903" fill="#0D0D0D"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 638 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill-rule="evenodd" d="M17.4969298,9.4969297 L17.4960469,19.1129297 L20.7869064,15.797325 L22.2069531,17.2056813 L17.2526515,22.2011078 C16.8937661,22.5629722 16.3268563,22.5931492 15.9333017,22.289983 L15.8387453,22.2072458 L10.7930469,17.2072458 L12.2008126,15.7866136 L15.4960469,19.0519297 L15.4969298,9.4969297 L17.4969298,9.4969297 Z" transform="rotate(-90 16.5 15.997)"/>
</svg>

Before

Width:  |  Height:  |  Size: 478 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill-rule="evenodd" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M19.4363719,13.4966307 C19.8299265,13.1934645 20.3968364,13.2236414 20.7557217,13.5855059 L20.7557217,13.5855059 L25.7100234,18.5809324 L24.2899766,19.9892886 L21,16.673 L21,26 L19,26 L19,16.733 L15.7038828,20.0000001 L14.2961172,18.5793679 L19.3418155,13.5793679 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 643 B

View File

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<g fill="none" fill-rule="evenodd" stroke-linejoin="round">
<g stroke="#00C65E" stroke-width="2">
<g>
<g>
<g>
<path d="M22 12L14.558 20 10 15.101" transform="translate(-28 -2234) translate(0 2060) translate(28 122) translate(0 52)"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 494 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M26.0574126,15.2928932 L27.4716262,16.7071068 L18.0464454,26.1322875 L13.2928932,21.3787353 L14.7071068,19.9645218 L18.046,23.303 L26.0574126,15.2928932 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 527 B

View File

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="62" height="54" viewBox="0 0 62 54">
<defs>
<filter id="cloud-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="25.097 46.291 25.097 32 19.354 32 30 21 40.343 32 35 32 35 50"/>
<g filter="url(#cloud-a)">
<path stroke="#222829" stroke-width="2" d="M41 40L50 40C56.627 40 62 34.628 62 28 62 22.053 58 17 52 17 52 12 49 8 43 8L42 8C39.272 3.076 34.028 0 28 0 19.164 0 12 7.164 12 16 5.373 16 0 21.373 0 28 0 34.628 5.373 40 12 40L21 40M18 17C18 10.925 23 6 28 6"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="25 54 25 32 19 32 30 21 41 32 35 32 35 54"/>
<line x1="30" x2="30" y1="31" y2="33" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="35" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="39" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="43" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,31 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="6-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="69 17 63 17 63 11 58 9 54 14 50 9 45 11 45 17 39 17 37 22 42 26 37 30 39 35 45 35 45 41 50 43 54 38 58 43 63 41 63 35 69 35 71 30 66 26 71 22"/>
<g filter="url(#6-a)">
<g transform="translate(9 9)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M48 17C48 18.656 46.656 20 45 20 43.344 20 42 18.656 42 17 42 15.344 43.344 14 45 14 46.656 14 48 15.344 48 17zM4 33L4 6C4 4.896 4.896 4 6 4L33 4M58 29L58 56C58 57.104 57.104 58 56 58L29 58"/>
<line x1="7" x2="21" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="7" x2="9" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="11" x2="13" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="15" x2="17" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="32" y1="31" y2="31" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="41" y1="54" y2="54" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="53" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="49" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="45" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M14,48 C14,49.656 15.344,51 17,51 C18.656,51 20,49.656 20,48 C20,46.344 17,45 17,45 C17,45 14,43.656 14,42 C14,40.344 15.344,39 17,39 C18.656,39 20,40.344 20,42"/>
<line x1="17" x2="17" y1="39" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="17" x2="17" y1="51" y2="54" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="45" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="9" x2="11" y1="45" y2="45" stroke="#222829" stroke-width="2"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="60 8 54 8 54 2 49 0 45 5 41 0 36 2 36 8 30 8 28 13 33 17 28 21 30 26 36 26 36 32 41 34 45 29 49 34 54 32 54 26 60 26 62 21 57 17 62 13"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="32 36 26 36 26 30 21 28 17 33 13 28 8 30 8 36 2 36 0 41 5 45 0 49 2 54 8 54 8 60 13 62 17 57 21 62 26 60 26 54 32 54 34 49 29 45 34 41"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1,33 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<polygon id="5-b" points="0 58 64 58 64 0 0 0"/>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="13 50 46 50 46 16 13 16"/>
<g filter="url(#5-a)">
<g transform="translate(8 11)">
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="20 32 11 27 11 17 20 22"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="20 22 29 17 29 27 20 32"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="29 17 20 12 11 17"/>
<line x1="34" x2="54" y1="16" y2="16" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="34" x2="54" y1="22" y2="22" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="34" x2="54" y1="28" y2="28" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="14" y2="18" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="49" x2="49" y1="20" y2="24" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="26" y2="30" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M4.0002,1 C2.3442,1 1.0002,2.343 1.0002,4 L1.0002,44 C1.0002,45.657 2.3442,47 4.0002,47 L60.0002,47 C61.6562,47 63.0002,45.657 63.0002,44 L63.0002,4 C63.0002,2.343 61.6562,1 60.0002,1 L4.0002,1 Z"/>
<line x1="38" x2="40" y1="47" y2="57" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="26" y1="57" y2="47" stroke="#222829" stroke-width="2"/>
<line x1="19" x2="45" y1="57" y2="57" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="33" y1="43" y2="43" stroke="#222829" stroke-width="2"/>
<mask id="5-c" fill="#fff">
<use xlink:href="#5-b"/>
</mask>
<polygon stroke="#222829" stroke-width="2" points="5 39 59 39 59 5 5 5" mask="url(#5-c)"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,50 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polyline fill="#00C65E" points="46 36 46 59 71 59 71 36"/>
<g stroke="#222829" stroke-width="2" transform="translate(9 13)">
<path d="M53.9997,9 L53.9997,3 C53.9997,1.343 52.6557,0 50.9997,0 L2.9997,0 C1.3437,0 -0.0003,1.343 -0.0003,3 L-0.0003,41 C-0.0003,42.657 1.3437,44 2.9997,44 L34.9997,44"/>
<line x1="32" x2="32" y1="44" y2="54"/>
<line x1="22" x2="22" y1="54" y2="44"/>
<line x1="19" x2="35" y1="54" y2="54"/>
<line x2="35" y1="36" y2="36"/>
<line x1="26" x2="28" y1="40" y2="40"/>
<path d="M37.9997,17 L37.9997,14 C37.9997,12.896 38.8957,12 39.9997,12 L59.9997,12 C61.1037,12 61.9997,12.896 61.9997,14 L61.9997,52 C61.9997,53.104 61.1037,54 59.9997,54 L39.9997,54 C38.8957,54 37.9997,53.104 37.9997,52 L37.9997,27"/>
<line x1="52" x2="48" y1="50" y2="50"/>
<line x1="53" x2="31" y1="24" y2="24"/>
<line x1="43" x2="24" y1="20" y2="20"/>
<polyline stroke-linecap="round" points="27 23 24 20 27 17"/>
<line x1="53" x2="50" y1="24" y2="21" stroke-linecap="round"/>
<line x1="53" x2="50" y1="24" y2="27" stroke-linecap="round"/>
<line x1="38" x2="62" y1="46" y2="46"/>
<polyline points="4 33 4 4 51 4"/>
<line x1="7" x2="9" y1="12" y2="12"/>
<line x1="11" x2="13" y1="12" y2="12"/>
<line x1="15" x2="17" y1="12" y2="12"/>
<line x1="7" x2="9" y1="16" y2="16"/>
<line x1="11" x2="13" y1="16" y2="16"/>
<line x1="15" x2="17" y1="16" y2="16"/>
<line x1="7" x2="9" y1="20" y2="20"/>
<line x1="11" x2="13" y1="20" y2="20"/>
<line x1="19" x2="21" y1="12" y2="12"/>
<line x1="7" x2="9" y1="8" y2="8"/>
<line x1="11" x2="13" y1="8" y2="8"/>
<line x1="15" x2="17" y1="8" y2="8"/>
<line x1="19" x2="21" y1="8" y2="8"/>
<line x1="23" x2="25" y1="12" y2="12"/>
<line x1="23" x2="25" y1="8" y2="8"/>
<line x1="53" x2="55" y1="38" y2="38"/>
<line x1="57" x2="59" y1="38" y2="38"/>
<line x1="53" x2="55" y1="34" y2="34"/>
<line x1="57" x2="59" y1="34" y2="34"/>
<line x1="49" x2="51" y1="34" y2="34"/>
<line x1="41" x2="43" y1="38" y2="38"/>
<line x1="45" x2="47" y1="38" y2="38"/>
<line x1="49" x2="51" y1="38" y2="38"/>
<line x1="53" x2="55" y1="42" y2="42"/>
<line x1="57" x2="59" y1="42" y2="42"/>
<line x1="41" x2="43" y1="42" y2="42"/>
<line x1="45" x2="47" y1="42" y2="42"/>
<line x1="49" x2="51" y1="42" y2="42"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,45 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<defs>
<filter id="dev-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="dev-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="96" height="48" x="158" y="57" fill="#00C65E" rx="4"/>
<g filter="url(#dev-a)">
<g transform="translate(96 13)">
<path stroke="#0D0D0D" stroke-width="2" d="M135.724609,44 L154,44 C156.209139,44 158,45.790861 158,48 L158,88 C158,90.209139 156.209139,92 154,92 L110,92 L110,92"/>
<g stroke="#0D0D0D" stroke-width="2" transform="translate(0 20)">
<rect width="126" height="78" x="1" y="13"/>
<path d="M24.3242188,1 L34.4384766,1 L123,1 C125.209139,1 127,2.790861 127,5 L127,13 L127,13 L1,13" transform="matrix(-1 0 0 1 128 0)"/>
<line x1="14" x2="18" y1="7" y2="7"/>
<line x1="6" x2="10" y1="7" y2="7"/>
<line x1="22" x2="26" y1="7" y2="7"/>
</g>
<line x1="40" x2="96" y1="125" y2="125" stroke="#0D0D0D" stroke-width="2"/>
<rect width="48" height="2" x="18" y="66" fill="#0D0D0D"/>
<rect width="16" height="2" x="70" y="66" fill="#0D0D0D"/>
<rect width="4" height="2" x="90" y="66" fill="#0D0D0D"/>
<rect width="24" height="2" x="18" y="96" fill="#0D0D0D"/>
<rect width="24" height="2" x="46" y="96" fill="#0D0D0D"/>
<rect width="4" height="2" x="74" y="96" fill="#0D0D0D"/>
<rect width="64" height="2" x="10" y="56" fill="#0D0D0D"/>
<rect width="4" height="2" x="10" y="46" fill="#0D0D0D"/>
<rect width="16" height="2" x="10" y="86" fill="#0D0D0D"/>
<rect width="20" height="2" x="78" y="56" fill="#0D0D0D"/>
<rect width="32" height="2" x="18" y="76" fill="#0D0D0D"/>
<rect width="24" height="2" x="54" y="76" fill="#0D0D0D"/>
<g filter="url(#dev-b)">
<g transform="translate(117)">
<polyline stroke="#222829" stroke-width="2" points="5.414 14.486 .414 9.486 5.414 4.486"/>
<polyline stroke="#222829" stroke-width="2" points="19.414 4.486 24.414 9.486 19.414 14.486"/>
<line x1="7.414" x2="17.414" y1="18.486" y2=".486" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.558 4c.952 0 1.72.758 1.765 1.65V20l-1.813-1.515-.996-.892-1.086-.932.454 1.47H6.376c-.95 0-1.72-.71-1.72-1.651V5.653c0-.892.772-1.651 1.724-1.651zm-6.882 3.788h-.056c-.241.005-1.236.073-2.3.847 0 0-1.221 2.096-1.221 4.68 0 0 .677 1.16 2.535 1.204 0 0 .27-.356.545-.668-1.043-.312-1.45-.936-1.45-.936l.35.177c1.02.414 2.099.936 4.021.624.406-.09.813-.178 1.219-.357.264-.133.59-.266.946-.491 0 0-.407.624-1.493.936.224.31.538.667.538.667 1.858-.04 2.58-1.2 2.62-1.151 0-2.58-1.228-4.68-1.228-4.68-1.1-.803-2.126-.84-2.32-.84l-.124.122c1.404.4 2.083 1.025 2.083 1.025-2.036-1.003-4.235-1.06-6.25-.268-.316.135-.497.224-.497.224s.678-.668 2.173-1.025l-.091-.09zm2.852 2.943c.476 0 .86.4.86.89 0 .493-.386.893-.86.893s-.86-.4-.86-.89c.002-.493.388-.891.86-.891zm-3.076 0c.474 0 .858.4.858.89 0 .493-.386.893-.86.893s-.86-.4-.86-.89c0-.493.386-.891.86-.891z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1006 B

View File

@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<defs>
<filter id="qxevq17k4a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g filter="url(#qxevq17k4a)" transform="translate(-28 -286) translate(28 284) translate(0 2)">
<g fill="#000" fill-rule="nonzero">
<path d="M1.72 14.13h9.506l-.454-1.47 1.086.933.995.892L14.667 16V1.65C14.62.758 13.853 0 12.9 0L1.723.002C.772.002 0 .762 0 1.653V12.48c0 .94.77 1.65 1.72 1.65zm1.945-9.495c1.222-.89 2.354-.847 2.354-.847l.092.09c-1.496.357-2.174 1.025-2.174 1.025s.182-.089.498-.224c2.014-.792 4.214-.735 6.25.268 0 0-.68-.625-2.083-1.025l.124-.122c.194 0 1.22.037 2.32.84 0 0 1.229 2.1 1.229 4.68-.041-.05-.763 1.11-2.621 1.15 0 0-.315-.355-.539-.666 1.087-.312 1.494-.936 1.494-.936-.357.225-.682.358-.946.491-.406.179-.813.267-1.219.357-1.923.312-3.002-.21-4.022-.624l-.349-.177s.406.624 1.45.936c-.274.312-.546.668-.546.668-1.857-.044-2.534-1.204-2.534-1.204 0-2.584 1.222-4.68 1.222-4.68z" transform="translate(4.656 4)"/>
<path d="M8.872 8.514c.474 0 .86-.4.86-.893 0-.49-.384-.89-.86-.89v.002c-.472 0-.859.398-.86.892 0 .489.386.889.86.889zM5.793 8.514c.474 0 .86-.4.86-.893 0-.49-.383-.89-.857-.89l-.003.002c-.474 0-.86.398-.86.892 0 .489.386.889.86.889z" transform="translate(4.656 4)"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,41 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="21 11 21 37 42 37 42 11"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(13 10)">
<polyline points="29 27 8 27 8 1 46 1 46 16"/>
<line x1="12" x2="12" y1="12" y2="14"/>
<line x1="12" x2="12" y1="8" y2="10"/>
<line x1="16" x2="16" y1="6" y2="14"/>
<line x1="20" x2="20" y1="12" y2="14"/>
<line x1="24" x2="24" y1="6" y2="14"/>
<line x1="30" x2="30" y1="6" y2="14"/>
<line x1="34" x2="34" y1="6" y2="8"/>
<line x1="38" x2="38" y1="6" y2="8"/>
<line x1="34" x2="34" y1="10" y2="12"/>
<line x1="38" x2="38" y1="12" y2="16"/>
<line x1="42" x2="42" y1="6" y2="14"/>
<line x1="34" x2="34" y1="14" y2="20"/>
<line x1="12" x2="12" y1="16" y2="24"/>
<line x1="16" x2="16" y1="22" y2="24"/>
<line x1="26" x2="26" y1="22" y2="24"/>
<line x1="30" x2="30" y1="20" y2="22"/>
<line x1="30" x2="30" y1="16" y2="18"/>
<line x1="16" x2="16" y1="16" y2="18"/>
<line x1="22" x2="22" y1="16" y2="24"/>
<g transform="translate(0 .5)">
<line x1="50" x2="50" y1="3.5" y2=".5"/>
<line x1="4" x2="4" y1="3.5" y2=".5"/>
<path d="M50.4997,29.5 C50.4997,33.918 46.9187,37.5 42.4997,37.5 C38.0817,37.5 34.4997,33.918 34.4997,29.5 C34.4997,25.082 38.0817,21.5 42.4997,21.5 C46.9187,21.5 50.4997,25.082 50.4997,29.5 Z"/>
<line x1="7" x2="21" y1="40.5" y2="40.5"/>
<line x1="7" x2="31" y1="44.5" y2="44.5"/>
<line x1="7" x2="31" y1="48.5" y2="48.5"/>
<polyline points="35 56.5 0 56.5 0 16.5"/>
<line x1="45" x2="51" y1="56.5" y2="56.5"/>
<line x1="45" x2="47.667" y1="52.5" y2="52.5"/>
<line x1="45" x2="49" y1="48.5" y2="48.5"/>
<polyline points="54 17.5 54 .5 0 .5 0 12.5"/>
<polyline points="44.5 38 44.5 60 40.5 60 40.5 38"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill-rule="evenodd" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M24.9497475,13.636039 L26.363961,15.0502525 L21.4142136,20 L26.363961,24.9497475 L24.9497475,26.363961 L20,21.4142136 L15.0502525,26.363961 L13.636039,24.9497475 L18.5857864,20 L13.636039,15.0502525 L15.0502525,13.636039 L20,18.5857864 L24.9497475,13.636039 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 637 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill-rule="evenodd" d="M15,9 L15,11 L9,11 C8.48716416,11 8.06449284,11.3860402 8.00672773,11.8833789 L8,12 L8,23 C8,23.5128358 8.38604019,23.9355072 8.88337887,23.9932723 L9,24 L20,24 C20.5128358,24 20.9355072,23.6139598 20.9932723,23.1166211 L21,23 L21,17 L23,17 L23,23 C23,24.5976809 21.75108,25.9036609 20.1762728,25.9949073 L20,26 L9,26 C7.40231912,26 6.09633912,24.75108 6.00509269,23.1762728 L6,23 L6,12 C6,10.4023191 7.24891996,9.09633912 8.82372721,9.00509269 L9,9 L15,9 Z M25.1090164,5.97448598 C25.6186634,5.97237947 26.0408675,6.35190694 26.1047818,6.84456297 L26.1131393,6.96992843 L26.1454529,14.0733099 L24.1454736,14.0824079 L24.123,9.28947725 L17.4644661,15.9497475 L16.0502525,14.5355339 L22.599,7.98547725 L18.0817626,8.00354859 L18.0734961,6.00356568 L25.1090164,5.97448598 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 897 B

View File

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.25 5H6.75C5.785 5 5 5.785 5 6.75v10.5c0 .965.785 1.75 1.75 1.75H12v-4.813h-1.75V12H12v-1.75c0-1.45 1.175-2.625 2.625-2.625h1.75v2.188H15.5c-.483 0-.875-.046-.875.437V12h2.188l-.875 2.188h-1.313V19h2.625c.965 0 1.75-.785 1.75-1.75V6.75C19 5.785 18.215 5 17.25 5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 414 B

View File

@ -1,86 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="3-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<polygon id="3-b" points="0 .5 64 .5 64 3.5 0 3.5"/>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="31" height="32" x="9" y="9" fill="#00C65E"/>
<g filter="url(#3-a)">
<g transform="translate(8 9)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M29.0002 27C29.0002 25.344 30.3442 24 32.0002 24 33.6562 24 35.0002 25.344 35.0002 27M32.0002 20C35.8662 20 39.0002 23.134 39.0002 27M25.0002 27C25.0002 25.093 25.7632 23.363 27.0002 22.102"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M21.0002 27C21.0002 20.925 25.9252 16 32.0002 16 38.0752 16 43.0002 20.925 43.0002 27M41.9982 15.8184C45.0682 18.5644 47.0002 22.5564 47.0002 27.0004M17.0002 27C17.0002 18.716 23.7162 12 32.0002 12"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M26.0002 8.9668C27.8862 8.3398 29.9022 7.9998 32.0002 7.9998 42.4932 7.9998 51.0002 16.5068 51.0002 26.9998M13.0002 27C13.0002 21.971 14.9532 17.398 18.1452 14M53.1721 17.998C54.3501 20.763 55.0001 23.806 55.0001 27"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M10.0852,20 C13.0472,10.72 21.7382,4 32.0002,4 C39.8782,4 46.8302,7.961 50.9762,13.999"/>
<g transform="translate(0 31)">
<mask id="3-c" fill="#fff">
<use xlink:href="#3-b"/>
</mask>
<line x2="64" y1="2" y2="2" stroke="#222829" stroke-linejoin="round" stroke-width="2" mask="url(#3-c)"/>
</g>
<line x1="9" x2="9" y1="43" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="37" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="41" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="49" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="35" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="39" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="32" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="51" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="55" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="35" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="41" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="39" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="32" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="45" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="41" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="32" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="45" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="55" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="37" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="51" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="53" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="45" y2="51" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="47" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="47" y1="47" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="32" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="53" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="41" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="45" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="49" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="43" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="32" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="51" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="27" y2="35" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="32" y2="35" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="63 53 63 62 54 62"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10 62 1 62 1 53"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10 0 1 0 1 9"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="54 0 63 0 63 9"/>
<line x1="4" x2="6" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="58" x2="60" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="4" x2="6" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="58" x2="60" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M12,5.0203252 C7.58,5.0203252 4,8.45447154 4,12.6899187 C4,16.079187 6.292,18.9533333 9.47,19.9666667 C9.87,20.0388618 10.0166667,19.8014634 10.0166667,19.5978862 C10.0166667,19.4157724 10.01,18.9331707 10.0066667,18.2938211 C7.78133333,18.7562602 7.312,17.264878 7.312,17.264878 C6.948,16.3796748 6.422,16.1429268 6.422,16.1429268 C5.69733333,15.6674797 6.478,15.6772358 6.478,15.6772358 C7.28133333,15.7305691 7.70333333,16.4674797 7.70333333,16.4674797 C8.41666667,17.6401626 9.576,17.3013008 10.0333333,17.1055285 C10.1053333,16.6092683 10.3113333,16.2717073 10.54,16.0798374 C8.76333333,15.8879675 6.896,15.2284553 6.896,12.2899187 C6.896,11.4528455 7.206,10.7686179 7.71933333,10.2320325 C7.62933333,10.0382114 7.35933333,9.25837398 7.78933333,8.20211382 C7.78933333,8.20211382 8.45933333,7.99658537 9.98933333,8.98845528 C10.6293333,8.81804878 11.3093333,8.73349593 11.9893333,8.7295935 C12.6693333,8.73349593 13.3493333,8.81804878 13.9893333,8.98845528 C15.5093333,7.99658537 16.1793333,8.20211382 16.1793333,8.20211382 C16.6093333,9.25837398 16.3393333,10.0382114 16.2593333,10.2320325 C16.7693333,10.7686179 17.0793333,11.4528455 17.0793333,12.2899187 C17.0793333,15.2362602 15.2093333,15.8847154 13.4293333,16.0733333 C13.7093333,16.3035772 13.9693333,16.7738211 13.9693333,17.4925203 C13.9693333,18.5188618 13.9593333,19.3435772 13.9593333,19.5926829 C13.9593333,19.7936585 14.0993333,20.0336585 14.5093333,19.9569106 C17.71,18.9500813 20,16.0739837 20,12.6899187 C20,8.45447154 16.418,5.0203252 12,5.0203252 L12,5.0203252 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1 +0,0 @@
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitLab</title><path d="M4.845.904c-.435 0-.82.28-.955.692C2.639 5.449 1.246 9.728.07 13.335a1.437 1.437 0 00.522 1.607l11.071 8.045c.2.145.472.144.67-.004l11.073-8.04a1.436 1.436 0 00.522-1.61c-1.285-3.942-2.683-8.256-3.817-11.746a1.004 1.004 0 00-.957-.684.987.987 0 00-.949.69l-2.405 7.408H8.203l-2.41-7.408a.987.987 0 00-.942-.69h-.006zm-.006 1.42l2.173 6.678H2.675zm14.326 0l2.168 6.678h-4.341zm-10.593 7.81h6.862c-1.142 3.52-2.288 7.04-3.434 10.559L8.572 10.135zm-5.514.005h4.321l3.086 9.5zm13.567 0h4.325c-2.467 3.17-4.95 6.328-7.411 9.502 1.028-3.167 2.059-6.334 3.086-9.502zM2.1 10.762l6.977 8.947-7.817-5.682a.305.305 0 01-.112-.341zm19.798 0l.952 2.922a.305.305 0 01-.11.341v.002l-7.82 5.68.026-.035z"/></svg>

Before

Width:  |  Height:  |  Size: 797 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M5.098,10.7753333 C5.098,8.35 7.672,7.196 9.56866667,8.30333333 C10.232,8.30333333 10.884,8.12533333 11.49,7.882 L11.49,7.882 L11.49,9.68533333 C11.2613333,9.764 11.032,9.82866667 10.796,9.882 C11.2993333,11.256 10.5046667,13.2013333 8.55733333,13.5673333 C8.11733333,13.66 7.86333333,13.846 7.86333333,14.328 C7.86333333,15.696 11.424,14.7673333 11.424,17.2853333 C11.424,19.332 10.06,20 8.226,20 C6.72,20 5,19.4893333 5,17.65 C5,16.5826667 5.634,15.9646667 6.59666667,15.644 L6.59666667,15.644 L6.59666667,15.608 C5.71533333,15.0653333 5.89866667,13.5546667 6.56133333,13.258 L6.56133333,13.258 L6.56133333,13.222 C5.66933333,12.9186667 5.09866667,11.6793333 5.09866667,10.7753333 L5.09866667,10.7753333 Z M8.19066667,16.6253333 L8.07905516,16.6275183 C7.47745559,16.6442814 6.79047059,16.8087843 6.78733333,17.5573333 C6.78733333,18.3606667 7.704,18.4573333 8.314,18.4573333 C8.956,18.4573333 9.64333333,18.2966667 9.64333333,17.518 C9.64333333,16.7326667 8.79,16.6253333 8.19066667,16.6253333 L8.19066667,16.6253333 Z M17.918,6.50666667 C17.8473333,7 17.8653333,7.48866667 17.8653333,7.978 L17.8653333,7.978 L19.664,7.978 L19.664,9.67533333 C19.664,9.67533333 18.9833333,9.63933333 17.8653333,9.63933333 L17.8653333,9.63933333 L17.8653333,12.8926667 C17.8653333,13.4213333 17.982,14.0646667 18.634,14.0646667 C18.9793333,14.0646667 19.3846667,13.9646667 19.6666667,13.768 L19.6666667,13.768 L19.6666667,15.518 C19.198,15.7786667 18.5913333,15.868 18.062,15.867337 C16.176,15.867337 15.954,14.36 15.954,12.8066667 L15.954,12.8066667 L15.954,9.67466667 L15.9713333,9.67466667 L15.9713333,9.63866667 C15.7246667,9.63866667 15.714,9.582 15.1253333,9.67466667 L15.1253333,9.67466667 L15.1253333,7.978 L15.9713333,7.978 L15.9713333,7.978 L15.9714936,7.27606361 C15.9693058,6.94861157 15.9589697,6.73830303 15.9186667,6.50666667 L15.9186667,6.50666667 Z M14.3013333,7.97133333 C14.2733922,8.20133333 14.2590755,9.61744925 14.2566661,11.1834698 L14.2566356,12.1327809 C14.2590727,13.8229504 14.2746667,15.4478824 14.3013333,15.75 L14.3013333,15.75 L12.344,15.75 C12.374,15.408 12.3899862,13.3959239 12.3889908,11.4995966 L12.3880261,10.8742242 C12.3842884,9.43645675 12.3700784,8.1887451 12.344,7.97133333 L12.344,7.97133333 Z M9.12533333,10.7766667 C9.12533333,9.05133333 6.97466667,9.03333333 6.97466667,10.794 C6.97466667,11.5366667 7.30266667,12.0006667 8.078,12.0006667 L8.078,12.0006667 C8.84266667,12.0013333 9.12466667,11.5013333 9.12533333,10.7766667 Z M13.328,4 C14.0253333,4 14.5193333,4.64333333 14.5193333,5.31066667 C14.5193333,5.97933333 14.008,6.604 13.328,6.604 C12.63,6.604 12.112,5.98933333 12.112,5.31066667 C12.112,4.62066667 12.6233333,4 13.328,4 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill-rule="evenodd" d="M16.0282136,6 C21.551061,6 26.0282135,10.4771526 26.0282135,16 C26.0282135,21.5228474 21.551061,26 16.0282136,26 L16.0282136,26 L7.02821361,26 C6.62326982,26.0170498 6.24808191,25.7879877 6.07821361,25.42 C5.92161688,25.0476029 6.00446904,24.6175607 6.28821361,24.33 L6.28821361,24.33 L8.28821361,22.33 C6.81900581,20.5485381 6.01947144,18.3091344 6.02821361,16 C6.02821361,10.4771525 10.5053661,6 16.0282136,6 Z M19.0784296,8.60691339 C15.5515371,7.1487988 11.4857836,8.38498377 9.36744069,11.5595219 C7.24909779,14.7340601 7.66809693,18.9628832 10.3682136,21.66 C10.5566279,21.8446305 10.6644566,22.0962307 10.6682136,22.36 C10.6671042,22.6272459 10.5590693,22.8829286 10.3682136,23.07 L10.3682136,23.07 L9.43821361,24 L16.0282136,24 C19.8446334,23.996999 23.1275213,21.298638 23.8693403,17.5550069 C24.6111593,13.8113758 22.6053222,10.065028 19.0784296,8.60691339 Z M16.0282136,18 C16.5804984,18 17.0282136,18.4477153 17.0282136,19 C17.0282136,19.5522847 16.5804984,20 16.0282136,20 C15.4759289,20 15.0282136,19.5522847 15.0282136,19 C15.0282136,18.4477153 15.4759289,18 16.0282136,18 Z M17,12 L17,17 L15,17 L15,12 L17,12 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="83" height="84" viewBox="0 0 83 84">
<g fill="none" fill-rule="evenodd" transform="translate(1.717 1.987)">
<circle cx="45.283" cy="35.013" r="32" fill="#00C65E"/>
<path stroke="#0D0D0D" stroke-width="2" d="M66.9650516,64.7590969 C70.2005407,59.7585671 72.0789302,53.798026 72.0789302,47.3987635 C72.0789302,29.7256515 57.7520422,15.3987635 40.0789302,15.3987635 C22.4058182,15.3987635 8.07893022,29.7256515 8.07893022,47.3987635" transform="rotate(-135 40.079 40.079)"/>
<path fill="#0D0D0D" fill-rule="nonzero" d="M17.4969298,9.4969297 L17.4960469,19.1129297 L20.7869064,15.797325 L22.2069531,17.2056813 L17.2526515,22.2011078 C16.8937661,22.5629722 16.3268563,22.5931492 15.9333017,22.289983 L15.8387453,22.2072458 L10.7930469,17.2072458 L12.2008126,15.7866136 L15.4960469,19.0519297 L15.4969298,9.4969297 L17.4969298,9.4969297 Z" transform="rotate(-90 40.148 11.362)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 949 B

View File

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="40 29 23.211 40 40 51 57.229 40"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(9 11)">
<polygon points="31 58 0 38 31 18 62 38"/>
<polygon points="31 49 0 29 31 9 62 29"/>
<polygon points="31 40 0 20 31 0 62 20"/>
<line x1="30" x2="32" y1="27" y2="27"/>
<line x1="30" x2="32" y1="23" y2="23"/>
<line x1="30" x2="32" y1="31" y2="31"/>
<line x1="34" x2="36" y1="27" y2="27"/>
<line x1="38" x2="40" y1="29" y2="29"/>
<line x1="22" x2="24" y1="29" y2="29"/>
<line x1="34" x2="36" y1="31" y2="31"/>
<line x1="26" x2="28" y1="27" y2="27"/>
<line x1="26" x2="28" y1="31" y2="31"/>
<line x1="30" x2="32" y1="35" y2="35"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 915 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M15.0195,8.787 C17.5365,8.787 18,10.4455 18,12.5985 L18,12.5985 L18,16.9995 L17.997,16.9995 L17.997,17 L15.5145,17 L15.5143116,12.9820505 C15.510737,12.0727361 15.4423958,10.978 14.221,10.978 C12.9275,10.978 12.7295,11.988 12.7295,13.0325 L12.7295,13.0325 L12.7295,16.9995 L10.2445,16.9995 L10.2445,8.988 L12.631,8.988 L12.631,10.0805 L12.666,10.0805 C12.9975,9.451 13.8095,8.787 15.0195,8.787 Z M8.686,8.9885 L8.686,17 L6.198,17 L6.198,8.9885 L8.686,8.9885 Z M7.441,5 C8.236,5 8.8815,5.6455 8.882,6.441 C8.882,7.2365 8.2365,7.8955 7.441,7.8955 C6.6455,7.8955 6,7.2365 6,6.441 C6,5.6455 6.6455,5 7.441,5 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 731 B

View File

@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="155" height="41" viewBox="0 0 155 41">
<defs>
<filter id="9uejgo84sa">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<path fill="#00C65E" d="M0 8.762L43.44 31.68c1.14.596 1.347 2.137.406 3.012h-.022c-1.365 1.235-2.89 2.28-4.536 3.106C25.25 44.845 8.84 34.069 9.75 18.402l5.809 4.007c1.738 9.146 11.411 14.423 20.054 10.941L0 8.762zm17.563 6.392l29.176 11.52c.846.332 1.303 1.25 1.056 2.124v.037c-.313 1.09-1.558 1.61-2.554 1.065L17.563 15.154zM28.306.065c5.502-.472 12.377 1.596 16.474 6.872 3.45 4.453 4.162 9.894 3.919 15.513v-.015c-.097 1.192-1.32 1.95-2.432 1.511l-19.832-7.83 18.411 4.933c.316-3.24-.446-6.494-2.168-9.258-6.029-9.672-20.279-9.2-25.65.853-.308.579-.578 1.177-.809 1.791l-4.937-2.628c.14-.207.287-.402.435-.601.236-.49.49-.988.771-1.475C15.762 4.07 21.242.736 27.021.201z" transform="translate(-247 -96) translate(247 96)"/>
<g filter="url(#9uejgo84sa)" transform="translate(-247 -96) translate(247 96)">
<g>
<path fill="#333" fill-rule="nonzero" d="M7.758 19.892c1.552 0 2.901-.25 4.048-.75 1.146-.499 2.03-1.2 2.65-2.105.62-.904.931-1.95.931-3.139 0-1.12-.28-2.075-.84-2.867-.56-.792-1.35-1.421-2.366-1.886-1.018-.465-2.199-.75-3.543-.852l-1.656-.155c-.93-.07-1.612-.323-2.043-.763-.43-.439-.646-.951-.646-1.537 0-.482.12-.93.362-1.343.241-.413.603-.74 1.086-.982.483-.24 1.086-.361 1.81-.361.759 0 1.384.133 1.875.4.492.267.862.62 1.112 1.06.25.438.375.916.375 1.433h3.595c0-1.223-.284-2.286-.853-3.19-.57-.905-1.371-1.606-2.405-2.106C10.215.25 8.982 0 7.55 0 6.172 0 4.97.237 3.944.71c-1.026.474-1.823 1.146-2.392 2.015-.57.87-.854 1.908-.854 3.113 0 1.602.539 2.89 1.617 3.862 1.077.973 2.521 1.538 4.331 1.693l1.655.129c1.19.103 2.07.357 2.638.762.57.404.854.943.854 1.614 0 .534-.147 1.012-.44 1.434-.293.422-.741.762-1.345 1.02-.603.259-1.353.388-2.25.388-1 0-1.806-.146-2.418-.44-.612-.292-1.056-.675-1.332-1.149-.275-.473-.413-.96-.413-1.46H0c0 1.189.302 2.252.905 3.191.604.939 1.479 1.675 2.625 2.209 1.147.534 2.556.8 4.228.8zm14.51-.491v-6.562h1.526l4.706 6.562h4.06l-5.913-8.047 4.776-5.98h-3.75l-5.405 6.755V.543h-3.595V19.4h3.595zm14.225 5.528c1.155 0 2.125-.138 2.91-.413.784-.276 1.426-.728 1.926-1.356.5-.629.888-1.46 1.164-2.493l4.164-15.294h-3.44L40.389 16.25h-.55L36.417 5.373h-3.621l4.552 13.718h2.302l-.208.8c-.108.435-.259.792-.451 1.072l-.066.091c-.224.293-.504.5-.84.62-.337.12-.755.181-1.255.181h-2.637v3.074h2.301zm16.45-5.528V11.16c0-.913.27-1.64.814-2.183.543-.542 1.254-.814 2.134-.814.862 0 1.538.267 2.03.801.491.534.737 1.232.737 2.093V19.4h3.594v-8.034c0-2.136-.43-3.742-1.293-4.818-.862-1.077-2.129-1.615-3.801-1.615h-.155c-1.121 0-2.056.241-2.806.723-.75.483-1.315 1.202-1.694 2.158-.106.265-.196.549-.272.85l-.039.16V5.373h-2.844v14.028h3.594zm19.655.49c1.156 0 2.186-.197 3.09-.593.906-.397 1.652-.956 2.238-1.68.586-.723.982-1.567 1.19-2.531h-3.31c-.156.516-.51.951-1.061 1.304-.552.353-1.267.53-2.147.53-.879 0-1.603-.194-2.172-.581-.569-.388-.991-.922-1.267-1.602-.17-.419-.287-.875-.353-1.368l-.014-.117h10.556V11.96c0-1.24-.259-2.398-.776-3.475-.517-1.076-1.288-1.946-2.314-2.609s-2.298-.994-3.815-.994c-1.155 0-2.172.202-3.051.607-.88.404-1.617.947-2.211 1.627-.595.68-1.044 1.455-1.345 2.325-.302.87-.453 1.77-.453 2.7v.49c0 .896.151 1.774.453 2.636.301.86.75 1.64 1.345 2.337.594.698 1.344 1.253 2.25 1.667.905.413 1.96.62 3.167.62zm3.316-8.834h-7.058l.028-.15c.059-.284.135-.55.229-.8l.059-.148c.284-.68.702-1.201 1.254-1.563.552-.362 1.224-.543 2.017-.543.793 0 1.453.173 1.979.517.525.344.918.835 1.176 1.473.13.318.227.669.291 1.052l.025.162zm14.763 8.525v-3.075h-2.198c-.69 0-1.22-.185-1.59-.555-.371-.37-.557-.9-.557-1.589l.013-6.355h4.332V5.373H86.35l.008-3.952h-3.362l-.008 3.952h-2.242v2.635h2.237l-.013 6.123c0 1.292.187 2.332.56 3.12l.061.122c.414.8 1.039 1.37 1.875 1.705.836.336 1.9.504 3.194.504h2.017z" transform="translate(64 11)"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="155" height="41" viewBox="0 0 155 41">
<defs>
<filter id="41ormny0ma">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<path fill="#00C65E" d="M0 8.762L43.44 31.68c1.14.596 1.347 2.137.406 3.012h-.022c-1.365 1.235-2.89 2.28-4.536 3.106C25.25 44.845 8.84 34.069 9.75 18.402l5.809 4.007c1.738 9.146 11.411 14.423 20.054 10.941L0 8.762zm17.563 6.392l29.176 11.52c.846.332 1.303 1.25 1.056 2.124v.037c-.313 1.09-1.558 1.61-2.554 1.065L17.563 15.154zM28.306.065c5.502-.472 12.377 1.596 16.474 6.872 3.45 4.453 4.162 9.894 3.919 15.513v-.015c-.097 1.192-1.32 1.95-2.432 1.511l-19.832-7.83 18.411 4.933c.316-3.24-.446-6.494-2.168-9.258-6.029-9.672-20.279-9.2-25.65.853-.308.579-.578 1.177-.809 1.791l-4.937-2.628c.14-.207.287-.402.435-.601.236-.49.49-.988.771-1.475C15.762 4.07 21.242.736 27.021.201z" transform="translate(-247 -96) translate(247 96)"/>
<g filter="url(#41ormny0ma)" transform="translate(-247 -96) translate(247 96)">
<g>
<path fill="#333" fill-rule="nonzero" d="M7.758 19.892c1.552 0 2.901-.25 4.048-.75 1.146-.499 2.03-1.2 2.65-2.105.62-.904.931-1.95.931-3.139 0-1.12-.28-2.075-.84-2.867-.56-.792-1.35-1.421-2.366-1.886-1.018-.465-2.199-.75-3.543-.852l-1.656-.155c-.93-.07-1.612-.323-2.043-.763-.43-.439-.646-.951-.646-1.537 0-.482.12-.93.362-1.343.241-.413.603-.74 1.086-.982.483-.24 1.086-.361 1.81-.361.759 0 1.384.133 1.875.4.492.267.862.62 1.112 1.06.25.438.375.916.375 1.433h3.595c0-1.223-.284-2.286-.853-3.19-.57-.905-1.371-1.606-2.405-2.106C10.215.25 8.982 0 7.55 0 6.172 0 4.97.237 3.944.71c-1.026.474-1.823 1.146-2.392 2.015-.57.87-.854 1.908-.854 3.113 0 1.602.539 2.89 1.617 3.862 1.077.973 2.521 1.538 4.331 1.693l1.655.129c1.19.103 2.07.357 2.638.762.57.404.854.943.854 1.614 0 .534-.147 1.012-.44 1.434-.293.422-.741.762-1.345 1.02-.603.259-1.353.388-2.25.388-1 0-1.806-.146-2.418-.44-.612-.292-1.056-.675-1.332-1.149-.275-.473-.413-.96-.413-1.46H0c0 1.189.302 2.252.905 3.191.604.939 1.479 1.675 2.625 2.209 1.147.534 2.556.8 4.228.8zm14.51-.491v-6.562h1.526l4.706 6.562h4.06l-5.913-8.047 4.776-5.98h-3.75l-5.405 6.755V.543h-3.595V19.4h3.595zm14.225 5.528c1.155 0 2.125-.138 2.91-.413.784-.276 1.426-.728 1.926-1.356.5-.629.888-1.46 1.164-2.493l4.164-15.294h-3.44L40.389 16.25h-.55L36.417 5.373h-3.621l4.552 13.718h2.302l-.208.8c-.108.435-.259.792-.451 1.072l-.066.091c-.224.293-.504.5-.84.62-.337.12-.755.181-1.255.181h-2.637v3.074h2.301zm16.45-5.528V11.16c0-.913.27-1.64.814-2.183.543-.542 1.254-.814 2.134-.814.862 0 1.538.267 2.03.801.491.534.737 1.232.737 2.093V19.4h3.594v-8.034c0-2.136-.43-3.742-1.293-4.818-.862-1.077-2.129-1.615-3.801-1.615h-.155c-1.121 0-2.056.241-2.806.723-.75.483-1.315 1.202-1.694 2.158-.106.265-.196.549-.272.85l-.039.16V5.373h-2.844v14.028h3.594zm19.655.49c1.156 0 2.186-.197 3.09-.593.906-.397 1.652-.956 2.238-1.68.586-.723.982-1.567 1.19-2.531h-3.31c-.156.516-.51.951-1.061 1.304-.552.353-1.267.53-2.147.53-.879 0-1.603-.194-2.172-.581-.569-.388-.991-.922-1.267-1.602-.17-.419-.287-.875-.353-1.368l-.014-.117h10.556V11.96c0-1.24-.259-2.398-.776-3.475-.517-1.076-1.288-1.946-2.314-2.609s-2.298-.994-3.815-.994c-1.155 0-2.172.202-3.051.607-.88.404-1.617.947-2.211 1.627-.595.68-1.044 1.455-1.345 2.325-.302.87-.453 1.77-.453 2.7v.49c0 .896.151 1.774.453 2.636.301.86.75 1.64 1.345 2.337.594.698 1.344 1.253 2.25 1.667.905.413 1.96.62 3.167.62zm3.316-8.834h-7.058l.028-.15c.059-.284.135-.55.229-.8l.059-.148c.284-.68.702-1.201 1.254-1.563.552-.362 1.224-.543 2.017-.543.793 0 1.453.173 1.979.517.525.344.918.835 1.176 1.473.13.318.227.669.291 1.052l.025.162zm14.763 8.525v-3.075h-2.198c-.69 0-1.22-.185-1.59-.555-.371-.37-.557-.9-.557-1.589l.013-6.355h4.332V5.373H86.35l.008-3.952h-3.362l-.008 3.952h-2.242v2.635h2.237l-.013 6.123c0 1.292.187 2.332.56 3.12l.061.122c.414.8 1.039 1.37 1.875 1.705.836.336 1.9.504 3.194.504h2.017z" transform="translate(64 11)"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.926 7.428l1.207-1.155V6.02H14.95l-2.981 7.42-3.392-7.42H4.191v.253l1.41 1.698c.138.125.21.309.192.493v6.673c.043.24-.035.488-.204.662L4 17.725v.25h4.505v-.253l-1.589-1.923c-.172-.175-.253-.418-.219-.662V9.365l3.955 8.613h.46l3.4-8.613v6.861c0 .181 0 .218-.118.337l-1.223 1.184V18h5.934v-.253l-1.179-1.154c-.103-.079-.157-.21-.135-.337V7.764c-.022-.128.031-.259.135-.336z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 523 B

View File

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<g fill="none" fill-rule="evenodd">
<g fill="#00C65E">
<g>
<g>
<g>
<path d="M32 16v2H8v-2h24zm0-8v2H16V8h16zm0-8v2H0V0h32z" transform="translate(-311 -72) translate(25 72) translate(286) translate(0 7)"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 465 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<g fill="none" fill-rule="evenodd">
<g fill="#00C65E">
<g>
<path d="M30.97 7l1.415 1.414-7.779 7.778 7.779 7.779-1.414 1.414-7.779-7.779-7.778 7.779L14 23.97l7.778-7.779L14 8.414 15.414 7l7.778 7.778L30.971 7z" transform="translate(-311 -25) translate(311 25)"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 433 B

View File

@ -1,42 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="24.5 49.5 18 52.626 17.5 55.378 18 57 22.59 62.588 25 62.588 27 63 28 64.116 29 66 34.999 67 37 68 37.826 65.601 40 64.67 39.515 59.5 39.515 57 37 56 37 54 35.676 53 30.677 49.919 29 49.5 28 50.59 25 50.59"/>
<g filter="url(#4-a)">
<g transform="translate(9 9)">
<line x1="59" x2="57" y1="34" y2="42" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="31" y1="48" y2="56" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2">
<path d="M34 31C34 32.656 32.656 34 31 34 29.344 34 28 32.656 28 31 28 29.344 29.344 28 31 28 32.656 28 34 29.344 34 31zM34 17C34 18.656 32.656 20 31 20 29.344 20 28 18.656 28 17 28 15.344 29.344 14 31 14 32.656 14 34 15.344 34 17zM34 3C34 4.656 32.656 6 31 6 29.344 6 28 4.656 28 3 28 1.344 29.344 0 31 0 32.656 0 34 1.344 34 3zM34 45C34 46.656 32.656 48 31 48 29.344 48 28 46.656 28 45 28 43.344 29.344 42 31 42 32.656 42 34 43.344 34 45zM34 59C34 60.656 32.656 62 31 62 29.344 62 28 60.656 28 59 28 57.344 29.344 56 31 56 32.656 56 34 57.344 34 59zM21 23C21 24.656 19.656 26 18 26 16.344 26 15 24.656 15 23 15 21.344 16.344 20 18 20 19.656 20 21 21.344 21 23zM47 23C47 24.656 45.656 26 44 26 42.344 26 41 24.656 41 23 41 21.344 42.344 20 44 20 45.656 20 47 21.344 47 23zM59 45C59 43.344 57.656 42 56 42 54.344 42 53 43.344 53 45 53 46.656 54.344 48 56 48 57.656 48 59 46.656 59 45zM49 56C49 54.344 47.656 53 46 53 44.344 53 43 54.344 43 56 43 57.656 44.344 59 46 59 47.656 59 49 57.656 49 56zM21 39C21 40.656 19.656 42 18 42 16.344 42 15 40.656 15 39 15 37.344 16.344 36 18 36 19.656 36 21 37.344 21 39zM47 39C47 40.656 45.656 42 44 42 42.344 42 41 40.656 41 39 41 37.344 42.344 36 44 36 45.656 36 47 37.344 47 39z"/>
<line x1="20" x2="22" y1="14" y2="14"/>
<line x1="20" x2="22" y1="48" y2="48"/>
<line x1="49" x2="51" y1="31" y2="31"/>
<line x1="48" x2="54" y1="54" y2="47"/>
<line x1="43" x2="34" y1="5" y2="3"/>
<path d="M59 17C59 18.656 57.656 20 56 20 54.344 20 53 18.656 53 17 53 15.344 54.344 14 56 14 57.656 14 59 15.344 59 17zM49 6C49 7.656 47.656 9 46 9 44.344 9 43 7.656 43 6 43 4.344 44.344 3 46 3 47.656 3 49 4.344 49 6zM62 31C62 29.344 60.656 28 59 28 57.344 28 56 29.344 56 31 56 32.656 57.344 34 59 34 60.656 34 62 32.656 62 31z"/>
<line x1="48" x2="54" y1="8" y2="15"/>
<line x1="19" x2="28" y1="57" y2="59"/>
<path d="M3 45C3 43.344 4.344 42 6 42 7.656 42 9 43.344 9 45 9 46.656 7.656 48 6 48 4.344 48 3 46.656 3 45zM13 56C13 54.344 14.344 53 16 53 17.656 53 19 54.344 19 56 19 57.656 17.656 59 16 59 14.344 59 13 57.656 13 56z"/>
<line x1="14" x2="8" y1="54" y2="47"/>
<line x1="3" x2="5" y1="28" y2="20"/>
<path d="M3 17C3 18.656 4.344 20 6 20 7.656 20 9 18.656 9 17 9 15.344 7.656 14 6 14 4.344 14 3 15.344 3 17zM13 6C13 7.656 14.344 9 16 9 17.656 9 19 7.656 19 6 19 4.344 17.656 3 16 3 14.344 3 13 4.344 13 6zM0 31C0 29.344 1.344 28 3 28 4.656 28 6 29.344 6 31 6 32.656 4.656 34 3 34 1.344 34 0 32.656 0 31z"/>
<line x1="14" x2="8" y1="8" y2="15"/>
<line x1="28" x2="20.5" y1="45" y2="40.5"/>
<line x1="18" x2="18" y1="36" y2="26"/>
<line x1="20.5" x2="28" y1="24.5" y2="30"/>
<line x1="31" x2="31" y1="14" y2="6"/>
<line x1="34" x2="41.5" y1="18" y2="21"/>
<line x1="34" x2="41.5" y1="45" y2="40.5"/>
<line x1="46.5" x2="53" y1="40.5" y2="44"/>
<line x1="15.5" x2="9" y1="40.5" y2="44"/>
<line x1="44" x2="44" y1="26" y2="36"/>
<line x1="15" x2="8.5" y1="22" y2="18.5"/>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M21,26 L21,30 L19,30 L19,26 L21,26 Z M15.0502525,23.5355339 L16.4644661,24.9497475 L13.636039,27.7781746 L12.2218254,26.363961 L15.0502525,23.5355339 Z M24.9497475,23.5355339 L27.7781746,26.363961 L26.363961,27.7781746 L23.5355339,24.9497475 L24.9497475,23.5355339 Z M14,19 L14,21 L10,21 L10,19 L14,19 Z M30,19 L30,21 L26,21 L26,19 L30,19 Z M13.636039,12.2218254 L16.4644661,15.0502525 L15.0502525,16.4644661 L12.2218254,13.636039 L13.636039,12.2218254 Z M26.363961,12.2218254 L27.7781746,13.636039 L24.9497475,16.4644661 L23.5355339,15.0502525 L26.363961,12.2218254 Z M21,10 L21,14 L19,14 L19,10 L21,10 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 978 B

View File

@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.66 10.366c-.46 0-.864.193-1.162.495-1.096-.77-2.574-1.265-4.21-1.318l.85-3.888 2.708.616c0 .673.54 1.222 1.203 1.222.675 0 1.219-.564 1.219-1.237 0-.673-.54-1.237-1.219-1.237-.472 0-.88.29-1.084.685l-2.99-.672c-.151-.041-.299.068-.339.221l-.933 4.287c-1.625.069-3.087.564-4.186 1.334-.298-.315-.719-.508-1.179-.508-1.707 0-2.266 2.324-.703 3.119-.055.246-.08.508-.08.77 0 2.61 2.899 4.726 6.458 4.726 3.574 0 6.473-2.116 6.473-4.726 0-.262-.028-.536-.095-.783 1.532-.798.968-3.105-.73-3.106zM8.117 13.65c0-.685.54-1.237 1.218-1.237.663 0 1.204.548 1.204 1.237 0 .673-.54 1.222-1.204 1.222-.675.003-1.218-.549-1.218-1.222zm6.58 2.913c-1.118 1.134-4.272 1.134-5.39 0-.123-.11-.123-.303 0-.427.107-.11.298-.11.405 0 .854.888 3.685.903 4.576 0 .107-.11.298-.11.405 0 .126.125.126.318.003.427zm-.026-1.689c-.662 0-1.203-.548-1.203-1.22 0-.686.54-1.238 1.203-1.238.676 0 1.22.549 1.22 1.238-.004.67-.544 1.22-1.22 1.22z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M17.4969298,9.4969297 L17.4960469,19.1129297 L20.7869064,15.797325 L22.2069531,17.2056813 L17.2526515,22.2011078 C16.8937661,22.5629722 16.3268563,22.5931492 15.9333017,22.289983 L15.8387453,22.2072458 L10.7930469,17.2072458 L12.2008126,15.7866136 L15.4960469,19.0519297 L15.4969298,9.4969297 L17.4969298,9.4969297 Z" transform="rotate(-90 16.5 15.997)"/>
</svg>

Before

Width:  |  Height:  |  Size: 473 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" d="M21.2678375,11.31887 L22.7321625,12.68113 L15.2897705,20.68113 C14.9224964,21.0759214 14.3157362,21.1041208 13.9142499,20.7657282 L13.8254455,20.68113 L9.26783752,15.7820513 L10.7321625,14.4197913 L14.557,18.531 L21.2678375,11.31887 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 355 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="none" stroke="#D4DDDB" stroke-linecap="square" stroke-width="2" d="M11,16 L21,16 M16,11 L16,21" transform="rotate(45 16 16)"/>
</svg>

Before

Width:  |  Height:  |  Size: 232 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M16.0282136,6 C21.551061,6 26.0282135,10.4771526 26.0282135,16 C26.0282135,21.5228474 21.551061,26 16.0282136,26 L16.0282136,26 L7.02821361,26 C6.62326982,26.0170498 6.24808191,25.7879877 6.07821361,25.42 C5.92161688,25.0476029 6.00446904,24.6175607 6.28821361,24.33 L6.28821361,24.33 L8.28821361,22.33 C6.81900581,20.5485381 6.01947144,18.3091344 6.02821361,16 C6.02821361,10.4771525 10.5053661,6 16.0282136,6 Z M19.0784296,8.60691339 C15.5515371,7.1487988 11.4857836,8.38498377 9.36744069,11.5595219 C7.24909779,14.7340601 7.66809693,18.9628832 10.3682136,21.66 C10.5566279,21.8446305 10.6644566,22.0962307 10.6682136,22.36 C10.6671042,22.6272459 10.5590693,22.8829286 10.3682136,23.07 L10.3682136,23.07 L9.43821361,24 L16.0282136,24 C19.8446334,23.996999 23.1275213,21.298638 23.8693403,17.5550069 C24.6111593,13.8113758 22.6053222,10.065028 19.0784296,8.60691339 Z M16.0282136,18 C16.5804984,18 17.0282136,18.4477153 17.0282136,19 C17.0282136,19.5522847 16.5804984,20 16.0282136,20 C15.4759289,20 15.0282136,19.5522847 15.0282136,19 C15.0282136,18.4477153 15.4759289,18 16.0282136,18 Z M17,12 L17,17 L15,17 L15,12 L17,12 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" d="M15,9 L15,11 L9,11 C8.48716416,11 8.06449284,11.3860402 8.00672773,11.8833789 L8,12 L8,23 C8,23.5128358 8.38604019,23.9355072 8.88337887,23.9932723 L9,24 L20,24 C20.5128358,24 20.9355072,23.6139598 20.9932723,23.1166211 L21,23 L21,17 L23,17 L23,23 C23,24.5976809 21.75108,25.9036609 20.1762728,25.9949073 L20,26 L9,26 C7.40231912,26 6.09633912,24.75108 6.00509269,23.1762728 L6,23 L6,12 C6,10.4023191 7.24891996,9.09633912 8.82372721,9.00509269 L9,9 L15,9 Z M25.1090164,5.97448598 C25.6186634,5.97237947 26.0408675,6.35190694 26.1047818,6.84456297 L26.1131393,6.96992843 L26.1454529,14.0733099 L24.1454736,14.0824079 L24.123,9.28947725 L17.4644661,15.9497475 L16.0502525,14.5355339 L22.599,7.98547725 L18.0817626,8.00354859 L18.0734961,6.00356568 L25.1090164,5.97448598 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 892 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" fill-rule="evenodd" d="M30.9705627,7 L32.3847763,8.41421356 L24.606,16.192 L32.3847763,23.9705627 L30.9705627,25.3847763 L23.192,17.606 L15.4142136,25.3847763 L14,23.9705627 L21.778,16.192 L14,8.41421356 L15.4142136,7 L23.192,14.778 L30.9705627,7 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 366 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" fill-rule="evenodd" d="M32,23 L32,25 L8,25 L8,23 L32,23 Z M32,15 L32,17 L16,17 L16,15 L32,15 Z M32,7 L32,9 L0,9 L0,7 L32,7 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 242 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M15,6 C19.9705627,6 24,10.0294373 24,15 C24,17.124779 23.2636898,19.0775836 22.0323074,20.6171757 L25.7071068,24.2928932 C26.0976311,24.6834175 26.0976311,25.3165825 25.7071068,25.7071068 C25.3466228,26.0675907 24.7793918,26.0953203 24.3871006,25.7902954 L24.2928932,25.7071068 L20.6171757,22.0323074 C19.0775836,23.2636898 17.124779,24 15,24 C10.0294373,24 6,19.9705627 6,15 C6,10.0294373 10.0294373,6 15,6 Z M15,8 C11.1340068,8 8,11.1340068 8,15 C8,18.8659932 11.1340068,22 15,22 C16.8904747,22 18.6059153,21.25059 19.8654514,20.0326404 C19.8886352,20.0004394 19.9147502,19.9710363 19.9428932,19.9428932 L20.0326404,19.8654514 C21.25059,18.6059153 22,16.8904747 22,15 C22,11.1340068 18.8659932,8 15,8 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 825 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#D4DDDB" d="M16,9 C18.5445752,9 20.7619877,10.2234 22.6386281,12.2251498 C23.279243,12.9084723 23.8349114,13.6372178 24.3059485,14.3665655 L24.3059485,14.3665655 L24.5032823,14.6799166 L24.6672433,14.9545622 L24.7976765,15.1863101 L24.8944272,15.3709682 C25.0351909,15.6524957 25.0351909,15.9838679 24.8944272,16.2653954 L24.8944272,16.2653954 L24.7976765,16.4500535 L24.6672433,16.6818015 L24.5032823,16.9564471 L24.3059485,17.2697982 C23.8349114,17.9991458 23.279243,18.7278913 22.6386281,19.4112139 C20.7619877,21.4129636 18.5445752,22.6363636 16,22.6363636 C13.4554248,22.6363636 11.2380123,21.4129636 9.36137189,19.4112139 C8.72075699,18.7278913 8.16508856,17.9991458 7.69405153,17.2697982 L7.69405153,17.2697982 L7.49671767,16.9564471 L7.33275674,16.6818015 L7.20232353,16.4500535 L7.10557281,16.2653954 C6.96480906,15.9838679 6.96480906,15.6524957 7.10557281,15.3709682 C7.11888246,15.3443489 7.13360199,15.3155929 7.14972819,15.2847874 L7.14972819,15.2847874 L7.33275674,14.9545622 L7.49671767,14.6799166 L7.69405153,14.3665655 C8.16508856,13.6372178 8.72075699,12.9084723 9.36137189,12.2251498 C11.2380123,10.2234 13.4554248,9 16,9 Z M16,11 C14.0900297,11 12.3528968,11.9584182 10.8204463,13.593032 C10.2678794,14.1824368 9.78377507,14.8173276 9.37413029,15.4516163 C9.30466816,15.5591706 9.24188953,15.6593957 9.1858884,15.7512141 L9.1858884,15.7512141 L9.145,15.818 L9.27496147,16.0290475 L9.37413029,16.1847473 C9.78377507,16.819036 10.2678794,17.4539269 10.8204463,18.0433316 C12.3528968,19.6779455 14.0900297,20.6363636 16,20.6363636 C17.9099703,20.6363636 19.6471032,19.6779455 21.1795537,18.0433316 C21.7321206,17.4539269 22.2162249,16.819036 22.6258697,16.1847473 C22.6953318,16.077193 22.7581105,15.976968 22.8141116,15.8851495 L22.8141116,15.8851495 L22.854,15.818 L22.8141116,15.7512141 L22.6258697,15.4516163 C22.2162249,14.8173276 21.7321206,14.1824368 21.1795537,13.593032 C19.6471032,11.9584182 17.9099703,11 16,11 Z M16,12.6363636 C17.7572697,12.6363636 19.1818182,14.0609122 19.1818182,15.8181818 C19.1818182,17.5754515 17.7572697,19 16,19 C14.2427303,19 12.8181818,17.5754515 12.8181818,15.8181818 C12.8181818,14.0609122 14.2427303,12.6363636 16,12.6363636 Z M16,14.6363636 C15.3472998,14.6363636 14.8181818,15.1654817 14.8181818,15.8181818 C14.8181818,16.470882 15.3472998,17 16,17 C16.6527002,17 17.1818182,16.470882 17.1818182,15.8181818 C17.1818182,15.1654817 16.6527002,14.6363636 16,14.6363636 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#D4DDDB" d="M8.61289944,7.20970461 L8.70710678,7.29289322 L24.7071068,23.2928932 C25.0976311,23.6834175 25.0976311,24.3165825 24.7071068,24.7071068 C24.3466228,25.0675907 23.7793918,25.0953203 23.3871006,24.7902954 L23.2928932,24.7071068 L20.1962019,21.6127732 C18.9385171,22.3752358 17.4943568,22.7938612 15.9999999,22.8181818 C13.4554248,22.8181818 11.2380123,21.5947818 9.36137189,19.593032 C8.72075699,18.9097095 8.16508856,18.180964 7.69405153,17.4516163 L7.49671767,17.1382652 L7.33275674,16.8636196 L7.14972819,16.5333944 C7.13360199,16.5025889 7.11888246,16.4738329 7.10557281,16.4472136 C6.9602612,16.1565904 6.96521048,15.8134847 7.11884433,15.5271737 C7.91118877,14.0505663 8.9534619,12.7259943 10.1966814,11.6109587 L7.29289322,8.70710678 C6.90236893,8.31658249 6.90236893,7.68341751 7.29289322,7.29289322 C7.65337718,6.93240926 8.22060824,6.90467972 8.61289944,7.20970461 Z M9.2902898,15.7670375 L9.148,16.004 L9.27496147,16.2108657 L9.37413029,16.3665655 C9.78377507,17.0008542 10.2678794,17.6357451 10.8204463,18.2251498 C12.3528968,19.8597637 14.0900297,20.8181818 15.9836527,20.8183154 C16.9424007,20.8026404 17.8797167,20.5693259 18.7270555,20.1421436 L17.4456927,18.8604927 C16.7552287,19.2295018 15.9405554,19.3370808 15.1582642,19.1372973 C14.0309105,18.849391 13.150609,17.9690895 12.8627027,16.8417358 C12.6629192,16.0594446 12.7704982,15.2447713 13.1395073,14.5543073 L11.6126573,13.0281811 C10.7100166,13.8237162 9.92767032,14.7463224 9.2902898,15.7670375 Z M16,9.18172188 C18.544576,9.18172188 20.7619888,10.4052039 22.6386292,12.40696 C23.279244,13.0902845 23.8349123,13.8190322 24.3059492,14.548382 L24.5032831,14.861734 L24.6672439,15.1363804 L24.8502724,15.4666065 C24.8663986,15.497412 24.8811181,15.5261682 24.8944278,15.5527875 C25.0394855,15.8429039 25.0348202,16.1853551 24.881913,16.4714122 C24.4076317,17.3586927 23.8420103,18.1940316 23.1942471,18.9638447 C22.8386615,19.3864288 22.2078304,19.4407418 21.7852462,19.0851562 C21.3626621,18.7295706 21.3083491,18.0987395 21.6639347,17.6761553 C22.0360251,17.2339566 22.3766593,16.7666649 22.6834891,16.2777481 L22.853,15.997 L22.7250378,15.7891308 L22.6258689,15.6334305 C22.2162241,14.9991396 21.7321197,14.3642466 21.1795526,13.7748399 C19.6471021,12.1402209 17.9099695,11.1817999 15.9976857,11.1817972 C15.5610307,11.1807866 15.1257602,11.2305357 14.7006405,11.3300451 C14.1628911,11.4559181 13.6249188,11.1220263 13.4990458,10.5842769 C13.3731728,10.0465274 13.7070646,9.50855518 14.2448141,9.38268219 C14.8208665,9.24784346 15.4106594,9.18043326 16,9.18172188 Z M14.8005087,16.3468542 C14.9074453,16.7655855 15.2344145,17.0925547 15.6531458,17.1994913 C15.705941,17.2129742 15.7591332,17.2226882 15.8123736,17.2287355 L14.7712645,16.1876264 C14.7773118,16.2408668 14.7870258,16.294059 14.8005087,16.3468542 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M14.122,12.673 L10.9276859,13.140257 L10.8436897,13.1596531 C10.4967348,13.2710709 10.3755366,13.7247476 10.6511336,13.9931791 L12.963,16.244 L12.4171957,19.4254783 L12.4096688,19.5057605 C12.404031,19.8732486 12.8003652,20.1325807 13.1427256,19.9525368 L16,18.449 L18.8572744,19.9525368 L18.9312973,19.9845132 C19.279042,20.103479 19.648193,19.8067274 19.5828043,19.4254783 L19.036,16.244 L21.3488664,13.9931791 L21.4054999,13.9281851 C21.6210635,13.6343756 21.4529888,13.1958983 21.0723141,13.140257 L17.877,12.673 L16.4483537,9.77868804 C16.264936,9.40710399 15.735064,9.40710399 15.5516463,9.77868804 L14.122,12.673 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 742 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M14.0834601,6.38295607 C15.9498159,5.60840746 18.0989197,6.03338904 19.53,7.46 C20.160339,8.09493515 20.6121836,8.88480087 20.84,9.75 C20.9293164,10.0965476 20.8269672,10.4644206 20.5715064,10.7150447 C20.3160455,10.9656688 19.9462836,11.0609682 19.6015063,10.9650447 C19.2567291,10.8691211 18.9893164,10.5965476 18.9,10.25 C18.7648544,9.72982559 18.4959483,9.25406854 18.12,8.87 C17.2607657,8.01182697 15.9689164,7.75630901 14.8476815,8.22276026 C13.7264466,8.68921151 12.997017,9.78561306 13,11 L13,11 L13,13 L21,13 C22.6568542,13 24,14.3431458 24,16 L24,16 L24,23 C24,24.6568542 22.6568542,26 21,26 L21,26 L11,26 C9.34314575,26 8,24.6568542 8,23 L8,23 L8,16 C8,14.3431458 9.34314575,13 11,13 L11,13 L11,11 C11.000428,8.9793047 12.2171042,7.15750468 14.0834601,6.38295607 Z M21,15 L11,15 C10.4477153,15 10,15.4477153 10,16 L10,16 L10,23 C10,23.5522847 10.4477153,24 11,24 L11,24 L21,24 C21.5522847,24 22,23.5522847 22,23 L22,23 L22,16 C22,15.4477153 21.5522847,15 21,15 L21,15 Z M17,17.0009146 L17,22.0009146 L15,22.0009146 L15,17.0009146 L17,17.0009146 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#FFF" fill-rule="evenodd" d="M21,12 L21,19 L28,19 L28,21 L21,21 L21,28 L19,28 L19,21 L12,21 L12,19 L19,19 L19,12 L21,12 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 230 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M18.4391607,14.4378889 L19.8475169,15.8579356 L16.679,19 L26,19 L26,21 L16.446,21 L19.8582283,24.4440294 L18.4375962,25.8517951 L13.4375962,20.8060967 L13.354859,20.7115403 C13.0516928,20.3179857 13.0818697,19.7510759 13.4437342,19.3921905 L13.4437342,19.3921905 L18.4391607,14.4378889 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 660 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M26.0574126,15.2928932 L27.4716262,16.7071068 L18.0464454,26.1322875 L13.2928932,21.3787353 L14.7071068,19.9645218 L18.046,23.303 L26.0574126,15.2928932 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 527 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#00C65E" fill-rule="evenodd" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M24.9497475,13.636039 L26.363961,15.0502525 L21.4142136,20 L26.363961,24.9497475 L24.9497475,26.363961 L20,21.4142136 L15.0502525,26.363961 L13.636039,24.9497475 L18.5857864,20 L13.636039,15.0502525 L15.0502525,13.636039 L20,18.5857864 L24.9497475,13.636039 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 652 B

View File

@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M19.4363719,13.4966307 C19.8299265,13.1934645 20.3968364,13.2236414 20.7557217,13.5855059 L20.7557217,13.5855059 L25.7100234,18.5809324 L24.2899766,19.9892886 L21,16.673 L21,26 L19,26 L19,16.733 L15.7038828,20.0000001 L14.2961172,18.5793679 L19.3418155,13.5793679 Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 638 B

View File

@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="1-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M29.031876,20.9098666 L28.9376,20.9996 L26.0006,32.418457 L26.0002217,47.4850772 C15.5253909,39.5307935 9.94339742,30.0594707 13.1535,24.4995 C15.3983377,20.6113901 21.4491262,19.4904168 29.031876,20.9098666 Z"/>
<g filter="url(#1-a)">
<g transform="translate(10 9)">
<path stroke="#222829" stroke-width="2" d="M25.1486,1.9116 C26.6606,0.6766 28.2946,-0.0004 30.0006,-0.0004 C37.7326,-0.0004 44.0006,13.8786 44.0006,30.9996 C44.0006,48.1206 37.7326,61.9996 30.0006,61.9996 C22.2676,61.9996 16.0006,48.1206 16.0006,30.9996 C16.0006,23.8406 17.0956,17.2476 18.9376,11.9996"/>
<path stroke="#222829" stroke-width="2" d="M57.6955,41.9185 C57.8795,43.6185 57.6145,45.1705 56.8465,46.4995 C52.9805,53.1955 37.8275,51.6855 23.0005,43.1245 C8.1735,34.5645 -0.7125,22.1955 3.1535,15.4995 C7.0195,8.8035 22.1735,10.3145 37.0005,18.8745 C43.2405,22.4785 48.4285,26.7565 52.0565,31.0025"/>
<path stroke="#222829" stroke-width="2" d="M2.3049,41.9155 C2.1199,43.6165 2.3859,45.1695 3.1539,46.4995 C7.0199,53.1955 22.1729,51.6855 36.9999,43.1245 C51.8269,34.5645 60.7129,22.1955 56.8469,15.4995 C52.9809,8.8035 37.8269,10.3145 22.9999,18.8745 C16.7599,22.4785 11.5729,26.7545 7.9459,30.9995"/>
<path stroke="#222829" stroke-width="2" d="M6.0002 38.9995C6.0002 40.6565 4.6562 41.9995 3.0002 41.9995 1.3442 41.9995.0002 40.6565.0002 38.9995.0002 37.3435 1.3442 35.9995 3.0002 35.9995 4.6562 35.9995 6.0002 37.3435 6.0002 38.9995zM60.0002 38.9995C60.0002 40.6565 58.6562 41.9995 57.0002 41.9995 55.3442 41.9995 54.0002 40.6565 54.0002 38.9995 54.0002 37.3435 55.3442 35.9995 57.0002 35.9995 58.6562 35.9995 60.0002 37.3435 60.0002 38.9995zM26.0002 3.9995C26.0002 5.6565 24.6562 6.9995 23.0002 6.9995 21.3442 6.9995 20.0002 5.6565 20.0002 3.9995 20.0002 2.3435 21.3442.9995 23.0002.9995 24.6562.9995 26.0002 2.3435 26.0002 3.9995zM21.0002 38.9995C21.0002 32.9995 27.0002 31.9995 27.0002 31.9995M39.0002 38.9995C39.0002 32.9995 33.0002 31.9995 33.0002 31.9995"/>
<path stroke="#222829" stroke-width="2" d="M35.0002,26.4995 C35.0002,29.9995 33.0372,32.9995 30.0002,32.9995 C26.9632,32.9995 25.0002,29.9995 25.0002,26.4995 C25.0002,22.9995 26.0002,20.9995 30.0002,20.9995 C34.0002,20.9995 35.0002,22.9995 35.0002,26.4995 Z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,23 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="2-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M29.9995,22.8085938 C30.1359824,30.4981283 30.6818034,36.1106364 31.6369629,39.6461182 C32.5921224,43.1815999 34.0268555,48.737915 35.9411621,56.3150635 L39.5767822,64.1800537 C41.6760661,62.1558838 42.9145915,60.492391 43.2923584,59.1895752 C43.8590088,57.2353516 48.1157227,43.7679443 48.5151367,40.7745361 C48.7814128,38.7789307 49.2762005,34.81486 49.9995,28.8823242 L49.7983398,22.8085938 C46.3836263,21.8491211 44.3798014,20.931722 43.7868652,20.0563965 C43.193929,19.181071 41.931474,18.023234 39.9995,16.5828857 L37.0494385,19.3743896 L33.2687988,21.4703369 L29.9995,22.8085938 Z"/>
<g stroke-linejoin="round" filter="url(#2-a)">
<g transform="translate(13 9)">
<path stroke="#222829" stroke-width="2" d="M26.9995,-0.0002 L27.9995,-0.0002 C27.9995,-0.0002 33.9995,8.9998 40.9995,8.9998 L53.9995,8.9998 L53.9995,12.9998 C53.9995,50.9998 26.9995,61.9998 26.9995,61.9998 C26.9995,61.9998 -0.0005,50.9998 -0.0005,12.9998 L-0.0005,8.9998 L12.9995,8.9998 C19.9995,8.9998 25.9995,-0.0002 25.9995,-0.0002 L26.9995,-0.0002 Z"/>
<path stroke="#222829" stroke-width="2" d="M26.9995 55.9998C26.9995 55.9998 48.9995 43.9998 48.9995 13.9998L40.9995 13.9998C30.9995 13.9998 26.9995 6.9998 26.9995 6.9998 26.9995 6.9998 22.9995 13.9998 12.9995 13.9998L4.9995 13.9998C4.9995 43.9998 26.9995 55.9998 26.9995 55.9998zM16.9995 13.9998C16.9995 40.9998 26.9995 55.9998 26.9995 55.9998M36.9995 13.9998C36.9995 40.9998 26.9995 55.9998 26.9995 55.9998"/>
<line x1="27" x2="27" y1="17" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="27" x2="27" y1="13" y2="15" stroke="#222829" stroke-width="2"/>
<line x1="27" x2="27" y1="21" y2="23" stroke="#222829" stroke-width="2"/>
<line x1="10.999" x2="10.999" y1="17" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="10.999" x2="10.999" y1="21" y2="23" stroke="#222829" stroke-width="2"/>
<line x1="42.999" x2="42.999" y1="17" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="42.999" x2="42.999" y1="21" y2="23" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,86 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="3-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<polygon id="3-b" points="0 .5 64 .5 64 3.5 0 3.5"/>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="31" height="32" x="9" y="9" fill="#00C65E"/>
<g filter="url(#3-a)">
<g transform="translate(8 9)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M29.0002 27C29.0002 25.344 30.3442 24 32.0002 24 33.6562 24 35.0002 25.344 35.0002 27M32.0002 20C35.8662 20 39.0002 23.134 39.0002 27M25.0002 27C25.0002 25.093 25.7632 23.363 27.0002 22.102"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M21.0002 27C21.0002 20.925 25.9252 16 32.0002 16 38.0752 16 43.0002 20.925 43.0002 27M41.9982 15.8184C45.0682 18.5644 47.0002 22.5564 47.0002 27.0004M17.0002 27C17.0002 18.716 23.7162 12 32.0002 12"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M26.0002 8.9668C27.8862 8.3398 29.9022 7.9998 32.0002 7.9998 42.4932 7.9998 51.0002 16.5068 51.0002 26.9998M13.0002 27C13.0002 21.971 14.9532 17.398 18.1452 14M53.1721 17.998C54.3501 20.763 55.0001 23.806 55.0001 27"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M10.0852,20 C13.0472,10.72 21.7382,4 32.0002,4 C39.8782,4 46.8302,7.961 50.9762,13.999"/>
<g transform="translate(0 31)">
<mask id="3-c" fill="#fff">
<use xlink:href="#3-b"/>
</mask>
<line x2="64" y1="2" y2="2" stroke="#222829" stroke-linejoin="round" stroke-width="2" mask="url(#3-c)"/>
</g>
<line x1="9" x2="9" y1="43" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="37" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="41" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="49" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="35" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="39" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="32" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="51" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="55" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="35" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="41" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="39" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="32" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="45" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="41" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="32" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="45" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="55" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="37" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="51" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="53" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="45" y2="51" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="47" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="47" y1="47" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="32" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="53" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="41" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="45" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="49" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="43" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="32" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="51" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="27" y2="35" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="32" y2="35" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="63 53 63 62 54 62"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10 62 1 62 1 53"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10 0 1 0 1 9"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="54 0 63 0 63 9"/>
<line x1="4" x2="6" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="58" x2="60" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="4" x2="6" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="58" x2="60" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,25 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M70.999,9 L71,29 L67.4160156,29.8366699 L66,31.8007812 L66,36 L68,40 L40,40 C40,22.8791728 53.8791728,9 71,9 L70.999,9 Z" transform="matrix(-1 0 0 1 111 0)"/>
<g filter="url(#4-a)">
<g transform="translate(9 9)">
<path stroke="#222829" stroke-width="2" d="M26,25.5 C26,29 27.963,32 31,32 C34.037,32 36,29 36,25.5 C36,22 35,20 31,20 C27,20 26,22 26,25.5 Z"/>
<path stroke="#222829" stroke-width="2" d="M28,31 L21,35 L21,37 C21,38.656 22,40 23,40 L39,40 C40,40 41,38.656 41,37 L41,35 L34,31"/>
<path stroke="#222829" stroke-width="2" d="M62,31 C62,48.121 48.121,62 31,62 C13.879,62 0,48.121 0,31 C0,13.879 13.879,0 31,0 C48.121,0 62,13.879 62,31 Z"/>
<path stroke="#222829" stroke-width="2" d="M31,15 L31,4 C18.51,4 8,12.482 4.916,24"/>
<polyline stroke="#222829" stroke-width="2" points="35 11 31 15 27 11"/>
<path stroke="#222829" stroke-width="2" d="M31,47 L31,58 C43.49,58 54,49.518 57.084,38"/>
<polyline stroke="#222829" stroke-width="2" points="35 51 31 47 27 51"/>
<path stroke="#222829" stroke-width="2" d="M47,31 L58,31 C58,18.51 49.518,8 38,4.916"/>
<polyline stroke="#222829" stroke-width="2" points="51 35 47 31 51 27"/>
<path stroke="#222829" stroke-width="2" d="M15,31 L4,31 C4,43.49 12.482,54 24,57.084"/>
<polyline stroke="#222829" stroke-width="2" points="11 35 15 31 11 27"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,33 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<polygon id="5-b" points="0 58 64 58 64 0 0 0"/>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="13 50 46 50 46 16 13 16"/>
<g filter="url(#5-a)">
<g transform="translate(8 11)">
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="20 32 11 27 11 17 20 22"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="20 22 29 17 29 27 20 32"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="29 17 20 12 11 17"/>
<line x1="34" x2="54" y1="16" y2="16" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="34" x2="54" y1="22" y2="22" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="34" x2="54" y1="28" y2="28" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="14" y2="18" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="49" x2="49" y1="20" y2="24" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="26" y2="30" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M4.0002,1 C2.3442,1 1.0002,2.343 1.0002,4 L1.0002,44 C1.0002,45.657 2.3442,47 4.0002,47 L60.0002,47 C61.6562,47 63.0002,45.657 63.0002,44 L63.0002,4 C63.0002,2.343 61.6562,1 60.0002,1 L4.0002,1 Z"/>
<line x1="38" x2="40" y1="47" y2="57" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="26" y1="57" y2="47" stroke="#222829" stroke-width="2"/>
<line x1="19" x2="45" y1="57" y2="57" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="33" y1="43" y2="43" stroke="#222829" stroke-width="2"/>
<mask id="5-c" fill="#fff">
<use xlink:href="#5-b"/>
</mask>
<polygon stroke="#222829" stroke-width="2" points="5 39 59 39 59 5 5 5" mask="url(#5-c)"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,31 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="6-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="69 17 63 17 63 11 58 9 54 14 50 9 45 11 45 17 39 17 37 22 42 26 37 30 39 35 45 35 45 41 50 43 54 38 58 43 63 41 63 35 69 35 71 30 66 26 71 22"/>
<g filter="url(#6-a)">
<g transform="translate(9 9)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M48 17C48 18.656 46.656 20 45 20 43.344 20 42 18.656 42 17 42 15.344 43.344 14 45 14 46.656 14 48 15.344 48 17zM4 33L4 6C4 4.896 4.896 4 6 4L33 4M58 29L58 56C58 57.104 57.104 58 56 58L29 58"/>
<line x1="7" x2="21" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="7" x2="9" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="11" x2="13" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="15" x2="17" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="32" y1="31" y2="31" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="41" y1="54" y2="54" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="53" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="49" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="45" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M14,48 C14,49.656 15.344,51 17,51 C18.656,51 20,49.656 20,48 C20,46.344 17,45 17,45 C17,45 14,43.656 14,42 C14,40.344 15.344,39 17,39 C18.656,39 20,40.344 20,42"/>
<line x1="17" x2="17" y1="39" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="17" x2="17" y1="51" y2="54" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="45" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="9" x2="11" y1="45" y2="45" stroke="#222829" stroke-width="2"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="60 8 54 8 54 2 49 0 45 5 41 0 36 2 36 8 30 8 28 13 33 17 28 21 30 26 36 26 36 32 41 34 45 29 49 34 54 32 54 26 60 26 62 21 57 17 62 13"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="32 36 26 36 26 30 21 28 17 33 13 28 8 30 8 36 2 36 0 41 5 45 0 49 2 54 8 54 8 60 13 62 17 57 21 62 26 60 26 54 32 54 34 49 29 45 34 41"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1,28 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="131" viewBox="0 0 320 131">
<defs>
<filter id="1-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="178 49.889 178 80.111 208 99 238 80.111 238 49.889 208.938 31"/>
<polyline stroke="#0D0D0D" stroke-width="2" points="191.612 88.681 208 99 238 80.111 238 49.889 224.725 41.261"/>
<g filter="url(#1-a)">
<g transform="translate(112 5)">
<polygon stroke="#222829" stroke-width="2" points="32 14 48 4 64 14 64 30 48 40 32 30"/>
<polyline stroke="#222829" stroke-width="2" points="64 14 48 24 32 14"/>
<line x1="48.5" x2="48.5" y1="24" y2="40" stroke="#222829" stroke-width="2"/>
<line x1="68.5" x2="68.5" y1="82" y2="126" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="50" y1="64.5" y2="64.5" stroke="#222829" stroke-width="2"/>
<line x1="38" x2="42" y1="64.5" y2="64.5" stroke="#222829" stroke-width="2"/>
<line x1="54" x2="58" y1="64.5" y2="64.5" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2">
<path d="M52 126L52 102C52 99.793 50.209 98 48 98 45.791 98 44 99.793 44 102L44 126M25 0L20 0C6.762 8.547 0 21.074 0 38 0 57.43 11.396 74.449 28 82L28 126"/>
<path d="M48,86 C74.51,86 96,64.512 96,38 C96,21.07 89.242,8.547 76,0 L72,0 L72,36 L48,52 L24,36 L24,0"/>
<path d="M72.004,6 C81.719,13.299 88,24.916 88,38 C88,60.094 70.092,78 48,78 C25.908,78 8,60.094 8,38"/>
</g>
</g>
</g>
<path stroke="#0D0D0D" stroke-width="2" d="M81,11.5 L110,11.5 M76,20.5 L95,20.5 M66,0.5 L85,0.5" transform="matrix(-1 0 0 1 176 0)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,45 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="131" viewBox="0 0 320 131">
<defs>
<filter id="2-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M163.409091,100 C178.094844,100 190,88.1355459 190,73.5 C190,58.8644541 178.094844,47 163.409091,47 C153.618589,47 122.482225,55.8333333 70,73.5 C122.482225,91.1666667 153.618589,100 163.409091,100 Z" transform="rotate(30 130 73.5)"/>
<g filter="url(#2-a)">
<g transform="translate(98 32)">
<line x1="62.5" x2="62.5" y1="51" y2="55" stroke="#222829" stroke-width="2"/>
<line x1="55" x2="66" y1="48.5" y2="48.5" stroke="#222829" stroke-width="2"/>
<line x1="53" x2="71" y1="44.5" y2="44.5" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2" transform="translate(33)">
<path d="M58,7 L58,15 L50,28 L41,28 C39.344,28 38,29.344 38,31 L38,48 L36,48 L36,55"/>
<polyline points="37 22 46 22 52 13"/>
<polyline points="6 13 12 22 21 22"/>
<path d="M0,7 L0,15 L8,28 L17,28 C18.656,28 20,29.344 20,31 L20,48 L22,48 L22,55"/>
<path d="M6 7C6 8.657 4.656 10 3 10 1.344 10 0 8.657 0 7 0 5.343 1.344 4 3 4 4.656 4 6 5.343 6 7zM58 7C58 8.657 56.656 10 55 10 53.344 10 52 8.657 52 7 52 5.343 53.344 4 55 4 56.656 4 58 5.343 58 7z"/>
<line x1="42.5" x2="42.5" y1="35" y2="37"/>
<line x1="42.5" x2="42.5" y1="39" y2="41"/>
<line x1="42.5" x2="42.5" y1="43" y2="45"/>
<line x1="16.5" x2="16.5" y1="35" y2="37"/>
<line x1="16.5" x2="16.5" y1="39" y2="41"/>
<line x1="16.5" x2="16.5" y1="43" y2="45"/>
<path d="M38,9 C38,13.971 33.971,18 29,18 C24.029,18 20,13.971 20,9 C20,4.029 24.029,0 29,0 C33.971,0 38,4.029 38,9 Z"/>
</g>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(8 14)">
<path d="M20 0L6 0C2.688 0 0 2.686 0 6L0 66M108 66L108 6C108 2.686 105.312 0 102 0L88 0"/>
<line x1="44" x2="48" y1="60.5" y2="60.5"/>
<line x1="36" x2="40" y1="60.5" y2="60.5"/>
<line x1="52" x2="56" y1="60.5" y2="60.5"/>
<line x1="60" x2="64" y1="60.5" y2="60.5"/>
<line x1="68" x2="72" y1="60.5" y2="60.5"/>
<polyline points="88 8 100 8 100 60 76 60"/>
<polyline points="32 60 8 60 8 8 20 8"/>
</g>
<polygon stroke="#00C65E" stroke-linejoin="round" stroke-width="2" points="116 98 8 98 0 90 0 86 48 86 52 90 72 90 76 86 124 86 124 90"/>
</g>
</g>
<polyline stroke="#0D0D0D" stroke-linejoin="round" stroke-width="2" points="241.6 54.514 250.88 58 243.92 44.054 259 38.243 243.92 33.595 252.04 20.811 235.8 26.622 230 15 224.2 26.622 207.96 20.811 216.08 34.757 201 38.243 216.08 44.054" transform="rotate(45 230 36.5)"/>
<path stroke="#0D0D0D" stroke-linejoin="round" stroke-width="2" d="M232,41 C232,44.314 229.313,47 226,47 C222.688,47 220,44.314 220,41 C220,37.687 222.688,35 226,35 C229.313,35 232,37.687 232,41 Z"/>
<polyline stroke="#0D0D0D" stroke-width="2" points="91.662 58.841 78.038 43.5 95.449 47"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -1,42 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<defs>
<filter id="3-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="3-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<circle cx="113" cy="75" r="30" fill="#00C65E"/>
<path stroke="#0D0D0D" stroke-width="2" d="M118.915797,102.769022 C122.76683,97.7236662 125.054043,91.4207079 125.054043,84.5835421 C125.054043,68.0149997 111.622586,54.5835421 95.0540434,54.5835421 C89.869893,54.5835421 84.9928659,55.8984936 80.7383027,58.213056" transform="rotate(-165 102.896 78.676)"/>
<g filter="url(#3-a)">
<g transform="translate(100 21)">
<polyline stroke="#222829" stroke-width="2" points="82 20 82 56.068 80 60.075 80 104"/>
<path stroke="#222829" stroke-width="2" d="M46 6C46 2.687 48.688 0 52 0 55.313 0 58 2.687 58 6M46 14L46 6.0004286C46 2.68619187 43.312 0 40 0 36.687 0 34 2.68619187 34 6.0004286L34 14M58 20C58 23.313 55.3088195 26 51.9929007 26 49.9114408 26 48.0802767 24.944 47 23.34M70 20C70 23.313 67.312 26 64 26 60.687 26 58 23.313 58 20L58 6C58 2.687 60.687 0 64 0 67.312 0 70 2.687 70 6M82 6C82 2.687 79.312 0 76 0 72.687 0 70 2.687 70 6L70 20C70 23.313 72.687 26 76 26 79.312 26 82 23.313 82 20L82 6z"/>
<line x1="80" x2="72" y1="59.5" y2="59.5" stroke="#222829" stroke-width="2"/>
<line x1="42" x2="50" y1="59.5" y2="59.5" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M46,34 C54.836,34 62,41.163 62,50"/>
<line x1="80" x2="68" y1="67.5" y2="67.5" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M40,36 L40,26.001 C40,26.001 50,24 50,18 C50,15.791 48.209,14 46,14 L34,14 C29.581,14 26,17.583 26,22.001 L26,44.001 L42,60.001 L42,90"/>
<line x1="40" x2="34" y1="25.5" y2="25.5" stroke="#222829" stroke-width="2"/>
<line x1="89.5" x2="89.5" y1="74" y2="78" stroke="#222829" stroke-width="2"/>
<line x1="89.5" x2="89.5" y1="82" y2="86" stroke="#222829" stroke-width="2"/>
<line x1="89.5" x2="89.5" y1="90" y2="94" stroke="#222829" stroke-width="2"/>
<line x1="33.5" x2="33.5" y1="62" y2="66" stroke="#222829" stroke-width="2"/>
<line x1="33.5" x2="33.5" y1="70" y2="74" stroke="#222829" stroke-width="2"/>
<line x1="33.5" x2="33.5" y1="78" y2="82" stroke="#222829" stroke-width="2"/>
<line x1="17" x2="62" y1="89.5" y2="89.5" stroke="#222829" stroke-width="2"/>
<line x2="120" y1="103.5" y2="103.5" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="92" y1="117.5" y2="117.5" stroke="#222829" stroke-width="2"/>
</g>
</g>
<g stroke-linecap="round" stroke-linejoin="round" filter="url(#3-b)">
<g transform="translate(197)">
<circle cx="19.5" cy="19.5" r="19.5" stroke="#000" stroke-width="2"/>
<line x2="39" y1="19.5" y2="19.5" stroke="#000" stroke-width="2"/>
<path stroke="#000" stroke-width="2" d="M19.5,0 C24.3774967,5.33978814 27.1493679,12.269466 27.3,19.5 C27.1493679,26.730534 24.3774967,33.6602119 19.5,39 C14.6225033,33.6602119 11.8506321,26.730534 11.7,19.5 C11.8506321,12.269466 14.6225033,5.33978814 19.5,0 L19.5,0 Z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="66" height="66" viewBox="0 0 66 66">
<defs>
<filter id="add-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd" transform="translate(-.097 .903)">
<circle cx="33.097" cy="33.097" r="32" fill="#00C65E"/>
<path stroke="#0D0D0D" stroke-width="2" d="M59.7279532,50.4620828 C62.9634424,45.4615529 64.8418319,39.5010119 64.8418319,33.1017494 C64.8418319,15.4286374 50.5149439,1.1017494 32.8418319,1.1017494 C15.1687199,1.1017494 0.84183186,15.4286374 0.84183186,33.1017494" transform="rotate(-2 32.842 25.782)"/>
<g filter="url(#add-a)" transform="translate(13.097 13.097)">
<path fill="#FFF" d="M21,12 L21,19 L28,19 L28,21 L21,21 L21,28 L19,28 L19,21 L12,21 L12,19 L19,19 L19,12 L21,12 Z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 912 B

View File

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="62" height="54" viewBox="0 0 62 54">
<defs>
<filter id="cloud-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="25.097 46.291 25.097 32 19.354 32 30 21 40.343 32 35 32 35 50"/>
<g filter="url(#cloud-a)">
<path stroke="#222829" stroke-width="2" d="M41 40L50 40C56.627 40 62 34.628 62 28 62 22.053 58 17 52 17 52 12 49 8 43 8L42 8C39.272 3.076 34.028 0 28 0 19.164 0 12 7.164 12 16 5.373 16 0 21.373 0 28 0 34.628 5.373 40 12 40L21 40M18 17C18 10.925 23 6 28 6"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="25 54 25 32 19 32 30 21 41 32 35 32 35 54"/>
<line x1="30" x2="30" y1="31" y2="33" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="35" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="39" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="43" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,45 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<defs>
<filter id="dev-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="dev-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="96" height="48" x="158" y="57" fill="#00C65E" rx="4"/>
<g filter="url(#dev-a)">
<g transform="translate(96 13)">
<path stroke="#0D0D0D" stroke-width="2" d="M135.724609,44 L154,44 C156.209139,44 158,45.790861 158,48 L158,88 C158,90.209139 156.209139,92 154,92 L110,92 L110,92"/>
<g stroke="#0D0D0D" stroke-width="2" transform="translate(0 20)">
<rect width="126" height="78" x="1" y="13"/>
<path d="M24.3242188,1 L34.4384766,1 L123,1 C125.209139,1 127,2.790861 127,5 L127,13 L127,13 L1,13" transform="matrix(-1 0 0 1 128 0)"/>
<line x1="14" x2="18" y1="7" y2="7"/>
<line x1="6" x2="10" y1="7" y2="7"/>
<line x1="22" x2="26" y1="7" y2="7"/>
</g>
<line x1="40" x2="96" y1="125" y2="125" stroke="#0D0D0D" stroke-width="2"/>
<rect width="48" height="2" x="18" y="66" fill="#0D0D0D"/>
<rect width="16" height="2" x="70" y="66" fill="#0D0D0D"/>
<rect width="4" height="2" x="90" y="66" fill="#0D0D0D"/>
<rect width="24" height="2" x="18" y="96" fill="#0D0D0D"/>
<rect width="24" height="2" x="46" y="96" fill="#0D0D0D"/>
<rect width="4" height="2" x="74" y="96" fill="#0D0D0D"/>
<rect width="64" height="2" x="10" y="56" fill="#0D0D0D"/>
<rect width="4" height="2" x="10" y="46" fill="#0D0D0D"/>
<rect width="16" height="2" x="10" y="86" fill="#0D0D0D"/>
<rect width="20" height="2" x="78" y="56" fill="#0D0D0D"/>
<rect width="32" height="2" x="18" y="76" fill="#0D0D0D"/>
<rect width="24" height="2" x="54" y="76" fill="#0D0D0D"/>
<g filter="url(#dev-b)">
<g transform="translate(117)">
<polyline stroke="#222829" stroke-width="2" points="5.414 14.486 .414 9.486 5.414 4.486"/>
<polyline stroke="#222829" stroke-width="2" points="19.414 4.486 24.414 9.486 19.414 14.486"/>
<line x1="7.414" x2="17.414" y1="18.486" y2=".486" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="66" height="66" viewBox="0 0 66 66">
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" fill-rule="nonzero" d="M27.0520398 0C27.5753138 0 28 .447682365 28 .999290994L28 30.9960081C28 44.5933606 23.2729963 54.3709234 12.4032103 64.5661897L11.145267 65.746852C10.7826722 66.0871106 10.2352252 66.0841127 9.87642226 65.7393574L.309607581 56.5488781C-.0913795976 56.164151-.104651041 55.5036197.280220814 55.1009054L1.67704022 53.639942C6.94201136 48.2777465 11.8581331 42.1061253 12.0557828 34.0468435L2.2638276 34.0468435C1.74007957 34.0468435 1.31586737 33.5991611 1.31586737 33.0475525L1.31586737.999290994C1.31586737.447682365 1.74007957 0 2.2638276 0L27.0520398 0zM59.0520558 0C59.575795 0 60 .447682365 60 .999290994L60 30.9960081C60 44.5933606 55.2730763 54.3709234 44.4034743 64.5661897L43.1455523 65.746852C42.7829637 66.0871106 42.2355259 66.0841127 41.8767291 65.7393574L32.3096023 56.5488781C31.9086219 56.164151 31.8953507 55.5036197 32.2802161 55.1009054L33.6774858 53.639942C38.9418938 48.2777465 43.8588803 42.1061253 44.0560527 34.0468435L34.3562138 34.0468435C33.8324747 34.0468435 33.4082697 33.5991611 33.4082697 33.0475525L33.4082697.999290994C33.4082697.447682365 33.8324747 0 34.3562138 0L59.0520558 0z" transform="translate(3)"/>
<path stroke="#0D0D0D" stroke-width="2" d="M63,30.9960081 C63,44.5933606 58.2730763,54.3709234 47.4034743,64.5661897 L46.1455523,65.746852 C45.7829637,66.0871106 45.2355259,66.0841127 44.8767291,65.7393574 L35.3096023,56.5488781 C34.9086219,56.164151 34.8953507,55.5036197 35.2802161,55.1009054 L36.6774858,53.639942 C41.9418938,48.2777465 46.8588803,42.1061253 47.0560527,34.0468435 L37.3562138,34.0468435 C36.8324747,34.0468435 36.4082697,33.5991611 36.4082697,33.0475525 C36.4082697,24.4974467 36.4082697,18.0848673 36.4082697,13.8098145"/>
<rect width="14" height="2" x="8" y="4" fill="#0D0D0D"/>
<rect width="6" height="2" x="8" y="8" fill="#0D0D0D"/>
<rect width="15" height="2" x="8" y="12" fill="#0D0D0D"/>
<rect width="13" height="2" x="8" y="16" fill="#0D0D0D"/>
<rect width="8" height="2" x="8" y="20" fill="#0D0D0D"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1,21 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<g fill="none" fill-rule="evenodd">
<rect width="31" height="50" x="106" y="16" fill="#00C65E" rx="4"/>
<path stroke="#0D0D0D" stroke-width="2" d="M112.462445,16 L133,16 C135.209139,16 137,17.790861 137,20 L137,62 C137,64.209139 135.209139,66 133,66 L130.91626,66 L130.91626,66" transform="matrix(-1 0 0 1 243 0)"/>
<g transform="translate(114 22)">
<path stroke="#0D0D0D" stroke-width="2" d="M40.5780596,1 L41,45.5547391 C41,65.2479944 33.989514,79.3960964 17.9279165,94.1566574 L17.9279165,94.1566574 L16.0410667,95.8918133 L1.14934725,82.3811114 L3.22192035,79.542313 C11.5328346,71.2489249 19.1990748,61.645947 19.0917889,49.0385427 L19.0917889,49.0385427 L3.39574141,49.0385427 L2.97380105,1.46865495 L40.5780596,1 Z"/>
<circle cx="22" cy="31" r="9" stroke="#0D0D0D" stroke-width="2"/>
<circle cx="16.5" cy="14.5" r="3.5" stroke="#0D0D0D" stroke-width="2"/>
<path stroke="#0D0D0D" stroke-width="2" d="M88.5780837,1 L89,45.5547391 C89,65.2479959 81.9896338,79.3961004 65.9283063,94.1566631 L65.9283063,94.1566631 L64.0414885,95.8918191 L49.1493455,82.3811172 L51.2226266,79.5422752 C59.532646,71.248893 67.2002625,61.6459156 67.0921294,49.0385427 L67.0921294,49.0385427 L51.5343208,49.0385427 L51.1124045,1.46865495 L88.5780837,1 Z"/>
<rect width="15" height="2" x="56" y="8" fill="#0D0D0D"/>
<rect width="10" height="2" x="56" y="12" fill="#0D0D0D"/>
<rect width="25" height="2" x="56" y="16" fill="#0D0D0D"/>
<rect width="21" height="2" x="56" y="20" fill="#0D0D0D"/>
<rect width="8" height="2" x="56" y="24" fill="#0D0D0D"/>
<rect width="3" height="2" x="56" y="28" fill="#0D0D0D"/>
<rect width="10" height="2" x="56" y="28" fill="#0D0D0D"/>
<rect width="17" height="2" x="56" y="32" fill="#0D0D0D"/>
<rect width="9" height="2" x="56" y="36" fill="#0D0D0D"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,50 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polyline fill="#00C65E" points="46 36 46 59 71 59 71 36"/>
<g stroke="#222829" stroke-width="2" transform="translate(9 13)">
<path d="M53.9997,9 L53.9997,3 C53.9997,1.343 52.6557,0 50.9997,0 L2.9997,0 C1.3437,0 -0.0003,1.343 -0.0003,3 L-0.0003,41 C-0.0003,42.657 1.3437,44 2.9997,44 L34.9997,44"/>
<line x1="32" x2="32" y1="44" y2="54"/>
<line x1="22" x2="22" y1="54" y2="44"/>
<line x1="19" x2="35" y1="54" y2="54"/>
<line x2="35" y1="36" y2="36"/>
<line x1="26" x2="28" y1="40" y2="40"/>
<path d="M37.9997,17 L37.9997,14 C37.9997,12.896 38.8957,12 39.9997,12 L59.9997,12 C61.1037,12 61.9997,12.896 61.9997,14 L61.9997,52 C61.9997,53.104 61.1037,54 59.9997,54 L39.9997,54 C38.8957,54 37.9997,53.104 37.9997,52 L37.9997,27"/>
<line x1="52" x2="48" y1="50" y2="50"/>
<line x1="53" x2="31" y1="24" y2="24"/>
<line x1="43" x2="24" y1="20" y2="20"/>
<polyline stroke-linecap="round" points="27 23 24 20 27 17"/>
<line x1="53" x2="50" y1="24" y2="21" stroke-linecap="round"/>
<line x1="53" x2="50" y1="24" y2="27" stroke-linecap="round"/>
<line x1="38" x2="62" y1="46" y2="46"/>
<polyline points="4 33 4 4 51 4"/>
<line x1="7" x2="9" y1="12" y2="12"/>
<line x1="11" x2="13" y1="12" y2="12"/>
<line x1="15" x2="17" y1="12" y2="12"/>
<line x1="7" x2="9" y1="16" y2="16"/>
<line x1="11" x2="13" y1="16" y2="16"/>
<line x1="15" x2="17" y1="16" y2="16"/>
<line x1="7" x2="9" y1="20" y2="20"/>
<line x1="11" x2="13" y1="20" y2="20"/>
<line x1="19" x2="21" y1="12" y2="12"/>
<line x1="7" x2="9" y1="8" y2="8"/>
<line x1="11" x2="13" y1="8" y2="8"/>
<line x1="15" x2="17" y1="8" y2="8"/>
<line x1="19" x2="21" y1="8" y2="8"/>
<line x1="23" x2="25" y1="12" y2="12"/>
<line x1="23" x2="25" y1="8" y2="8"/>
<line x1="53" x2="55" y1="38" y2="38"/>
<line x1="57" x2="59" y1="38" y2="38"/>
<line x1="53" x2="55" y1="34" y2="34"/>
<line x1="57" x2="59" y1="34" y2="34"/>
<line x1="49" x2="51" y1="34" y2="34"/>
<line x1="41" x2="43" y1="38" y2="38"/>
<line x1="45" x2="47" y1="38" y2="38"/>
<line x1="49" x2="51" y1="38" y2="38"/>
<line x1="53" x2="55" y1="42" y2="42"/>
<line x1="57" x2="59" y1="42" y2="42"/>
<line x1="41" x2="43" y1="42" y2="42"/>
<line x1="45" x2="47" y1="42" y2="42"/>
<line x1="49" x2="51" y1="42" y2="42"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,41 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="21 11 21 37 42 37 42 11"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(13 10)">
<polyline points="29 27 8 27 8 1 46 1 46 16"/>
<line x1="12" x2="12" y1="12" y2="14"/>
<line x1="12" x2="12" y1="8" y2="10"/>
<line x1="16" x2="16" y1="6" y2="14"/>
<line x1="20" x2="20" y1="12" y2="14"/>
<line x1="24" x2="24" y1="6" y2="14"/>
<line x1="30" x2="30" y1="6" y2="14"/>
<line x1="34" x2="34" y1="6" y2="8"/>
<line x1="38" x2="38" y1="6" y2="8"/>
<line x1="34" x2="34" y1="10" y2="12"/>
<line x1="38" x2="38" y1="12" y2="16"/>
<line x1="42" x2="42" y1="6" y2="14"/>
<line x1="34" x2="34" y1="14" y2="20"/>
<line x1="12" x2="12" y1="16" y2="24"/>
<line x1="16" x2="16" y1="22" y2="24"/>
<line x1="26" x2="26" y1="22" y2="24"/>
<line x1="30" x2="30" y1="20" y2="22"/>
<line x1="30" x2="30" y1="16" y2="18"/>
<line x1="16" x2="16" y1="16" y2="18"/>
<line x1="22" x2="22" y1="16" y2="24"/>
<g transform="translate(0 .5)">
<line x1="50" x2="50" y1="3.5" y2=".5"/>
<line x1="4" x2="4" y1="3.5" y2=".5"/>
<path d="M50.4997,29.5 C50.4997,33.918 46.9187,37.5 42.4997,37.5 C38.0817,37.5 34.4997,33.918 34.4997,29.5 C34.4997,25.082 38.0817,21.5 42.4997,21.5 C46.9187,21.5 50.4997,25.082 50.4997,29.5 Z"/>
<line x1="7" x2="21" y1="40.5" y2="40.5"/>
<line x1="7" x2="31" y1="44.5" y2="44.5"/>
<line x1="7" x2="31" y1="48.5" y2="48.5"/>
<polyline points="35 56.5 0 56.5 0 16.5"/>
<line x1="45" x2="51" y1="56.5" y2="56.5"/>
<line x1="45" x2="47.667" y1="52.5" y2="52.5"/>
<line x1="45" x2="49" y1="48.5" y2="48.5"/>
<polyline points="54 17.5 54 .5 0 .5 0 12.5"/>
<polyline points="44.5 38 44.5 60 40.5 60 40.5 38"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="40 29 23.211 40 40 51 57.229 40"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(9 11)">
<polygon points="31 58 0 38 31 18 62 38"/>
<polygon points="31 49 0 29 31 9 62 29"/>
<polygon points="31 40 0 20 31 0 62 20"/>
<line x1="30" x2="32" y1="27" y2="27"/>
<line x1="30" x2="32" y1="23" y2="23"/>
<line x1="30" x2="32" y1="31" y2="31"/>
<line x1="34" x2="36" y1="27" y2="27"/>
<line x1="38" x2="40" y1="29" y2="29"/>
<line x1="22" x2="24" y1="29" y2="29"/>
<line x1="34" x2="36" y1="31" y2="31"/>
<line x1="26" x2="28" y1="27" y2="27"/>
<line x1="26" x2="28" y1="31" y2="31"/>
<line x1="30" x2="32" y1="35" y2="35"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 915 B

View File

@ -1,42 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="24.5 49.5 18 52.626 17.5 55.378 18 57 22.59 62.588 25 62.588 27 63 28 64.116 29 66 34.999 67 37 68 37.826 65.601 40 64.67 39.515 59.5 39.515 57 37 56 37 54 35.676 53 30.677 49.919 29 49.5 28 50.59 25 50.59"/>
<g filter="url(#4-a)">
<g transform="translate(9 9)">
<line x1="59" x2="57" y1="34" y2="42" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="31" y1="48" y2="56" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2">
<path d="M34 31C34 32.656 32.656 34 31 34 29.344 34 28 32.656 28 31 28 29.344 29.344 28 31 28 32.656 28 34 29.344 34 31zM34 17C34 18.656 32.656 20 31 20 29.344 20 28 18.656 28 17 28 15.344 29.344 14 31 14 32.656 14 34 15.344 34 17zM34 3C34 4.656 32.656 6 31 6 29.344 6 28 4.656 28 3 28 1.344 29.344 0 31 0 32.656 0 34 1.344 34 3zM34 45C34 46.656 32.656 48 31 48 29.344 48 28 46.656 28 45 28 43.344 29.344 42 31 42 32.656 42 34 43.344 34 45zM34 59C34 60.656 32.656 62 31 62 29.344 62 28 60.656 28 59 28 57.344 29.344 56 31 56 32.656 56 34 57.344 34 59zM21 23C21 24.656 19.656 26 18 26 16.344 26 15 24.656 15 23 15 21.344 16.344 20 18 20 19.656 20 21 21.344 21 23zM47 23C47 24.656 45.656 26 44 26 42.344 26 41 24.656 41 23 41 21.344 42.344 20 44 20 45.656 20 47 21.344 47 23zM59 45C59 43.344 57.656 42 56 42 54.344 42 53 43.344 53 45 53 46.656 54.344 48 56 48 57.656 48 59 46.656 59 45zM49 56C49 54.344 47.656 53 46 53 44.344 53 43 54.344 43 56 43 57.656 44.344 59 46 59 47.656 59 49 57.656 49 56zM21 39C21 40.656 19.656 42 18 42 16.344 42 15 40.656 15 39 15 37.344 16.344 36 18 36 19.656 36 21 37.344 21 39zM47 39C47 40.656 45.656 42 44 42 42.344 42 41 40.656 41 39 41 37.344 42.344 36 44 36 45.656 36 47 37.344 47 39z"/>
<line x1="20" x2="22" y1="14" y2="14"/>
<line x1="20" x2="22" y1="48" y2="48"/>
<line x1="49" x2="51" y1="31" y2="31"/>
<line x1="48" x2="54" y1="54" y2="47"/>
<line x1="43" x2="34" y1="5" y2="3"/>
<path d="M59 17C59 18.656 57.656 20 56 20 54.344 20 53 18.656 53 17 53 15.344 54.344 14 56 14 57.656 14 59 15.344 59 17zM49 6C49 7.656 47.656 9 46 9 44.344 9 43 7.656 43 6 43 4.344 44.344 3 46 3 47.656 3 49 4.344 49 6zM62 31C62 29.344 60.656 28 59 28 57.344 28 56 29.344 56 31 56 32.656 57.344 34 59 34 60.656 34 62 32.656 62 31z"/>
<line x1="48" x2="54" y1="8" y2="15"/>
<line x1="19" x2="28" y1="57" y2="59"/>
<path d="M3 45C3 43.344 4.344 42 6 42 7.656 42 9 43.344 9 45 9 46.656 7.656 48 6 48 4.344 48 3 46.656 3 45zM13 56C13 54.344 14.344 53 16 53 17.656 53 19 54.344 19 56 19 57.656 17.656 59 16 59 14.344 59 13 57.656 13 56z"/>
<line x1="14" x2="8" y1="54" y2="47"/>
<line x1="3" x2="5" y1="28" y2="20"/>
<path d="M3 17C3 18.656 4.344 20 6 20 7.656 20 9 18.656 9 17 9 15.344 7.656 14 6 14 4.344 14 3 15.344 3 17zM13 6C13 7.656 14.344 9 16 9 17.656 9 19 7.656 19 6 19 4.344 17.656 3 16 3 14.344 3 13 4.344 13 6zM0 31C0 29.344 1.344 28 3 28 4.656 28 6 29.344 6 31 6 32.656 4.656 34 3 34 1.344 34 0 32.656 0 31z"/>
<line x1="14" x2="8" y1="8" y2="15"/>
<line x1="28" x2="20.5" y1="45" y2="40.5"/>
<line x1="18" x2="18" y1="36" y2="26"/>
<line x1="20.5" x2="28" y1="24.5" y2="30"/>
<line x1="31" x2="31" y1="14" y2="6"/>
<line x1="34" x2="41.5" y1="18" y2="21"/>
<line x1="34" x2="41.5" y1="45" y2="40.5"/>
<line x1="46.5" x2="53" y1="40.5" y2="44"/>
<line x1="15.5" x2="9" y1="40.5" y2="44"/>
<line x1="44" x2="44" y1="26" y2="36"/>
<line x1="15" x2="8.5" y1="22" y2="18.5"/>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1,61 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="23" height="26" x="10" y="34" fill="#00C65E"/>
<g filter="url(#5-a)">
<g transform="translate(9 11)">
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(30)">
<polyline points="12 59 12 8 20 8 20 59"/>
<polygon points="29 8 7 8 0 5 0 3 7 0 29 0"/>
</g>
<line x1="51" x2="41" y1="13" y2="13" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polyline stroke="#222829" stroke-width="2" points="53 23 63 23 63 49 1 49 1 23 27 23"/>
<line x1="5" x2="7" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="15" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="19" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="23" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="27" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="33" x2="35" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="45" x2="47" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="53" x2="55" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="57" x2="59" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="5" x2="9" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="15" x2="17" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="11" x2="13" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="19" x2="21" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="23" x2="25" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="53" x2="59" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="5" x2="11" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="19" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="15" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="23" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="27" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="45" x2="47" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="45" x2="47" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="53" x2="55" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="57" x2="59" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="20" x2="42" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="18" x2="16" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="14" x2="10" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="53" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="50" x2="45" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(2 7)">
<line x2="8" y1="1" y2="1"/>
<line x2="6" y1="9" y2="9"/>
</g>
<line x1="12" x2="20" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="22" x2="24" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="2" x2="6" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="8" x2="14" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="16" x2="18" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="6" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="38 38 30 38 30 36 32 34 30 32 30 19 32 17 30 15 30 13 38 13 38 15 36 17 38 19 38 32 36 34 38 36"/>
<line x1="34" x2="34" y1="38" y2="59" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1,23 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backup-5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M50,47 C50,52.523 45.522,57 40,57 C34.478,57 30,52.523 30,47 C30,41.477 34.478,37 40,37 C45.522,37 50,41.477 50,47 Z"/>
<g filter="url(#backup-5-a)">
<g transform="translate(9 11)">
<path stroke="#222829" stroke-width="2" d="M42 10L46 10C49.313 10 52 12.687 52 16L52 35M20 10L16 10C12.687 10 10 12.687 10 16L10 35"/>
<line x1="40" x2="22" y1="58" y2="58" stroke="#222829" stroke-width="2"/>
<line x1="30" x2="32" y1="36" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="26" x2="28" y1="36" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="34" x2="36" y1="36" y2="36" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M36,5.5 C36,9 34.037,12 31,12 C27.963,12 26,9 26,5.5 C26,2 27,0 31,0 C35,0 36,2 36,5.5 Z"/>
<path stroke="#222829" stroke-width="2" d="M34 11L41 15 41 17C41 18.656 40 20 39 20L23 20C22 20 21 18.656 21 17L21 15 28 11M15 43.5C15 47 13.037 50 10 50 6.963 50 5 47 5 43.5 5 40 6 38 10 38 14 38 15 40 15 43.5z"/>
<path stroke="#222829" stroke-width="2" d="M13 49L20 53 20 55C20 56.656 19 58 18 58L2 58C1 58 0 56.656 0 55L0 53 7 49M57 43.5C57 47 55.037 50 52 50 48.963 50 47 47 47 43.5 47 40 48 38 52 38 56 38 57 40 57 43.5z"/>
<path stroke="#222829" stroke-width="2" d="M55 49L62 53 62 55C62 56.656 61 58 60 58L44 58C43 58 42 56.656 42 55L42 53 49 49M41 36C41 41.523 36.522 46 31 46 25.478 46 21 41.523 21 36 21 30.477 25.478 26 31 26 36.522 26 41 30.477 41 36z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,33 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<polygon id="backup-1-a" points="0 0 18 0 18 7 0 7"/>
<polygon id="backup-1-c" points="0 0 22 0 22 7 0 7"/>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="40 18 28 24 28 37.5 40 44 52 37 52 24"/>
<g transform="translate(9 9)">
<path stroke="#222829" stroke-width="2" d="M48.9997,43.9996 L55.9997,36.9996 L55.9997,35.9996 C55.9997,34.3436 54.6557,32.9996 52.9997,32.9996 L51.9997,32.9996 L41.9997,42.9996 C39.9997,44.9996 39.9997,47.9996 39.9997,47.9996 L39.9997,55.9996 L50.9997,55.9996 L50.9997,53.9996 C50.9997,53.9996 50.9997,51.9996 52.9997,49.9996 L59.9997,42.9996 C61.9997,40.9996 61.9997,38.9996 61.9997,38.9996 L61.9997,22.9996 C61.9997,21.3436 60.6557,19.9996 58.9997,19.9996 C57.3437,19.9996 55.9997,21.3436 55.9997,22.9996 L55.9997,30.9996"/>
<g transform="translate(36 56)">
<mask id="backup-1-b" fill="#fff">
<use xlink:href="#backup-1-a"/>
</mask>
<path stroke="#222829" stroke-width="2" d="M1.9997,7.0001 L1.9997,1.0001 C1.9997,0.4481 2.4467,0.0001 2.9997,0.0001 L15.9997,0.0001 C16.5527,0.0001 16.9997,0.4481 16.9997,1.0001 L16.9997,7.0001" mask="url(#backup-1-b)"/>
</g>
<path stroke="#222829" stroke-width="2" d="M12.9997,43.9996 L5.9997,36.9996 L5.9997,35.9996 C5.9997,34.3436 7.3437,32.9996 8.9997,32.9996 L9.9997,32.9996 L19.9997,42.9996 C21.9997,44.9996 21.9997,47.9996 21.9997,47.9996 L21.9997,55.9996 L10.9997,55.9996 L10.9997,53.9996 C10.9997,53.9996 10.9997,51.9996 8.9997,49.9996 L1.9997,42.9996 C-0.0003,40.9996 -0.0003,38.9996 -0.0003,38.9996 L-0.0003,22.9996 C-0.0003,21.3436 1.3437,19.9996 2.9997,19.9996 C4.6557,19.9996 5.9997,21.3436 5.9997,22.9996 L5.9997,30.9996"/>
<g transform="translate(7 56)">
<mask id="backup-1-d" fill="#fff">
<use xlink:href="#backup-1-c"/>
</mask>
<path stroke="#222829" stroke-width="2" d="M1.9997,7.0001 L1.9997,1.0001 C1.9997,0.4481 2.4467,0.0001 2.9997,0.0001 L15.9997,0.0001 C16.5527,0.0001 16.9997,0.4481 16.9997,1.0001 L16.9997,7.0001" mask="url(#backup-1-d)"/>
</g>
<polygon stroke="#222829" stroke-width="2" points="43 28 31 35 19 28 19 15 31 9 43 15"/>
<polyline stroke="#222829" stroke-width="2" points="43 15 31 22 19 15"/>
<line x1="31" x2="31" y1="22" y2="35" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M9.9997,20.9996 C9.9997,9.4016 19.4017,-0.0004 30.9997,-0.0004 C42.5977,-0.0004 51.9997,9.4016 51.9997,20.9996"/>
<line x1="10" x2="10" y1="23" y2="25" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="10" x2="10" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="52" x2="52" y1="23" y2="25" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="52" x2="52" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,25 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backup-2-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M56.1504,32.0898 L50.6794,32.2408 L52.5154,27.0798 C51.3034,25.9038 49.9304,24.8978 48.4274,24.0998 L44.0794,27.4448 L42.5334,22.1988 C41.7034,22.0818 40.8624,21.9998 40.0004,21.9998 C39.1374,21.9998 38.2964,22.0818 37.4664,22.1988 L35.9214,27.4448 L31.5724,24.0998 C30.0694,24.8978 28.6964,25.9038 27.4844,27.0798 L29.3204,32.2408 L23.8494,32.0898 C23.1134,33.5908 22.5804,35.2048 22.2844,36.9058 L26.7994,39.9998 L22.2844,43.0938 C22.5804,44.7948 23.1134,46.4088 23.8494,47.9098 L29.3204,47.7588 L27.4844,52.9198 C28.6964,54.0958 30.0694,55.1028 31.5724,55.9008 L35.9214,52.5548 L37.4664,57.8008 C38.2964,57.9178 39.1374,57.9998 40.0004,57.9998 C40.8624,57.9998 41.7034,57.9178 42.5334,57.8008 L44.0794,52.5548 L48.4274,55.9008 C49.9304,55.1028 51.3034,54.0958 52.5154,52.9198 L50.6794,47.7588 L56.1504,47.9098 C56.8864,46.4088 57.4204,44.7948 57.7154,43.0938 L53.2004,39.9998 L57.7154,36.9058 C57.4204,35.2048 56.8864,33.5908 56.1504,32.0898 Z"/>
<g filter="url(#backup-2-a)">
<g transform="translate(9 12)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M6 28C6 29.656 4.656 31 3 31 1.344 31 0 29.656 0 28 0 26.344 1.344 25 3 25 4.656 25 6 26.344 6 28zM62 28C62 29.656 60.656 31 59 31 57.344 31 56 29.656 56 28 56 26.344 57.344 25 59 25 60.656 25 62 26.344 62 28z"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="54 6 54 12 48 12"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="8 50 8 44 14 44"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M47.1504,20.0898 L41.6794,20.2408 L43.5154,15.0798 C42.3034,13.9038 40.9304,12.8978 39.4274,12.0998 L35.0794,15.4448 L33.5334,10.1988 C32.7034,10.0818 31.8624,9.9998 31.0004,9.9998 C30.1374,9.9998 29.2964,10.0818 28.4664,10.1988 L26.9214,15.4448 L22.5724,12.0998 C21.0694,12.8978 19.6964,13.9038 18.4844,15.0798 L20.3204,20.2408 L14.8494,20.0898 C14.1134,21.5908 13.5804,23.2048 13.2844,24.9058 L17.7994,27.9998 L13.2844,31.0938 C13.5804,32.7948 14.1134,34.4088 14.8494,35.9098 L20.3204,35.7588 L18.4844,40.9198 C19.6964,42.0958 21.0694,43.1028 22.5724,43.9008 L26.9214,40.5548 L28.4664,45.8008 C29.2964,45.9178 30.1374,45.9998 31.0004,45.9998 C31.8624,45.9998 32.7034,45.9178 33.5334,45.8008 L35.0794,40.5548 L39.4274,43.9008 C40.9304,43.1028 42.3034,42.0958 43.5154,40.9198 L41.6794,35.7588 L47.1504,35.9098 C47.8864,34.4088 48.4204,32.7948 48.7154,31.0938 L44.2004,27.9998 L48.7154,24.9058 C48.4204,23.2048 47.8864,21.5908 47.1504,20.0898 Z"/>
<line x1="4" x2="6" y1="38" y2="38" stroke="#222829" stroke-width="2"/>
<line x1="56" x2="58" y1="18" y2="18" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M58.8555 30.8633C57.4215 44.9813 45.4975 56.0003 31.0005 56.0003 21.4865 56.0003 13.0805 51.2553 8.0195 44.0023M3.1582 25.0068C4.6512 10.9508 16.5472-.0002 31.0002-.0002 40.5132-.0002 48.9202 4.7448 53.9802 11.9978M28 31C28 32.656 29.344 34 31 34 32.656 34 34 32.656 34 31 34 29.344 31 28 31 28 31 28 28 26.656 28 25 28 23.344 29.344 22 31 22 32.656 22 34 23.344 34 25"/>
<line x1="31" x2="31" y1="22" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="31" y1="34" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="37" x2="39" y1="28" y2="28" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="28" y2="28" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1,24 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M62.9997,28 L62.9997,40 C62.9997,43.866 52.7027,47 39.9997,47 C27.2967,47 16.9997,43.866 16.9997,40 L16.9997,28 L17.0037693,28.1330166 C17.2367305,31.9376319 27.4427115,35 39.9997,35 C52.7027,35 62.9997,31.866 62.9997,28 L62.9997,28 Z"/>
<g stroke="#222829" stroke-width="2" transform="translate(8 9)">
<line x1="32" x2="32" y1="50" y2="56"/>
<path d="M34.9997,59 C34.9997,60.657 33.6557,62 31.9997,62 C30.3437,62 28.9997,60.657 28.9997,59 C28.9997,57.343 30.3437,56 31.9997,56 C33.6557,56 34.9997,57.343 34.9997,59 Z"/>
<line x1="29" y1="1" y2="1" transform="translate(0 58)"/>
<line x1="64" x2="35" y1="59" y2="59"/>
<path d="M54.9997,7 C54.9997,10.866 44.7027,14 31.9997,14 C19.2967,14 8.9997,10.866 8.9997,7 C8.9997,3.134 19.2967,0 31.9997,0 C44.7027,0 54.9997,3.134 54.9997,7 Z"/>
<path d="M54.9997,12 L54.9997,19 C54.9997,22.866 44.7027,26 31.9997,26 C19.2967,26 8.9997,22.866 8.9997,19 L8.9997,12"/>
<path d="M54.9997,24 L54.9997,31 C54.9997,34.866 44.7027,38 31.9997,38 C19.2967,38 8.9997,34.866 8.9997,31 L8.9997,24"/>
<path d="M54.9997,36 L54.9997,43 C54.9997,46.866 44.7027,50 31.9997,50 C19.2967,50 8.9997,46.866 8.9997,43 L8.9997,36"/>
<line x1="31" x2="33" y1="44" y2="44"/>
<line x1="27" x2="29" y1="44" y2="44"/>
<line x1="35" x2="37" y1="44" y2="44"/>
<line x1="31" x2="33" y1="32" y2="32"/>
<line x1="27" x2="29" y1="32" y2="32"/>
<line x1="35" x2="37" y1="32" y2="32"/>
<line x1="31" x2="33" y1="20" y2="20"/>
<line x1="27" x2="29" y1="20" y2="20"/>
<line x1="35" x2="37" y1="20" y2="20"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backup-4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M40,22 C48.2842712,22 55,28.7157288 55,37 C55,43.2515192 51.1756673,48.6098176 45.7388927,50.8630046 L43.5894775,50.5401611 L41.7318115,49.5251465 L42.2996826,48.6115723 L43.0001,47.2045898 L43.3258057,45.3460693 L42.7926025,43.4189453 L42.2996826,42.0701904 L39.6904297,41.6029053 L38.3757324,41.8286133 L37.0089111,42.765625 L36.2557373,43.9332275 L36.2557373,46.0036621 L37.3513184,47.621582 L38.5844727,49.0001 L37.3513184,49.9698486 L34.4244385,50.5401611 L34.140113,50.8122352 C28.7676784,48.5300934 25,43.2050409 25,37 C25,28.7157288 31.7157288,22 40,22 Z"/>
<path stroke="#0D0D0D" stroke-width="2" d="M45.9631728,50.7679004 C51.2805488,48.4616757 55,43.1652 55,37 C55,28.7157288 48.2842712,22 40,22 C31.7157288,22 25,28.7157288 25,37 C25,43.010677 28.535341,48.1956309 33.6400519,50.5888906"/>
<g stroke-linejoin="round" filter="url(#backup-4-a)">
<g transform="translate(11 9)">
<path stroke="#222829" stroke-width="2" d="M33.0001,36.0001 C33.0001,38.2091 31.2091,40.0001 29.0001,40.0001 C26.7911,40.0001 25.0001,38.2091 25.0001,36.0001 C25.0001,33.7911 26.7911,32.0001 29.0001,32.0001 C31.2091,32.0001 33.0001,33.7911 33.0001,36.0001 Z"/>
<polyline stroke="#222829" stroke-width="2" points="36 48 31 48 29 45 27 48 22 48"/>
<path stroke="#222829" stroke-width="2" d="M23.0001 51.9996L16.0001 58.9996C16.0001 60.6566 17.3441 61.9996 19.0001 61.9996L30.0001 61.9996C31.1041 61.9996 32.0001 61.1036 32.0001 59.9996 32.0001 58.8956 31.1041 57.9996 30.0001 57.9996L22.0001 57.9996M35.0001 61.9996L39.0001 61.9996C40.6561 61.9996 42.0001 60.6566 42.0001 58.9996L41.9981 58.9986 35.0001 51.9996M18.0001 48.9996L22.0001 41.9996 29.0001 39.9996 36.0001 41.9996 40.0001 48.9996C40.0001 50.6566 38.6561 51.9996 37.0001 51.9996L21.0001 51.9996C19.3441 51.9996 18.0001 50.6566 18.0001 48.9996z"/>
<path stroke="#222829" stroke-width="2" d="M15.0001,54.4029 C6.0571,49.4629 0.0001,39.9389 0.0001,28.9999 C0.0001,12.9839 12.9841,-0.0001 29.0001,-0.0001 C45.0161,-0.0001 58.0001,12.9839 58.0001,28.9999 C58.0001,39.9389 51.9431,49.4629 43.0001,54.4029"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

Some files were not shown because too many files have changed in this diff Show More