feat(landing): update landing design (#3)
1
.gitignore
vendored
@@ -2,6 +2,7 @@
|
||||
/dist
|
||||
/tmp
|
||||
/out-tsc
|
||||
/package-build
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
|
103
README.md
@@ -1,27 +1,102 @@
|
||||
# EvaIcons
|
||||
<h1><img src="https://i.imgur.com/cXYo5bi.png"> Eva Icons</h1>
|
||||
|
||||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.1.4.
|
||||
**Eva Icons** is a pack of more than 480 beautifully crafted Open Source icons for common actions and items. Additionally Eva Icons support 4 animation types: `zoom`, `pulse`, `shake` and `flip`. Download on desktop to use them in your digital products for Web, iOS and Android. Icons are provided in two visual types: `Fill` and `Outline` and in serveral formats, including `PNG`, `SVG`, `font`, `Sketch`, etc.
|
||||
|
||||
## Development server
|
||||
## Download
|
||||
- [Complete Eva Icons Package](http://google.com)
|
||||
- [NPM Package](https://www.npmjs.com/package/eva-icons)
|
||||
- you also can download icons one by one in `PNG` and `SVG` formats from [Eva Icons Website](http://google.com).
|
||||
|
||||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
|
||||
### CDN
|
||||
|
||||
## Code scaffolding
|
||||
Load from CDN in your project:
|
||||
```html
|
||||
<script src="https://unpkg.com/eva-icons"></script>
|
||||
```
|
||||
After including the script, `eva` will be available as a global variable.
|
||||
|
||||
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||
### NPM
|
||||
|
||||
## Build
|
||||
- Install the package:
|
||||
```
|
||||
npm i eva-icons
|
||||
```
|
||||
|
||||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
|
||||
- Include it to your page:
|
||||
```html
|
||||
<script src="path/to/dist/eva-icons.js"></script>
|
||||
```
|
||||
|
||||
## Running unit tests
|
||||
- Or require the package based (may vary depending on your build system):
|
||||
|
||||
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
||||
```js
|
||||
const eva = require('eva-icons');
|
||||
```
|
||||
|
||||
## Running end-to-end tests
|
||||
```js
|
||||
import * as eva from 'eva-icons';
|
||||
```
|
||||
|
||||
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
|
||||
## How to use
|
||||
|
||||
## Further help
|
||||
### JavaScript
|
||||
|
||||
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
||||
- Add the `data-eva` attribute with the icon name to an element:
|
||||
|
||||
```html
|
||||
<i data-eva="github"></i>
|
||||
```
|
||||
|
||||
- Call `eva.replace();` to replace all elements with the `data-eva` data attribute with SVG elements. You can also pass some additional parameters to the `replace` method to modify the `replace` function behavior.
|
||||
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<title></title>
|
||||
<script src="https://unpkg.com/eva-icons"></script>
|
||||
<body>
|
||||
|
||||
<i data-eva="github"></i>
|
||||
|
||||
<script>
|
||||
eva.replace()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
*Thanks to Feather Icons for the build process inspiration.*
|
||||
|
||||
### Fonts
|
||||
|
||||
Eva Icons are also avaialbe as a web font
|
||||
|
||||
- Include the font css into your page:
|
||||
|
||||
```html
|
||||
<link href="path/to/css/Eva-Icons.css">
|
||||
```
|
||||
- Add `eva` and `eva-icon` classes to an element:
|
||||
|
||||
```html
|
||||
<i class="eva eva-github"></i>
|
||||
```
|
||||
|
||||
We recommend using SVG icons due to better rendering and performance capabilities, [more details](https://css-tricks.com/icon-fonts-vs-svg/).
|
||||
|
||||
## Documentation
|
||||
|
||||
### `eva.replace({ ... })`
|
||||
|
||||
Replaces all elements that have a `data-eva` attribute with SVG markup corresponding to the element's `data-eva` attribute value.
|
||||
## License
|
||||
[MIT](LICENSE.txt) license.
|
||||
|
||||
## How can I support the developers?
|
||||
- Star our GitHub repo :star:
|
||||
- Create pull requests, submit bugs, suggest new features or documentation updates :wrench:
|
||||
- Follow us on [Twitter](https://twitter.com/akveo_inc) :feet:
|
||||
- Like our page on [Facebook](https://www.facebook.com/akveo/) :thumbsup:
|
||||
|
||||
## From Akveo
|
||||
Made with :heart: by [Akveo team](http://akveo.com?utm_source=github&utm_medium=nebular_readme). Follow us on [Twitter](https://twitter.com/akveo_inc) to get the latest news first!
|
||||
We're always happy to receive your feedback!
|
||||
|
18
angular.json
@@ -7,25 +7,25 @@
|
||||
"root": "",
|
||||
"sourceRoot": "src",
|
||||
"projectType": "application",
|
||||
"prefix": "app",
|
||||
"schematics": {},
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:browser",
|
||||
"options": {
|
||||
"preserveSymlinks": true,
|
||||
"outputPath": "dist/eva-icons",
|
||||
"outputPath": "dist",
|
||||
"index": "src/index.html",
|
||||
"main": "src/main.ts",
|
||||
"polyfills": "src/polyfills.ts",
|
||||
"tsConfig": "src/tsconfig.app.json",
|
||||
"assets": [
|
||||
"src/favicon.ico",
|
||||
"src/assets"
|
||||
"src/assets",
|
||||
{ "glob": "**/*", "input": "package-build/fill", "output": "./fill" },
|
||||
{ "glob": "**/*", "input": "package-build/outline", "output": "./outline" },
|
||||
{ "glob": "**/*.zip", "input": "package-build/", "output": "./" }
|
||||
],
|
||||
"styles": [
|
||||
"node_modules/bootstrap/dist/css/bootstrap.css",
|
||||
"node_modules/nebular-icons/scss/nebular-icons.scss",
|
||||
"src/app/@theme/styles/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
@@ -53,8 +53,7 @@
|
||||
"serve": {
|
||||
"builder": "@angular-devkit/build-angular:dev-server",
|
||||
"options": {
|
||||
"browserTarget": "eva-icons:build",
|
||||
"proxyConfig": "src/proxy.conf.json"
|
||||
"browserTarget": "eva-icons:build"
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
@@ -77,7 +76,6 @@
|
||||
"karmaConfig": "src/karma.conf.js",
|
||||
"styles": [
|
||||
"node_modules/bootstrap/dist/css/bootstrap.css",
|
||||
"node_modules/nebular-icons/scss/nebular-icons.scss",
|
||||
"src/app/@theme/styles/styles.scss"
|
||||
],
|
||||
"scripts": [],
|
||||
@@ -132,7 +130,11 @@
|
||||
"defaultProject": "eva-icons",
|
||||
"schematics": {
|
||||
"@schematics/angular:component": {
|
||||
"prefix": "app",
|
||||
"styleext": "scss"
|
||||
},
|
||||
"@schematics/angular:directive": {
|
||||
"prefix": "app"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,14 +1,50 @@
|
||||
import { AppPage } from './app.po';
|
||||
/**
|
||||
* @license
|
||||
* Copyright Akveo. All Rights Reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*/
|
||||
|
||||
describe('workspace-project App', () => {
|
||||
let page: AppPage;
|
||||
import { browser, element, by } from 'protractor';
|
||||
|
||||
beforeEach(() => {
|
||||
page = new AppPage();
|
||||
describe('App common behavior', () => {
|
||||
beforeEach((done) => {
|
||||
browser.get('').then(() => done());
|
||||
});
|
||||
|
||||
it('should display welcome message', () => {
|
||||
page.navigateTo();
|
||||
expect(page.getParagraphText()).toEqual('Welcome to eva-icons!');
|
||||
it('should be active outline', () => {
|
||||
element(by.css('eva-type-switcher .nav-item.active span')).getText().then(value => {
|
||||
expect(value).toEqual('Outline');
|
||||
});
|
||||
});
|
||||
|
||||
it('should contain list of icons', () => {
|
||||
element.all(by.css('eva-icon-list nb-card')).count()
|
||||
.then((count) => {
|
||||
expect(count).toBeGreaterThan(10);
|
||||
});
|
||||
});
|
||||
|
||||
it('should search "brush" icon', () => {
|
||||
element(by.css('.search-input')).sendKeys('brush')
|
||||
.then(() => {
|
||||
return browser.wait(() => {
|
||||
return element
|
||||
.all(by.css('eva-icon-list nb-card:not(.fake-card)'))
|
||||
.count()
|
||||
.then((count) => {
|
||||
return count === 1;
|
||||
});
|
||||
}, 100);
|
||||
});
|
||||
});
|
||||
|
||||
it('should open download icon popup', () => {
|
||||
element(by.css('eva-icon-list nb-card:nth-of-type(1)'))
|
||||
.click()
|
||||
.then(() => {
|
||||
const downloadIconPopup = element(by.css('eva-download-icon')).isDisplayed();
|
||||
|
||||
expect(downloadIconPopup).toBeTruthy();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@@ -1,11 +0,0 @@
|
||||
import { browser, by, element } from 'protractor';
|
||||
|
||||
export class AppPage {
|
||||
navigateTo() {
|
||||
return browser.get('/');
|
||||
}
|
||||
|
||||
getParagraphText() {
|
||||
return element(by.css('app-root h1')).getText();
|
||||
}
|
||||
}
|
49
e2e/src/rounting.e2e-spec.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Akveo. All Rights Reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*/
|
||||
|
||||
import { browser, element, by } from 'protractor';
|
||||
|
||||
describe('Routing', () => {
|
||||
it('should open outline page', (done) => {
|
||||
browser.get('#/?type=outline')
|
||||
.then(() => {
|
||||
element(by.css('eva-type-switcher .nav-item.active span'))
|
||||
.getText()
|
||||
.then(value => {
|
||||
expect(value).toEqual('Outline');
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should open fill page', (done) => {
|
||||
browser.get('#/?type=fill')
|
||||
.then(() => {
|
||||
element(by.css('eva-type-switcher .nav-item.active span'))
|
||||
.getText()
|
||||
.then(value => {
|
||||
expect(value).toEqual('Fill');
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should open fill page with github icon', (done) => {
|
||||
browser.get('#/?type=fill&searchKey=github')
|
||||
.then(() => {
|
||||
element
|
||||
.all(by.css('eva-icon-list nb-card:not(.fake-card)'))
|
||||
.count()
|
||||
.then(value => {
|
||||
expect(value).toEqual(1);
|
||||
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
@@ -1,22 +0,0 @@
|
||||
{
|
||||
"convertOrResizeFormats": [
|
||||
{
|
||||
"format": "png",
|
||||
"size": ["64"]
|
||||
}
|
||||
],
|
||||
"copy": [
|
||||
{
|
||||
"format": "svg"
|
||||
},
|
||||
{
|
||||
"format": "fig"
|
||||
},
|
||||
{
|
||||
"format": "sketch"
|
||||
}
|
||||
],
|
||||
"srcPath": "./eva-icons/source_icons",
|
||||
"desPath": "./eva-icons/destination_icons",
|
||||
"defaultExtension": "svg"
|
||||
}
|
@@ -1,165 +0,0 @@
|
||||
const fs = require('fs-extra');
|
||||
const path = require('path');
|
||||
const archiver = require('archiver');
|
||||
|
||||
const config = require('./config.json');
|
||||
const FileSystemHelper = require('./fs-helper');
|
||||
const GraphicsMagickHelper = require('./gm-helper');
|
||||
|
||||
const fileSystemHelper = new FileSystemHelper();
|
||||
const graphicsMagickHelper = new GraphicsMagickHelper();
|
||||
|
||||
const copy = () => {
|
||||
return Promise.all(config.copy.map((copyFormat) => {
|
||||
const pathFromCopy = path.join(config.srcPath, copyFormat.format);
|
||||
const pathToCopy = path.join(config.desPath, copyFormat.format);
|
||||
|
||||
return fileSystemHelper.copy(pathFromCopy, pathToCopy);
|
||||
}));
|
||||
};
|
||||
const convert = () => {
|
||||
const { format, desFolderPath, desFilePath, readableStream } = options;
|
||||
|
||||
fileSystemHelper.mkDirByPathSync(desFolderPath);
|
||||
|
||||
const writeStream = fs.createWriteStream(desFilePath);
|
||||
|
||||
return graphicsMagickHelper.convert(
|
||||
size,
|
||||
readableStream
|
||||
).stream().pipe(writeStream);
|
||||
};
|
||||
const resize = () => {
|
||||
const { size, desFolderPath, desFilePath, readableStream } = options;
|
||||
|
||||
fileSystemHelper.mkDirByPathSync(desFolderPath);
|
||||
|
||||
const writeStream = fs.createWriteStream(desFilePath);
|
||||
|
||||
return graphicsMagickHelper.resize(
|
||||
size,
|
||||
readableStream
|
||||
).stream().pipe(writeStream);
|
||||
};
|
||||
const convertAndResize = (options) => {
|
||||
const { size, desFolderPath, desFilePath, readableStream, format } = options;
|
||||
|
||||
fileSystemHelper.mkDirByPathSync(desFolderPath);
|
||||
|
||||
const writeStream = fs.createWriteStream(desFilePath);
|
||||
|
||||
return graphicsMagickHelper.convertAndResize(
|
||||
size,
|
||||
format,
|
||||
readableStream
|
||||
).stream().pipe(writeStream);
|
||||
};
|
||||
// convert, resize, convert or resize
|
||||
const transformFiles = () => {
|
||||
const srcPath = path.join(config.srcPath, config.defaultExtension);
|
||||
|
||||
return fileSystemHelper.getSourceFiles(srcPath)
|
||||
.then((sourceFilesOutput) => {
|
||||
config.convertOrResizeFormats.forEach((formatItem) => {
|
||||
sourceFilesOutput.files.forEach((file, index) => {
|
||||
const srcFilePath = path.join(srcPath, file);
|
||||
const desPath = path.join(config.desPath, formatItem.format);
|
||||
const outputFileName = `${sourceFilesOutput.fileNames[index]}.${formatItem.format}`;
|
||||
const readableStream = fs.createReadStream(srcFilePath);
|
||||
|
||||
fileSystemHelper.mkDirByPathSync(desPath);
|
||||
|
||||
if (formatItem.size && formatItem.size.length !== 0) {
|
||||
const maxSize = Math.max(...formatItem.size).toString();
|
||||
|
||||
// convert and resize
|
||||
const desFolderPath = path.join(desPath, maxSize);
|
||||
const desFilePathMax = path.join(
|
||||
desFolderPath,
|
||||
outputFileName,
|
||||
);
|
||||
const convertAndResizeOptions = {
|
||||
size: maxSize,
|
||||
desFolderPath,
|
||||
desFilePath: desFilePathMax,
|
||||
readableStream,
|
||||
format: formatItem.format,
|
||||
};
|
||||
const writableStream = convertAndResize(convertAndResizeOptions);
|
||||
|
||||
if (formatItem.size.length > 1) {
|
||||
writableStream.on('finish', () => {
|
||||
// resize
|
||||
formatItem.size.forEach((itemSize) => {
|
||||
if (itemSize === maxSize) {
|
||||
return;
|
||||
}
|
||||
|
||||
const desFolderPath = path.join(desPath, itemSize);
|
||||
const desFilePath = path.join(
|
||||
desFolderPath,
|
||||
outputFileName,
|
||||
);
|
||||
const readableStream = fs.createReadStream(desFilePathMax);
|
||||
const resizeOptions = {
|
||||
size: itemSize,
|
||||
desFolderPath,
|
||||
desFilePath,
|
||||
readableStream,
|
||||
};
|
||||
|
||||
resize(resizeOptions);
|
||||
});
|
||||
});
|
||||
}
|
||||
} else {
|
||||
const desFilePath = path.join(
|
||||
desPath,
|
||||
outputFileName,
|
||||
);
|
||||
const convertOptions = {
|
||||
format: formatItem.format,
|
||||
desFolderPath: desPath,
|
||||
desFilePath,
|
||||
readableStream,
|
||||
};
|
||||
|
||||
convert(convertOptions);
|
||||
}
|
||||
});
|
||||
})
|
||||
});
|
||||
};
|
||||
const zipFiles = () => {
|
||||
const zip = archiver('zip', { zlib: { level: 9 } });
|
||||
const desFolderPath = path.join(config.desPath, 'evo-icons.zip');
|
||||
|
||||
zip.on('warning', function(err) {
|
||||
if (err.code === 'ENOENT') {
|
||||
console.info('zip warning');
|
||||
} else {
|
||||
throw err;
|
||||
}
|
||||
});
|
||||
|
||||
zip.on('error', function(err) {
|
||||
throw err;
|
||||
});
|
||||
|
||||
zip.directory(config.desPath, false);
|
||||
zip.pipe(fs.createWriteStream(desFolderPath));
|
||||
zip.finalize();
|
||||
};
|
||||
|
||||
fileSystemHelper.remove(config.desPath)
|
||||
.then(() => {
|
||||
return Promise.all([copy(), transformFiles()]);
|
||||
})
|
||||
.then(() => {
|
||||
zipFiles();
|
||||
})
|
||||
.catch((error) => {
|
||||
const errorMessage = error && error.message ? error.message : `${error}, Smth went wrong`;
|
||||
|
||||
console.error(errorMessage);
|
||||
});
|
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 7</title><path d="M345.37,296.58l.13-.18.17-.28.13-.23.12-.25.13-.28.08-.22c0-.11.08-.22.11-.33s0-.15.06-.22.06-.23.08-.34,0-.19,0-.29,0-.19,0-.29,0-.38,0-.57h0a6,6,0,0,0-.12-1.2c0-.07,0-.14-.05-.2s-.06-.24-.09-.36-.07-.2-.11-.3-.06-.17-.09-.25-.13-.29-.21-.44l0-.09a6,6,0,0,0-.31-.52h0L205.54,83.46h0l-.07-.1-.09-.12-.24-.32-.17-.19-.22-.24-.25-.23-.18-.16-.34-.25-.11-.08,0,0-.36-.22-.16-.09-.31-.15-.24-.11-.22-.08L202.2,81l-.1,0-.46-.11h0l-.52-.07h-.14l-.43,0-.36,0h-.21l-.47.07h-.09l-.44.11-.13,0-.34.12-.22.08-.24.11-.31.15-.17.1-.35.21,0,0-.12.09-.32.24-.19.17-.24.22-.23.24-.16.19-.24.32-.09.12-.07.1h0L55.53,289.71h0a6,6,0,0,0-.31.52l0,.09c-.07.14-.15.29-.21.44s-.06.17-.09.25-.08.2-.11.3-.06.24-.09.36,0,.14-.05.2a6,6,0,0,0-.12,1.2h0q0,.29,0,.57c0,.1,0,.19,0,.29s0,.19,0,.29.05.23.08.34,0,.15.06.22.07.22.11.33l.08.22.13.28.12.25.13.23.17.28.13.18.22.29L56,297l.25.27.2.18.23.21c.13.11.27.21.42.31l0,0h0a6,6,0,0,0,.72.41l.15.07a5.92,5.92,0,0,0,.74.29l.09,0a6,6,0,0,0,.67.15l.22,0a6.06,6.06,0,0,0,.73.05H340.54a6,6,0,0,0,.73-.05l.21,0a6,6,0,0,0,.68-.15l.09,0a6,6,0,0,0,.74-.29l.15-.07a6,6,0,0,0,.72-.41h0l0,0c.14-.1.28-.2.42-.31l.23-.21.2-.18L345,297l.14-.16ZM200.5,97.41,329.18,287.08H71.82Z"/><path d="M184.95,175.85A185.22,185.22,0,0,0,190.14,206q.4,1.55.83,3.08t.9,3q.47,1.52,1,3c.33,1,.68,2,1,2.89l.07.2a7.3,7.3,0,0,0,6.81,4.69h.1a7.27,7.27,0,0,0,6.81-5c.14-.43.28-.86.41-1.29s.26-.83.4-1.23q.5-1.49,1-3t.91-3c.29-1,.57-2.06.84-3.09l.07-.26a185.2,185.2,0,0,0,5.2-30.2,181.29,181.29,0,0,0,.8-18.5c-.08-4.67-.58-11.45-3.91-16.31a14.43,14.43,0,0,0-8.79-6.27,20.18,20.18,0,0,0-4.15-.37,14.87,14.87,0,0,0-4.73.7,15.2,15.2,0,0,0-7.57,5.94c-3.33,4.87-3.83,11.64-3.91,16.31A181.28,181.28,0,0,0,184.95,175.85Z"/><path d="M200.66,234.38a14.81,14.81,0,1,0,14.81,14.81A14.83,14.83,0,0,0,200.66,234.38Z"/></svg>
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 20</title><path d="M303.85,313,185,202.64l118-112.88a6,6,0,1,0-8.29-8.67L173,197.53a6,6,0,0,0-.63.74c-.15.13-.31.24-.44.39a6,6,0,0,0,.31,8.48L295.68,321.82a6,6,0,1,0,8.17-8.79Z"/><path d="M108.94,202.64,227,89.76a6,6,0,0,0-8.29-8.67L96.92,197.53a6,6,0,0,0-.63.74,5.89,5.89,0,0,0-.45.39,6,6,0,0,0,.31,8.48L219.58,321.82a6,6,0,1,0,8.17-8.79Z"/></svg>
|
Before Width: | Height: | Size: 468 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 16</title><path d="M246.5,204.71a6.07,6.07,0,0,0,.55-.52,6,6,0,0,0-.31-8.48L123.32,81a6,6,0,0,0-8.17,8.79L234,200.21l-118,112.88a6,6,0,0,0,8.29,8.67L246,205.32A6,6,0,0,0,246.5,204.71Z"/><path d="M322.85,195.71,199.42,81a6,6,0,0,0-8.17,8.79L310.06,200.21,192,313.09a6,6,0,0,0,8.29,8.67L322.08,205.32a5.93,5.93,0,0,0,.52-.61,6.08,6.08,0,0,0,.56-.52A6,6,0,0,0,322.85,195.71Z"/></svg>
|
Before Width: | Height: | Size: 500 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 212</title><path d="M320.15,135a6,6,0,0,0-8.48.19L200,252,88.34,135.2a6,6,0,1,0-8.67,8.29l116,121.31.14.13,0,.06.07.06a6,6,0,0,0,.81.64l.12.07a6,6,0,0,0,.91.46l.11,0a5.94,5.94,0,0,0,1,.28h.08a6,6,0,0,0,1.06.1h0a6,6,0,0,0,1.05-.1h.08a6,6,0,0,0,1-.28l.11,0a6,6,0,0,0,.91-.46l.12-.07a6,6,0,0,0,.81-.64l.07-.06,0-.06.14-.13,116-121.31A6,6,0,0,0,320.15,135Z"/></svg>
|
Before Width: | Height: | Size: 472 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 24</title><path d="M321,157.23l.07-.12a6,6,0,0,0,.46-.93l0-.13a6,6,0,0,0,.27-1l0-.13A6,6,0,0,0,322,154s0-.06,0-.09,0-.08,0-.12a6,6,0,0,0-.12-1v-.06a6,6,0,0,0-.34-1.05l0,0a6,6,0,0,0-.54-1l0-.07a6,6,0,0,0-.73-.85l0,0-.05,0a6,6,0,0,0-.86-.67l-.12-.07a6,6,0,0,0-.93-.46l-.13,0a5.91,5.91,0,0,0-1-.27l-.14,0A6,6,0,0,0,316,148H84a6,6,0,0,0-.93.08l-.13,0a6,6,0,0,0-1,.27l-.13,0a6,6,0,0,0-.93.47l-.11.07a6,6,0,0,0-.86.67l-.05,0,0,0a6,6,0,0,0-.73.85l0,.07a6,6,0,0,0-.54,1l0,0a6,6,0,0,0-.34,1.05v.06a6,6,0,0,0-.12,1s0,.08,0,.12,0,.06,0,.09a6,6,0,0,0,.08.93l0,.13a6,6,0,0,0,.27,1l0,.13a6,6,0,0,0,.46.93l.07.12a6,6,0,0,0,.67.86l0,.05,116,121.31.14.13,0,.06.07.06a6,6,0,0,0,.81.64l.12.07a5.91,5.91,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.08a6,6,0,0,0,1.06.1h0a6,6,0,0,0,1.05-.1h.08a6,6,0,0,0,1-.28l.11,0a5.92,5.92,0,0,0,.91-.46l.12-.07a6,6,0,0,0,.81-.64l.07-.06,0-.06.14-.13,116-121.31,0-.05A6,6,0,0,0,321,157.23ZM207.43,227.5c0,.08-.07.16-.12.25l-.22.18C207,227.89,207.2,227.72,207.43,227.5Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 216</title><path d="M253.12,324.12a6,6,0,0,0,.46-.93l0-.13a6,6,0,0,0,.27-1l0-.13A6,6,0,0,0,254,321V89a6,6,0,0,0-.08-.94l0-.13a6,6,0,0,0-.27-1l0-.13a6,6,0,0,0-.46-.93l-.07-.12a6,6,0,0,0-.67-.86l0-.05,0,0a6,6,0,0,0-.85-.73l-.07,0a6,6,0,0,0-1-.54l-.05,0a5.9,5.9,0,0,0-1-.34l-.06,0a6.06,6.06,0,0,0-1-.12H248a6,6,0,0,0-.93.08l-.13,0a6,6,0,0,0-1,.27l-.13,0a6,6,0,0,0-.93.47l-.11.07a6,6,0,0,0-.86.67l-.05,0-121.31,116-.09.1-.1.09c-.11.12-.19.25-.29.37a6.12,6.12,0,0,0-.38.48c-.11.17-.19.34-.28.51a5.89,5.89,0,0,0-.26.53c-.07.18-.12.37-.18.56s-.11.37-.15.55,0,.38-.07.57,0,.38,0,.57,0,.38,0,.57,0,.38.07.57.1.37.15.55.1.37.18.56.17.35.26.53.18.35.28.51a6.12,6.12,0,0,0,.38.48c.1.12.18.26.29.37l.14.13,0,.06,121.31,116,.05,0a6.06,6.06,0,0,0,.83.65l.11.07a6,6,0,0,0,.91.46l.11,0a5.93,5.93,0,0,0,1,.28h.09a6,6,0,0,0,1,.1h0l.57,0,.36-.05.22,0,.41-.1.17,0,.41-.15.16-.06.41-.2.3-.17.32-.2.2-.15.28-.22.17-.16.27-.26,0,0,0-.05a6,6,0,0,0,.67-.86ZM174.5,212.43l-.25-.12-.18-.22C174.11,212,174.28,212.2,174.5,212.43Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 25</title><path d="M281.59,201.78c.09-.17.19-.35.26-.53s.12-.37.18-.56.11-.36.15-.55,0-.38.07-.57,0-.38,0-.57,0-.38,0-.57,0-.38-.07-.57-.1-.37-.15-.55-.1-.37-.18-.56a5.89,5.89,0,0,0-.26-.53c-.09-.17-.18-.35-.28-.51a6.12,6.12,0,0,0-.38-.48c-.1-.12-.18-.26-.29-.37l-.1-.09-.09-.1-121.31-116-.05,0a6,6,0,0,0-.86-.67l-.12-.07a6,6,0,0,0-.93-.46l-.13,0a5.91,5.91,0,0,0-1-.27l-.14,0A6,6,0,0,0,155,77h-.21a6,6,0,0,0-1,.12l-.06,0a6,6,0,0,0-1,.34l-.05,0a6,6,0,0,0-1,.54l-.06,0a6,6,0,0,0-.85.73l0,0,0,.05a6,6,0,0,0-.67.86l-.07.12a6,6,0,0,0-.46.93l0,.13a6,6,0,0,0-.27,1l0,.13A6,6,0,0,0,149,83V315a6,6,0,0,0,.08.94l0,.13a6,6,0,0,0,.27,1l0,.13a6,6,0,0,0,.46.93l.07.12a6,6,0,0,0,.67.86l0,.05,0,0,.27.26.17.16.28.22.2.15.31.19.34.19.39.19.17.06.39.14.18,0,.4.1.23,0,.36.05.57,0h0a6,6,0,0,0,1-.1h.09a6,6,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.83-.65l.05,0,121.31-116,0-.06.14-.13c.11-.12.19-.25.29-.37a6.12,6.12,0,0,0,.38-.48C281.42,202.13,281.5,202,281.59,201.78ZM228.5,191.57l.25.12.18.22C228.89,192,228.72,191.8,228.5,191.57Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 26</title><path d="M324.49,262.42l0,0a6,6,0,0,0,.34-1.05v-.06a6,6,0,0,0,.12-1s0-.08,0-.12,0-.06,0-.09a6,6,0,0,0-.08-.93l0-.13a6,6,0,0,0-.27-1l0-.13a6,6,0,0,0-.46-.93l-.07-.12a6,6,0,0,0-.67-.86l0-.05-116-121.31-.1-.09-.09-.1c-.12-.11-.25-.19-.37-.29a6.06,6.06,0,0,0-.48-.38,5.73,5.73,0,0,0-.51-.28c-.17-.09-.35-.19-.53-.26a5.83,5.83,0,0,0-.56-.18c-.18-.05-.36-.11-.55-.15a5.79,5.79,0,0,0-.58-.07c-.19,0-.37,0-.56,0s-.39,0-.58,0-.38,0-.57.07-.38.1-.56.15a5.72,5.72,0,0,0-.55.18,6,6,0,0,0-.54.27c-.17.09-.34.17-.5.28a6.05,6.05,0,0,0-.49.38c-.12.1-.25.18-.37.29l-.09.1-.1.09-116,121.31,0,.05a6,6,0,0,0-.67.86l-.07.12a6,6,0,0,0-.46.93l0,.13a6,6,0,0,0-.27,1l0,.13A6,6,0,0,0,81,260s0,.06,0,.09,0,.08,0,.12a6,6,0,0,0,.12,1v.06a6,6,0,0,0,.34,1.05l0,0a6,6,0,0,0,.54,1l0,.07a6,6,0,0,0,.73.85l0,0,.05,0a6.05,6.05,0,0,0,.83.65l.11.07a6,6,0,0,0,.91.46l.11,0a5.93,5.93,0,0,0,1,.28h.09a6,6,0,0,0,1,.1H319a6,6,0,0,0,1-.1h.09a6,6,0,0,0,1-.28l.11,0a5.92,5.92,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.83-.65l.05,0,0,0a6,6,0,0,0,.73-.85l0-.07A6,6,0,0,0,324.49,262.42ZM195.57,186.5c0-.08.07-.16.12-.25l.22-.18C196,186.11,195.8,186.28,195.57,186.5Z"/></svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 22</title><path d="M148,199,264.8,87.34a6,6,0,0,0-8.29-8.67l-121.31,116-.09.1-.1.09c-.11.12-.19.25-.29.37a6.08,6.08,0,0,0-.38.48,5.86,5.86,0,0,0-.28.51c-.09.17-.19.35-.26.53a5.83,5.83,0,0,0-.18.56c-.05.18-.11.36-.15.55s0,.38-.07.57,0,.38,0,.57,0,.38,0,.57,0,.38.07.57.1.37.15.55a5.83,5.83,0,0,0,.18.56c.07.18.17.35.26.53a5.86,5.86,0,0,0,.28.51,6.08,6.08,0,0,0,.38.48c.1.12.18.26.29.37l.14.13,0,.06,121.31,116a6,6,0,0,0,8.29-8.67Z"/></svg>
|
Before Width: | Height: | Size: 558 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 51</title><path d="M101.19,177a6,6,0,0,1-6-6,51.7,51.7,0,0,1,51.65-51.65H296.77a6,6,0,1,1,0,12H146.83A39.69,39.69,0,0,0,107.19,171,6,6,0,0,1,101.19,177Z"/><path d="M253.89,281.14H104a6,6,0,0,1,0-12H253.89a39.69,39.69,0,0,0,39.65-39.65,6,6,0,1,1,12,0A51.7,51.7,0,0,1,253.89,281.14Z"/><path d="M330.5,231.62H269.13a6,6,0,0,1,0-12H330.5a6,6,0,0,1,0,12Z"/><path d="M330.5,231.62a6,6,0,0,1-4.34-1.85l-30.69-32.09a6,6,0,0,1,8.67-8.29l30.69,32.09a6,6,0,0,1-4.34,10.15Z"/><path d="M269.13,231.62a6,6,0,0,1-4.34-10.15l30.69-32.09a6,6,0,0,1,8.67,8.29l-30.69,32.09A6,6,0,0,1,269.13,231.62Z"/><path d="M131.87,177.84H70.5a6,6,0,0,1,0-12h61.37a6,6,0,0,1,0,12Z"/><path d="M101.19,209.93a6,6,0,0,1-4.34-1.85L66.16,176a6,6,0,0,1,8.67-8.29l30.69,32.09a6,6,0,0,1-4.34,10.15Z"/><path d="M101.19,209.93a6,6,0,0,1-4.34-10.15l30.69-32.09a6,6,0,0,1,8.67,8.29l-30.69,32.09A6,6,0,0,1,101.19,209.93Z"/></svg>
|
Before Width: | Height: | Size: 1001 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 21</title><path d="M265.94,203.78c.09-.17.19-.35.26-.53s.12-.37.18-.56.11-.36.15-.55,0-.38.07-.57,0-.38,0-.57,0-.38,0-.57,0-.38-.07-.57-.1-.37-.15-.55-.1-.37-.18-.56-.17-.35-.26-.53a5.82,5.82,0,0,0-.28-.51,6.08,6.08,0,0,0-.38-.48c-.1-.12-.18-.26-.29-.37l-.1-.09-.09-.1-121.31-116a6,6,0,0,0-8.29,8.67L252,201,135.2,312.66a6,6,0,1,0,8.29,8.67l121.31-116,0-.06.14-.13c.11-.12.19-.25.29-.37a6.08,6.08,0,0,0,.38-.48A5.82,5.82,0,0,0,265.94,203.78Z"/></svg>
|
Before Width: | Height: | Size: 570 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 15</title><path d="M272.51,237.86a6,6,0,0,0-8.48.19l-59.28,62V85a6,6,0,0,0-12,0V300l-59.28-62a6,6,0,1,0-8.67,8.29l69.61,72.8.14.13,0,.06.07.05a6,6,0,0,0,.82.64l.12.07a5.93,5.93,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.08a6,6,0,0,0,1.06.1h0a6.07,6.07,0,0,0,1.05-.1h.08a5.93,5.93,0,0,0,1-.28l.11,0a6,6,0,0,0,.91-.46L202,320a6,6,0,0,0,.82-.64l.07-.05,0-.06.14-.13,69.61-72.8A6,6,0,0,0,272.51,237.86Z"/></svg>
|
Before Width: | Height: | Size: 520 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 12</title><path d="M321.75,194h-215l62-59.28A6,6,0,1,0,160.4,126L87.6,195.66l-.09.1-.1.09c-.11.11-.19.25-.29.37a6.05,6.05,0,0,0-.38.49c-.11.16-.19.34-.28.51a5.89,5.89,0,0,0-.26.53c-.07.18-.12.37-.18.55s-.11.37-.15.55,0,.38-.07.57,0,.38,0,.57,0,.38,0,.57,0,.38.07.57.1.37.15.55.1.37.18.55a5.89,5.89,0,0,0,.26.53c.09.17.17.34.28.51a6.05,6.05,0,0,0,.38.49c.1.12.18.25.29.37l.14.13,0,.06L160.4,274a6,6,0,0,0,8.29-8.67l-62-59.28h215a6,6,0,0,0,0-12Z"/></svg>
|
Before Width: | Height: | Size: 572 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 13</title><path d="M328,202.78a5.89,5.89,0,0,0,.26-.53c.07-.18.12-.37.18-.55s.11-.37.15-.55,0-.38.07-.57,0-.38,0-.57,0-.38,0-.57,0-.38-.07-.57-.1-.37-.15-.55-.1-.37-.18-.55a5.89,5.89,0,0,0-.26-.53c-.09-.17-.17-.34-.28-.51a6.05,6.05,0,0,0-.38-.49c-.1-.12-.18-.25-.29-.37l-.1-.09-.09-.1L254.1,126a6,6,0,1,0-8.29,8.67l62,59.28h-215a6,6,0,0,0,0,12h215l-62,59.28A6,6,0,1,0,254.1,274l72.8-69.61,0-.06.14-.13c.11-.11.19-.25.29-.37a6.05,6.05,0,0,0,.38-.49C327.86,203.13,327.95,203,328,202.78Z"/></svg>
|
Before Width: | Height: | Size: 613 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 14</title><path d="M278.7,170.65l-69.61-72.8-.1-.09-.09-.1c-.11-.11-.25-.19-.37-.29A5.93,5.93,0,0,0,208,97a5.69,5.69,0,0,0-.51-.28,3.89,3.89,0,0,0-1.09-.44c-.18-.05-.36-.11-.55-.15s-.38-.05-.58-.07-.38,0-.57,0-.38,0-.57,0-.38,0-.57.07-.37.1-.56.15-.37.1-.55.18a13.13,13.13,0,0,0-1,.55,5.92,5.92,0,0,0-.49.38c-.12.1-.25.18-.37.29l-.09.1-.1.09-69.61,72.8a6,6,0,1,0,8.67,8.29l59.28-62V332a6,6,0,0,0,12,0V117l59.28,62a6,6,0,1,0,8.67-8.29Z"/></svg>
|
Before Width: | Height: | Size: 563 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 23</title><path d="M320.34,233.51l-116-121.31-.1-.09-.09-.1c-.12-.11-.25-.19-.37-.29a6.12,6.12,0,0,0-.48-.38,5.83,5.83,0,0,0-.51-.28c-.17-.09-.35-.19-.53-.26s-.37-.12-.56-.18-.36-.11-.55-.15-.38,0-.58-.07-.38,0-.57,0-.38,0-.57,0-.38,0-.57.07-.37.1-.56.15-.37.1-.55.18-.36.17-.53.26-.34.17-.51.28a6.1,6.1,0,0,0-.48.38c-.12.1-.26.18-.37.29l-.09.1-.1.09-116,121.31a6,6,0,0,0,8.67,8.29L200,125,311.66,241.8a6,6,0,1,0,8.67-8.29Z"/></svg>
|
Before Width: | Height: | Size: 552 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 5</title><path d="M278.63,69.48H124.32a18,18,0,0,0-18,18v226a18,18,0,0,0,18,18H278.63a18,18,0,0,0,18-18v-226A18,18,0,0,0,278.63,69.48Zm6,244a6,6,0,0,1-6,6H124.32a6,6,0,0,1-6-6v-226a6,6,0,0,1,6-6H278.63a6,6,0,0,1,6,6Z"/><path d="M201.7,167a33.42,33.42,0,1,0-33.42-33.42A33.45,33.45,0,0,0,201.7,167Zm0-54.83a21.42,21.42,0,1,1-21.42,21.42A21.44,21.44,0,0,1,201.7,112.16Z"/><path d="M201.7,184.13a58.18,58.18,0,1,0,58.18,58.18A58.24,58.24,0,0,0,201.7,184.13Zm0,104.36a46.18,46.18,0,1,1,46.18-46.18A46.23,46.23,0,0,1,201.7,288.49Z"/><path d="M201.7,211.32a31,31,0,1,0,31,31A31,31,0,0,0,201.7,211.32Zm0,50a19,19,0,1,1,19-19A19,19,0,0,1,201.7,261.3Z"/><path d="M88.23,286.21a41.32,41.32,0,0,1-.86-65,6,6,0,1,0-7.54-9.34,53.32,53.32,0,0,0,1.1,83.86,6,6,0,1,0,7.29-9.54Z"/><path d="M70.17,302.07a61.3,61.3,0,0,1-1.27-96.41,6,6,0,1,0-7.54-9.34,73.3,73.3,0,0,0,1.52,115.28,6,6,0,1,0,7.29-9.53Z"/><path d="M320.45,211.88a6,6,0,1,0-7.54,9.34,41.32,41.32,0,0,1-.86,65,6,6,0,0,0,7.29,9.54,53.32,53.32,0,0,0,1.11-83.86Z"/><path d="M338.92,196.33a6,6,0,1,0-7.54,9.34,61.3,61.3,0,0,1-1.27,96.41,6,6,0,0,0,7.29,9.53,73.3,73.3,0,0,0,1.52-115.28Z"/><circle cx="265.83" cy="99.45" r="3.3"/><circle cx="136.24" cy="99.45" r="3.3"/><circle cx="265.83" cy="300.22" r="3.3"/><circle cx="136.24" cy="300.22" r="3.29"/></svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 23</title><path d="M350.5,292.32H319.61V140.24c0-7-5.25-12.7-11.71-12.7H266c-6.46,0-11.71,5.7-11.71,12.7V292.32H242.41V186c0-7-5.25-12.7-11.71-12.7H188.84c-6.46,0-11.71,5.7-11.71,12.7V292.32H165.22V231.44c0-7-5.25-12.7-11.71-12.7H111.64c-6.46,0-11.71,5.7-11.71,12.7v60.88H60.5a6,6,0,0,0,0,12h290a6,6,0,0,0,0-12ZM266.32,140.24a1.54,1.54,0,0,1,.15-.7h41a1.54,1.54,0,0,1,.15.7V292.32H266.32ZM189.13,186a1.54,1.54,0,0,1,.15-.7h41a1.54,1.54,0,0,1,.15.7V292.32H189.13Zm-77.2,45.47a1.54,1.54,0,0,1,.15-.7h41a1.54,1.54,0,0,1,.15.7v60.88H111.93Z"/><path d="M99.15,206.83a6,6,0,0,0,4-1.5l71.55-63,11.39,13.93a6.21,6.21,0,0,0,8.92.87l70.28-61.93v20.12a6,6,0,1,0,12,0V84a8.93,8.93,0,0,0-8.92-8.92H237.09a6,6,0,1,0,0,12h19.17l-64.64,57L180.5,130.47a6,6,0,0,0-9.06-1.33l-76.26,67.2a6,6,0,0,0,4,10.5Z"/></svg>
|
Before Width: | Height: | Size: 913 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 18</title><path d="M316.16,99.48a6,6,0,0,0-8.44.83L172,265.45,97,171.93a6,6,0,1,0-9.36,7.5L166,277.19a27,27,0,0,1,2.18,2.32,6,6,0,0,0,8.44-.83L317,107.93A6,6,0,0,0,316.16,99.48Z"/></svg>
|
Before Width: | Height: | Size: 306 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 30</title><path d="M264.15,164.29a6,6,0,0,0-8.48.19L200,222.69l-55.66-58.21a6,6,0,0,0-8.67,8.29l60,62.75.14.13,0,.05.07.05a6,6,0,0,0,.82.64l.12.07a6,6,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.08a6,6,0,0,0,1.05.1h0a6.07,6.07,0,0,0,1.05-.1h.08a6,6,0,0,0,1-.28l.11,0a6,6,0,0,0,.91-.46l.12-.07a6,6,0,0,0,.82-.64l.07-.05,0-.05.14-.13,60-62.75A6,6,0,0,0,264.15,164.29Z"/></svg>
|
Before Width: | Height: | Size: 486 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 31</title><path d="M265,173.23l.07-.12a6,6,0,0,0,.46-.93l0-.13a5.91,5.91,0,0,0,.27-1l0-.14A6,6,0,0,0,266,170s0-.06,0-.09,0-.08,0-.12a6,6,0,0,0-.12-1l0-.06a5.92,5.92,0,0,0-.34-1l0-.05a6,6,0,0,0-.54-1l0-.07a6,6,0,0,0-.73-.85l0,0-.05,0a6,6,0,0,0-.86-.67l-.12-.07a6,6,0,0,0-.93-.46l-.13,0a5.91,5.91,0,0,0-1-.27l-.14,0A6.05,6.05,0,0,0,260,164H140a6,6,0,0,0-.93.08l-.13,0a6,6,0,0,0-1,.27l-.13,0a6,6,0,0,0-.93.46l-.11.07a6,6,0,0,0-.86.67l-.05,0,0,0a6,6,0,0,0-.73.85l0,.07a6,6,0,0,0-.54,1l0,.05a5.92,5.92,0,0,0-.34,1l0,.06a6,6,0,0,0-.12,1s0,.08,0,.12,0,.06,0,.09a6,6,0,0,0,.08.93l0,.14a5.91,5.91,0,0,0,.27,1l0,.13a6,6,0,0,0,.46.93l.07.12a6,6,0,0,0,.67.86l0,.05,60,62.75.14.13,0,.06.07.05a6,6,0,0,0,.81.64l.12.07a5.91,5.91,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.08a6,6,0,0,0,1.06.1h0a6,6,0,0,0,1.06-.1h.08a6,6,0,0,0,1-.28l.11,0a5.94,5.94,0,0,0,.91-.46l.12-.07a6,6,0,0,0,.82-.64l.07-.05,0-.06.14-.13,60-62.75,0-.05A6,6,0,0,0,265,173.23Z"/></svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 27</title><path d="M177.31,207l58.21-55.66a6,6,0,0,0-8.29-8.67l-62.75,60-.09.1-.1.09c-.11.12-.19.25-.29.37a6.09,6.09,0,0,0-.38.49c-.11.16-.19.34-.28.51s-.19.35-.26.53-.12.37-.18.55-.11.37-.15.55,0,.38-.07.57,0,.38,0,.57,0,.38,0,.57,0,.38.07.57.1.37.15.55.1.37.18.55.17.35.26.53.17.34.28.51a6.09,6.09,0,0,0,.38.49c.1.12.18.25.29.37l.14.13,0,.06,62.75,60a6,6,0,0,0,8.29-8.67Z"/></svg>
|
Before Width: | Height: | Size: 502 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 224</title><path d="M237.12,274.12a6,6,0,0,0,.46-.93l0-.13a6,6,0,0,0,.27-1l0-.13A6,6,0,0,0,238,271V151a6,6,0,0,0-.08-.93l0-.13a6,6,0,0,0-.27-1l0-.13a6,6,0,0,0-.46-.93l-.07-.12a6,6,0,0,0-.67-.86l0-.05,0,0a6,6,0,0,0-.85-.73l-.07,0a6,6,0,0,0-1-.54l0,0a6,6,0,0,0-1.05-.34h-.05a6,6,0,0,0-1.05-.12H232a6,6,0,0,0-.94.08l-.13,0a6,6,0,0,0-1,.27l-.12,0a5.93,5.93,0,0,0-.93.47l-.11.07a6,6,0,0,0-.86.67l-.05,0-62.75,60-.09.1-.1.09c-.11.12-.19.25-.29.37s-.27.31-.38.48a13.24,13.24,0,0,0-.55,1c-.07.18-.12.37-.18.56s-.11.37-.15.55,0,.38-.07.57,0,.38,0,.57,0,.38,0,.57,0,.38.07.57.1.37.15.55.1.37.18.56.17.35.26.53a5.85,5.85,0,0,0,.28.51c.11.17.25.32.38.48s.18.26.29.37l.14.13,0,.06,62.75,60,.05,0a6,6,0,0,0,.84.66l.11.07a5.91,5.91,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.09a6,6,0,0,0,1,.1h0l.57,0,.36-.05.23,0,.4-.1.18,0,.39-.14.17-.06.38-.18.36-.2.29-.18.21-.16.27-.21.18-.16.27-.25,0,0,0-.05a6,6,0,0,0,.67-.86Z"/></svg>
|
Before Width: | Height: | Size: 1014 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 28</title><path d="M236.66,212.78c.09-.17.19-.35.26-.53s.12-.37.18-.56.11-.36.15-.55,0-.38.07-.58,0-.38,0-.57,0-.38,0-.57,0-.38-.07-.58-.1-.37-.15-.55-.1-.37-.18-.56-.17-.35-.26-.53a5.8,5.8,0,0,0-.28-.51,6.08,6.08,0,0,0-.38-.48c-.1-.12-.18-.26-.29-.37l-.1-.09-.09-.1-62.75-60a6,6,0,0,0-8.29,8.67L222.69,210l-58.21,55.66a6,6,0,1,0,8.29,8.67l62.75-60,0-.06.14-.13c.11-.12.19-.25.29-.37a6.08,6.08,0,0,0,.38-.48A5.8,5.8,0,0,0,236.66,212.78Z"/></svg>
|
Before Width: | Height: | Size: 565 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 32</title><path d="M237.29,202.78c.09-.17.19-.35.26-.53s.12-.37.18-.56.11-.36.15-.55,0-.38.07-.57,0-.38,0-.57,0-.38,0-.57,0-.38-.07-.57-.1-.37-.15-.55-.1-.37-.18-.56a13.24,13.24,0,0,0-.55-1c-.11-.17-.25-.32-.38-.48s-.18-.26-.29-.37l-.1-.09-.09-.1-62.75-60-.05,0a6,6,0,0,0-.86-.67l-.12-.07a5.94,5.94,0,0,0-.93-.46l-.13,0a5.93,5.93,0,0,0-1-.27l-.14,0a6,6,0,0,0-.93-.08H169a6,6,0,0,0-1,.12l-.06,0a6,6,0,0,0-1,.34l-.05,0a6,6,0,0,0-1,.54l-.07.05a6,6,0,0,0-.85.73l0,0,0,.05a6,6,0,0,0-.67.86l-.07.12a6,6,0,0,0-.46.93l0,.13a6,6,0,0,0-.27,1l0,.13a6,6,0,0,0-.08.93V260a6,6,0,0,0,.08.93l0,.13a6,6,0,0,0,.27,1l0,.13a6,6,0,0,0,.46.93l.07.12a6,6,0,0,0,.67.86l0,.05,0,0,.27.25.18.16.27.21.21.16.27.17.4.22.36.17.18.07.38.14.19,0,.39.1.24,0,.35.05.57,0h0a6,6,0,0,0,1-.1h.09a5.91,5.91,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.84-.66l.05,0,62.75-60,0-.06.14-.13c.11-.12.19-.25.29-.37s.27-.31.38-.48A5.85,5.85,0,0,0,237.29,202.78Z"/></svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 29</title><path d="M264.34,227.23l-60-62.75-.1-.09-.09-.1c-.12-.11-.25-.19-.37-.29a6,6,0,0,0-.49-.38c-.16-.11-.34-.19-.51-.28s-.35-.19-.53-.26-.37-.12-.55-.18-.37-.11-.55-.15-.38,0-.57-.07-.38,0-.57,0-.38,0-.56,0-.39,0-.58.07-.37.1-.55.15a5.87,5.87,0,0,0-.56.18c-.18.07-.35.17-.52.26s-.35.18-.51.29a6,6,0,0,0-.48.38c-.12.1-.25.18-.37.29l-.09.1-.1.09-60,62.75a6,6,0,0,0,8.67,8.29L200,177.31l55.66,58.21a6,6,0,0,0,8.67-8.29Z"/></svg>
|
Before Width: | Height: | Size: 551 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 33</title><path d="M266.49,234.42l0-.05a5.92,5.92,0,0,0,.34-1l0-.06a6,6,0,0,0,.12-1s0-.08,0-.12,0-.06,0-.09a6,6,0,0,0-.08-.93l0-.14a5.91,5.91,0,0,0-.27-1l0-.13a6,6,0,0,0-.46-.93l-.07-.12a6,6,0,0,0-.67-.86l0-.05-60-62.75-.1-.09-.09-.1c-.12-.11-.25-.19-.37-.29a6,6,0,0,0-.48-.38c-.17-.11-.34-.19-.51-.28s-.35-.19-.53-.26a5.8,5.8,0,0,0-.56-.18c-.18-.05-.36-.11-.55-.15s-.38,0-.58-.07-.38,0-.57,0-.38,0-.57,0-.38,0-.57.07-.37.1-.55.15-.37.1-.55.18-.35.17-.53.26a5.71,5.71,0,0,0-.51.28,6,6,0,0,0-.49.38c-.12.1-.25.18-.37.29l-.09.1-.1.09-60,62.75,0,.05a6,6,0,0,0-.67.86l-.07.12a6,6,0,0,0-.46.93l0,.13a5.91,5.91,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93s0,.06,0,.09,0,.08,0,.12a6,6,0,0,0,.12,1l0,.06a5.92,5.92,0,0,0,.34,1l0,.05a6,6,0,0,0,.54,1l0,.07a6.05,6.05,0,0,0,.73.85l0,0,.05,0a6,6,0,0,0,.83.66l.11.07a6,6,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.09a6,6,0,0,0,1,.1H261a6,6,0,0,0,1.05-.1h.09a6,6,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.84-.66l.05,0,0,0a6,6,0,0,0,.73-.85l0-.07A6,6,0,0,0,266.49,234.42Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 11</title><path d="M215.52,202.95l55-55a6,6,0,0,0-8.49-8.49l-55,55-55-55a6,6,0,0,0-8.49,8.49l55,55-55.11,55.11a6,6,0,0,0,8.49,8.49L207,211.43l55.11,55.11a6,6,0,0,0,8.49-8.49Z"/><path d="M298.92,111.08A130,130,0,1,0,337,203,129.15,129.15,0,0,0,298.92,111.08Zm-8.49,175.36A118,118,0,1,1,325,203,117.23,117.23,0,0,1,290.44,286.44Z"/></svg>
|
Before Width: | Height: | Size: 456 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 202</title><path d="M287.08,278.57,213.49,205,287,131.5a6,6,0,0,0-8.49-8.49L205,196.49,131.52,123A6,6,0,0,0,123,131.5L196.51,205l-73.6,73.6a6,6,0,1,0,8.49,8.49l73.6-73.6,73.6,73.6a6,6,0,0,0,8.49-8.49Z"/></svg>
|
Before Width: | Height: | Size: 320 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 4</title><path d="M315.19,209.62c.12-1.85.19-3.71.19-5.56a82,82,0,0,0-143.47-54.29,64.78,64.78,0,0,0-79.09,58.1A59.05,59.05,0,0,0,103.56,325H297.44a59.05,59.05,0,0,0,17.75-115.38ZM297.44,313H103.56a47.06,47.06,0,0,1-4.81-93.87,6.74,6.74,0,0,0,5.85-6.25,52.76,52.76,0,0,1,104-12.46,6,6,0,1,0,11.66-2.82A64.5,64.5,0,0,0,184.41,154a70,70,0,0,1,119,50.06,71,71,0,0,1-.61,9.27,6,6,0,0,0,5.16,6.74h0A47.05,47.05,0,0,1,297.44,313Z"/></svg>
|
Before Width: | Height: | Size: 551 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 6</title><path d="M338.84,212.84c-1-19-5.18-33.35-13.16-45.28-16.38-24.51-46-36.39-83.39-33.57v-1.84a11.94,11.94,0,0,0-3.16-8.07l3.5-16c0-.07,0-.13,0-.2s0-.24.06-.36,0-.16,0-.24,0-.23,0-.35,0-.18,0-.27,0-.21,0-.31,0-.2,0-.3,0-.18,0-.27,0-.21-.07-.32,0-.16-.06-.25-.06-.21-.1-.31l-.08-.24c0-.1-.08-.2-.12-.29l-.11-.24-.14-.26-.14-.24-.16-.23-.17-.24-.17-.21-.2-.24-.19-.19-.23-.21-.22-.18-.23-.18-.26-.18-.23-.14-.31-.17-.22-.11-.34-.14-.19-.08L104.17,54.43l-.14,0-.32-.09-.26-.06-.32-.06-.28,0-.3,0H102l-.33,0-.24,0-.36.06-.12,0-.11,0-.34.09-.25.08-.28.11-.28.12-.23.12-.29.16-.21.13-.27.18-.21.17-.23.19-.23.21-.18.18-.22.26-.15.18-.2.27-.14.21-.15.27-.14.26-.11.24c0,.11-.09.22-.13.33l0,.1,0,.11c0,.12-.07.24-.11.36l-.05.22c0,.12,0,.23-.06.35s0,.17,0,.25,0,.21,0,.32,0,.19,0,.28,0,.19,0,.29,0,.21,0,.32,0,.17,0,.26,0,.23.06.34,0,.09,0,.13l13.3,61.17a12,12,0,0,0-4.85,9.6v15.58a11.88,11.88,0,0,0,1,4.83,108.76,108.76,0,1,0,176.87,84.78c0-31.09-15.91-63.47-41.24-85.25a11.87,11.87,0,0,0,.84-4.36V146c33.36-2.74,59.43,7.27,73.42,28.2,6.72,10.06,10.27,22.54,11.15,39.25a6,6,0,0,0,6,5.68h.32A6,6,0,0,0,338.84,212.84ZM227.71,120.15H121.4L110.34,69.27l119.43,41.45ZM116.83,147.74l0,0h0V132.18s0,0,0,0H230.29v15.54s0,0,0,0Zm153.87,89.6A96.76,96.76,0,1,1,116.2,159.7c.2,0,.39,0,.59,0h113.5a11.92,11.92,0,0,0,1.46-.1C255.28,179,270.69,209.36,270.69,237.33Z"/><path d="M218.81,216.28c-10.65,1-15.47,8.63-19,14.19-3.42,5.39-5.41,8.23-10,8.67s-7.07-2-11.45-6.62-10.69-11.36-21.33-10.34-15.47,8.63-19,14.19c-3.41,5.39-5.41,8.23-10,8.67s-7.07-2-11.45-6.62S106,227.06,95.31,228.08a6,6,0,0,0-5.4,6.54s0,.09,0,.13a6,6,0,0,0,0,.62c.88,41.79,38.38,75.11,84,75.11l2,0a89,89,0,0,0,56.29-21.14c15.33-13.23,24.64-31,26.24-50.12a6,6,0,0,0-8.52-5.93c-3.59-.24-6-2.59-9.79-6.65C235.63,221.83,229.46,215.26,218.81,216.28Zm26.77,28.4c-5.91,30.36-34.8,53-69.92,53.79-37.47.79-69-24.24-73.27-56.94a35.06,35.06,0,0,1,5.5,5.11c4.19,4.46,9.83,10.45,19.16,10.45.7,0,1.43,0,2.17-.1,10.65-1,15.47-8.63,19-14.19,3.41-5.39,5.41-8.23,10-8.67s7.07,2,11.45,6.62,10.7,11.36,21.33,10.34,15.47-8.63,19-14.19c3.42-5.39,5.41-8.23,10-8.67s7.08,2,11.45,6.62C234.79,238.45,239.12,243,245.59,244.68Z"/></svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:#fff;}</style></defs><title>collapse</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M28,0H4A4,4,0,0,0,0,4V28a4,4,0,0,0,4,4H28a4,4,0,0,0,4-4V4A4,4,0,0,0,28,0Zm2,28a2,2,0,0,1-2,2H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H28a2,2,0,0,1,2,2Z"/><polygon class="cls-1" points="17.93 14.11 24.92 14.11 24.92 12.12 21.26 12.12 26.03 7.35 24.62 5.94 19.88 10.68 19.88 7.08 17.89 7.08 17.89 14.07 17.93 14.07 17.93 14.11"/><polygon class="cls-1" points="14.07 17.89 7.08 17.89 7.08 19.88 10.74 19.88 5.97 24.65 7.38 26.06 12.12 21.32 12.12 24.92 14.11 24.92 14.11 17.93 14.07 17.93 14.07 17.89"/><polygon class="cls-1" points="24.92 19.88 24.92 17.89 17.93 17.89 17.93 17.93 17.89 17.93 17.89 24.92 19.88 24.92 19.88 21.26 24.65 26.03 26.06 24.62 21.32 19.88 24.92 19.88"/><polygon class="cls-1" points="12.12 10.74 7.35 5.97 5.94 7.38 10.68 12.12 7.08 12.12 7.08 14.11 14.07 14.11 14.07 14.07 14.11 14.07 14.11 7.08 12.12 7.08 12.12 10.74"/></g></g></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 21</title><path d="M288.69,150.53h0a6,6,0,0,0-6,6L282.8,316c0,4.24-3.82,7.69-8.51,7.69H100c-4.69,0-8.51-3.45-8.51-7.69V95.59c0-4.24,3.82-7.69,8.51-7.69L244,87.73a6,6,0,0,0,0-12h0L100,75.9c-11.31,0-20.51,8.83-20.51,19.69V316c0,10.86,9.2,19.69,20.51,19.69H274.29c11.31,0,20.51-8.83,20.51-19.7l-.12-159.51A6,6,0,0,0,288.69,150.53Z"/><path d="M256,228H118.89a6,6,0,1,0,0,12H256a6,6,0,0,0,0-12Z"/><path d="M256,258.06H118.89a6,6,0,1,0,0,12H256a6,6,0,0,0,0-12Z"/><path d="M256,288.11H118.89a6,6,0,1,0,0,12H256a6,6,0,0,0,0-12Z"/><path d="M339.58,70.91l-17-18.5a11.81,11.81,0,0,0-16.66-.69L197.48,151.51a6,6,0,0,0-1.77,5.72l-10.82,28.45a8.88,8.88,0,0,0,2.59,10.27,7.84,7.84,0,0,0,4.85,1.69,8.26,8.26,0,0,0,3.82-1l29.43-9a6,6,0,0,0,6-1.28L338.89,87.57A11.81,11.81,0,0,0,339.58,70.91Zm-141,112.47,5.76-15.15,9.77,10.39Zm28.13-8.88-16.94-18,81.69-75.2,16.77,18.17Zm90.35-83.17L300.32,73.16l13.55-12.47,16.75,18.19Z"/></svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1,32 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="22px" height="28px" viewBox="0 0 22 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>drop-light</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="3.65787572%" x2="50%" y2="100%" id="linearGradient-1">
|
||||
<stop stop-color="#02DCBE" offset="0%"></stop>
|
||||
<stop stop-color="#00DB77" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M12,3 L6.75086713,12.2581463 C5.45470752,14.5428293 5.8667555,17.4316098 7.75411437,19.2790244 C8.92397231,20.4266341 10.4619862,21 12,21 C13.5380138,21 15.0760277,20.4266341 16.2458856,19.2790244 C18.1332445,17.4316098 18.5452925,14.5428293 17.2491329,12.2581463 L12,3 Z" id="path-2"></path>
|
||||
<filter x="-62.5%" y="-41.7%" width="225.0%" height="183.3%" filterUnits="objectBoundingBox" id="filter-3">
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0.858823529 0 0 0 0 0.470588235 0 0 0 0.500396286 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nebular-new-header" transform="translate(-261.000000, -130.000000)">
|
||||
<g id="Page-1" transform="translate(260.000000, 21.000000)">
|
||||
<g id="Group-3" transform="translate(0.000000, 0.811318)">
|
||||
<g id="drop-cosmic-copy" transform="translate(0.000000, 110.188682)">
|
||||
<g id="Fill-1">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
|
||||
<use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="26px" height="25px" viewBox="0 0 26 25" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>drops-light</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="3.65787572%" x2="50%" y2="100%" id="linearGradient-1">
|
||||
<stop stop-color="#02DCBE" offset="0%"></stop>
|
||||
<stop stop-color="#00DB77" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nebular-new-header" transform="translate(-397.000000, -322.000000)" fill="url(#linearGradient-1)">
|
||||
<g id="Group-2" transform="translate(386.000000, 310.000000)">
|
||||
<g id="drops-copy-4" transform="translate(8.000000, 8.000000)">
|
||||
<path d="M10.9159364,4.59090909 L3.99048182,17.052 C2.28039091,20.1270909 2.82402727,24.0152727 5.31411818,26.5018182 C6.85757273,28.0464545 8.88675455,28.8181818 10.9159364,28.8181818 C12.9451182,28.8181818 14.9743,28.0464545 16.5177545,26.5018182 C19.0078455,24.0152727 19.5514818,20.1270909 17.8413909,17.052 L10.9159364,4.59090909 Z" id="Fill-1"></path>
|
||||
<path d="M28.2530909,10.9760364 L24.5811818,4.37085455 L20.9092727,10.9760364 C20.004,12.6069455 20.2911818,14.6680364 21.6112727,15.9869455 C22.4042727,16.7799455 23.4584545,17.2172182 24.5811818,17.2172182 C25.7027273,17.2172182 26.7569091,16.7799455 27.5510909,15.9869455 C28.87,14.6680364 29.1583636,12.6069455 28.2530909,10.9760364" id="Fill-4"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24.5 25" style="enable-background:new 0 0 24.5 25;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{opacity:0;fill:#FFFFFF;}
|
||||
.st1{fill:#202020;}
|
||||
</style>
|
||||
<title>e-commerce</title>
|
||||
<g id="Layer_2">
|
||||
<g id="Layer_3">
|
||||
<polyline class="st0" points="0,0.5 24,0.5 24,24.5 0,24.5 "/>
|
||||
<path class="st1" d="M22,6c-0.1,0-0.3-0.1-0.4-0.2L18.5,2h-13L2.4,5.8C2.2,6,1.9,6.1,1.7,5.9C1.5,5.7,1.4,5.4,1.6,5.2l3.3-4
|
||||
C5,1,5.2,1,5.3,1h13.5c0.2,0,0.3,0.1,0.4,0.2l3.2,4c0.2,0.2,0.1,0.5-0.1,0.7C22.2,6,22.1,6,22,6z"/>
|
||||
<path class="st1" d="M20,24H4c-1.4,0-2.5-1.1-2.5-2.5v-16C1.5,5.2,1.7,5,2,5h20c0.3,0,0.5,0.2,0.5,0.5v16C22.5,22.9,21.4,24,20,24
|
||||
z M2.5,6v15.5C2.5,22.3,3.2,23,4,23h16c0.8,0,1.5-0.7,1.5-1.5V6H2.5z"/>
|
||||
<path class="st1" d="M12,15c-2.5,0-4.5-2-4.5-4.5C7.5,10.2,7.7,10,8,10s0.5,0.2,0.5,0.5c0,1.9,1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5
|
||||
c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5C16.5,13,14.5,15,12,15z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 170</title><path d="M326.86,128.74a15.18,15.18,0,0,0-4-11L295.57,88.15A15.29,15.29,0,0,0,274,87.25L261.81,98.47a18.42,18.42,0,0,0-26.2,24.12L100.41,247a6,6,0,0,0-1.76,5.77L85.37,296.57a10.93,10.93,0,0,0,3.74,12,9.14,9.14,0,0,0,9.47,1l45.56-10.61.05,0a6,6,0,0,0,5.88-1.3L284.15,174.14a18.39,18.39,0,0,0,8.36,2.31h.63a18.43,18.43,0,0,0,16.77-26l12-11.08A15.17,15.17,0,0,0,326.86,128.74ZM112.57,252.14,243.3,131.81l11.15,11.91L125.56,266ZM97.66,297.37l10-32.94,23.6,25.11Zm47-11.13L133.78,274.7,262.65,152.48,275.29,166ZM297.52,162.73h0a6.48,6.48,0,0,1-9.11-.3l-41.21-44a6.45,6.45,0,0,1,.3-9.11,6.38,6.38,0,0,1,4.39-1.72h.22a6.4,6.4,0,0,1,4.49,2l41.21,44a6.48,6.48,0,0,1-.3,9.11Zm16.3-32.21L302.43,141l-32-34.17,11.67-10.74a3.28,3.28,0,0,1,4.63.19L314,125.89a3.28,3.28,0,0,1-.19,4.63Z"/></svg>
|
Before Width: | Height: | Size: 901 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 10</title><path d="M311.71,109.17H102.65a21.49,21.49,0,0,0-21.47,21.47V269.36a21.49,21.49,0,0,0,21.47,21.47H311.71a21.49,21.49,0,0,0,21.47-21.47V130.64A21.49,21.49,0,0,0,311.71,109.17ZM93.18,149l75.76,51.36L93.18,251.7Zm225.16-21.33a8.92,8.92,0,0,1-3.62,10.29L211.65,207.81h0a9.13,9.13,0,0,1-10.3,0L98.28,137.94a9.18,9.18,0,0,1,5.15-16.77H309.57A8.92,8.92,0,0,1,318.34,127.65ZM95.66,272.35a8.92,8.92,0,0,1,3.62-10.29l80.35-54.47,15,10.16a21.07,21.07,0,0,0,23.76,0l16-10.84,81.35,55.15a9.18,9.18,0,0,1-5.15,16.77H104.43A8.92,8.92,0,0,1,95.66,272.35Zm149.4-72.69,76.12-51.6V251.26Z"/></svg>
|
Before Width: | Height: | Size: 708 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:#fff;}</style></defs><title>expand</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M28,0H4A4,4,0,0,0,0,4V28a4,4,0,0,0,4,4H28a4,4,0,0,0,4-4V4A4,4,0,0,0,28,0Zm2,28a2,2,0,0,1-2,2H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H28a2,2,0,0,1,2,2Z"/><polygon class="cls-1" points="25.98 5.94 18.99 5.94 18.99 7.93 22.66 7.93 17.89 12.7 19.3 14.11 24.03 9.38 24.03 12.97 26.03 12.97 26.03 5.99 25.98 5.99 25.98 5.94"/><polygon class="cls-1" points="6.02 26.06 13.01 26.06 13.01 24.07 9.35 24.07 14.11 19.3 12.7 17.89 7.97 22.62 7.97 19.03 5.97 19.03 5.97 26.01 6.02 26.01 6.02 26.06"/><polygon class="cls-1" points="19.03 24.03 19.03 26.03 26.01 26.03 26.01 25.98 26.06 25.98 26.06 18.99 24.07 18.99 24.07 22.66 19.3 17.89 17.89 19.3 22.62 24.03 19.03 24.03"/><polygon class="cls-1" points="7.93 9.35 12.7 14.11 14.11 12.7 9.38 7.97 12.97 7.97 12.97 5.97 5.99 5.97 5.99 6.02 5.94 6.02 5.94 13.01 7.93 13.01 7.93 9.35"/></g></g></svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 4</title><path d="M201.5,7C94.8,7,8,93.8,8,200.5S94.8,394,201.5,394,395,307.2,395,200.5,308.2,7,201.5,7Zm0,375C101.42,382,20,300.58,20,200.5S101.42,19,201.5,19,383,100.42,383,200.5,301.58,382,201.5,382Z"/><path d="M218.16,107.28c-5.92-4.37-12.31-8.9-19.61-12.15a141.47,141.47,0,0,0-14.64-5.36c-5.29-1.57-16.29-4.84-20.09,2.32-2.68,5.05,0,11.24,2,15.76.33.75.63,1.46.79,1.89l.29.79c.68,1.87,1.33,3.63,1.88,5.39a28.79,28.79,0,0,1,1.56,8.35c.23,16.09-12.22,28.61-24.25,40.72-4.26,4.29-8.67,8.72-12.41,13.23-24.52,29.55-26.91,72.49-5.8,104.43a86.6,86.6,0,0,0,52.83,36.59,82.33,82.33,0,0,0,17.94,2,86.61,86.61,0,0,0,42.54-11.34,95.65,95.65,0,0,0,40.76-45.77c11.57-27.26,9.67-58-5.48-88.77C264.15,150.36,242.91,125.56,218.16,107.28Zm-19,101.53h0c-.09-.3-.19-.59-.29-.88,1.15.42,2.26.86,3.18,1.27a46.32,46.32,0,0,1,8.32,5.22c21.64,16,40.13,44.46,29.61,69.27-7.21,17-24.61,26.6-41.39,22.85a35.09,35.09,0,0,1-21.4-14.84,36.49,36.49,0,0,1,2.38-42.55c1.65-2,3.67-4,5.79-6.16,6.77-6.81,15.19-15.28,15-27.31A23.57,23.57,0,0,0,199.12,208.82Zm71.75,50.61a84.35,84.35,0,0,1-19.68,28.42c12.69-30.82-7.72-63.89-33.73-83.09a57.31,57.31,0,0,0-10.57-6.53,74.34,74.34,0,0,0-7.83-2.87c-2.91-.86-10.63-3.16-13.69,2.62-2,3.83-.19,8.06.91,10.59.13.31.26.58.34.8l.14.39c.34.93.66,1.81.93,2.65a12,12,0,0,1,.66,3.42c.1,7-5.55,12.67-11.53,18.69-2.22,2.24-4.52,4.55-6.52,7a48.1,48.1,0,0,0-3.15,56.83,46.64,46.64,0,0,0,4.13,5.36A74.93,74.93,0,0,1,137.86,276a76.3,76.3,0,0,1,5-90.15c3.4-4.1,7.43-8.15,11.69-12.44,13.14-13.22,28-28.21,27.74-49.34a40.61,40.61,0,0,0-2.12-11.79h0c-.64-2-1.36-4-2.06-5.91l-.29-.79c-.28-.77-.66-1.64-1.06-2.56-.31-.72-.83-1.91-1.27-3.08a107.52,107.52,0,0,1,18.15,6.11c6.2,2.76,12,6.87,17.36,10.84C256.62,150.6,292.81,207.71,270.87,259.43Z"/></svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 41</title><path d="M309.17,179h-1.83l-8,0-3.5,0q-.19-.61-.4-1.23c-.65-1.94-1.35-3.86-2.09-5.71a94.72,94.72,0,0,0-4.06-8.64l.08-.08L300,152.78a21.87,21.87,0,0,0,0-30.87c-.94-.94-1.92-2-2.92-3-7.2-7.61-18.06-19.11-32.46-12.29-4.21,2-7.33,5.28-9.83,7.92l-6.46,6.81,0,0c-.63-.41-1.22-.8-1.82-1.11-2.14-1.12-4.33-2.16-6.52-3.11a93.52,93.52,0,0,0-10.14-3.71l0-1.77c0-1,0-2.09,0-3.14V99.35A21.86,21.86,0,0,0,208,77.52H192.55a21.85,21.85,0,0,0-21.83,21.83v7.73c0,2.21,0,4.32,0,6.38l-.75.25c-3,1-6.16,2-9.25,3.33a55.87,55.87,0,0,0-5.88,2.77l-.43.22-.27.14-11-11.07a21.87,21.87,0,0,0-30.87,0L101.39,120a21.87,21.87,0,0,0,0,30.87l10.68,10.68-.55,1c-.9,1.71-1.76,3.47-2.56,5.23-1.14,2.52-2.19,5.12-3.12,7.73-.41,1.16-.8,2.31-1.16,3.46L90.83,179A21.85,21.85,0,0,0,69,200.8v15.44a21.85,21.85,0,0,0,21.83,21.83l5.89,0c2.49,0,5,0,7.55,0a79.24,79.24,0,0,0,2.8,7.75c1,2.39,2.17,4.88,3.48,7.38q.75,1.44,1.53,2.85l-9.87,9.87-.54.54a21.85,21.85,0,0,0,0,30.87l10.92,10.92a21.85,21.85,0,0,0,30.87,0l.12-.12c1.17-1.24,2.37-2.44,3.65-3.72l1.93-1.94,4.38-4.45.16-.17a97,97,0,0,0,12.73,5.66l.13,0c1.41.47,2.8.84,4.17,1.15V319a21.85,21.85,0,0,0,21.83,21.83H208A21.87,21.87,0,0,0,229.82,319v-.54q0-2,0-4c0-2.71-.06-5.42-.13-8.13v-.29q0-.59,0-1.17l.13,0a100.59,100.59,0,0,0,10.59-3.91c1.94-.85,3.89-1.77,5.78-2.74l1.31-.69,4.51,4.5,6,5.94a21.85,21.85,0,0,0,30.87,0L299.69,297a21.85,21.85,0,0,0,0-30.87l-10.6-10.6c.46-.87.89-1.74,1.3-2.58a99.82,99.82,0,0,0,4.37-10.41c.53-1.48,1-3,1.38-4.43l13-.06A21.85,21.85,0,0,0,331,216.24V200.8A21.85,21.85,0,0,0,309.17,179ZM319,216.24a9.85,9.85,0,0,1-9.86,9.83l-15.18.07h-2.39a6.14,6.14,0,0,0-5.91,4.63l-.24.93c-.62,2.41-1.21,4.68-2,6.84a88,88,0,0,1-3.84,9.16,43.29,43.29,0,0,1-2.75,5,6.5,6.5,0,0,0-1.09,4.83l.07.41.22.67a6.63,6.63,0,0,0,1.59,2.45l13.57,13.56a9.84,9.84,0,0,1,0,13.9l-10.92,10.92a9.84,9.84,0,0,1-13.91,0l-6-5.94-5-5L252.82,286a6.26,6.26,0,0,0-7.22-1.23,9.17,9.17,0,0,0-1.35.81l-1.13.64q-1.24.69-2.51,1.35c-1.66.86-3.37,1.67-5.08,2.41a88.72,88.72,0,0,1-9.33,3.44c-1.05.32-2.12.62-3.18.92l-.68.19a6.43,6.43,0,0,0-4.78,6.28c0,1.9,0,3.77.07,5.58v.29c.06,2.66.09,5.33.13,8,0,1.33,0,2.66,0,4V319a9.84,9.84,0,0,1-9.83,9.83H192.55a9.84,9.84,0,0,1-9.83-9.83V300.11a6.28,6.28,0,0,0-5.13-6.26l-.94-.19a53.92,53.92,0,0,1-6.25-1.51,87.37,87.37,0,0,1-14.74-7l-.45-.26-.66-.25c-4.07-1.38-6.5,1.39-9.31,4.59l-.32.36L140.6,294l-1.87,1.88c-1.25,1.25-2.55,2.55-3.82,3.89a9.84,9.84,0,0,1-13.85-.05L110.15,288.8a9.88,9.88,0,0,1,0-13.9l.54-.54L122,263.11l1.75-1.75a6.19,6.19,0,0,0,1-7.58l-.7-1.18c-.35-.59-.71-1.18-1-1.78q-.89-1.59-1.74-3.21c-1.15-2.21-2.18-4.4-3.06-6.49a63.51,63.51,0,0,1-3.29-10,6.45,6.45,0,0,0-2.33-3.72l-.31-.23a6.41,6.41,0,0,0-3.54-1.1c-4-.08-8.09-.06-12,0l-5.81,0A9.84,9.84,0,0,1,81,216.24V200.8A9.83,9.83,0,0,1,90.8,191l18,.08h0a6.22,6.22,0,0,0,6-4.42l.33-1.05c.65-2.08,1.26-4,2-6,.82-2.3,1.74-4.58,2.74-6.8.71-1.56,1.46-3.1,2.25-4.6s1.61-3,2.46-4.37a6.16,6.16,0,0,0-1-7.66l-.88-.87L109.88,142.4a9.88,9.88,0,0,1,0-13.9l10.92-10.92a9.88,9.88,0,0,1,13.89,0l11.67,11.75c.77.77,1.54,1.54,2.27,2.3a6.29,6.29,0,0,0,3.3,1.83l1,.2,1-.13a7.17,7.17,0,0,0,3.25-1.33l.41-.23.32-.18q1-.57,2.06-1.11l.44-.23a44.27,44.27,0,0,1,4.69-2.23l.27-.11c2.63-1.14,5.41-2,8.35-3,1.52-.5,3-1,4.53-1.52a6.79,6.79,0,0,0,2.92-1.92,6.71,6.71,0,0,0,1.64-4.73c-.07-3.16-.1-6.38-.1-9.87V99.35a9.84,9.84,0,0,1,9.83-9.83H208a9.84,9.84,0,0,1,9.83,9.83v9.11c0,1,0,2,0,3l0,1.88c0,.86,0,1.73,0,2.55V116a7.92,7.92,0,0,0,1.61,5.48,7.61,7.61,0,0,0,4.13,2.58,80.16,80.16,0,0,1,11.64,4c1.92.83,3.85,1.75,5.7,2.71.22.13.5.32.82.52,2.43,1.59,5.75,3.77,9.5,2.65a10.24,10.24,0,0,0,4.55-3l7.75-8.17c2-2.11,4.08-4.3,6.27-5.34,6.07-2.88,11.3,2,18.6,9.69,1.08,1.15,2.13,2.26,3.15,3.28a9.87,9.87,0,0,1,0,13.9l-10.61,10.61c-.88.89-1.76,1.77-2.66,2.63A6.81,6.81,0,0,0,276.5,160l-.19.55a6.74,6.74,0,0,0,.61,5.17l.37.7a105.43,105.43,0,0,1,4.92,10.13c.65,1.64,1.28,3.34,1.85,5.06a46.59,46.59,0,0,1,1.31,4.65l.12.47c1.33,4.66,5.5,4.49,9.52,4.33l.44,0,4,0,8,0h1.75A9.84,9.84,0,0,1,319,200.8Z"/><path d="M200.27,137.41A71.73,71.73,0,1,0,272,209.14,71.73,71.73,0,0,0,200.27,137.41Zm0,131.46A59.73,59.73,0,1,1,260,209.14,59.8,59.8,0,0,1,200.27,268.87Z"/><path d="M200.27,170.41A38.73,38.73,0,1,0,239,209.14,38.73,38.73,0,0,0,200.27,170.41Zm0,65.46A26.73,26.73,0,1,1,227,209.14,26.76,26.76,0,0,1,200.27,235.87Z"/></svg>
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 25</title><path d="M86.18,192.88h86.88a18,18,0,0,0,18-18V88a18,18,0,0,0-18-18H86.18a18,18,0,0,0-18,18v86.88A18,18,0,0,0,86.18,192.88ZM80.18,88a6,6,0,0,1,6-6h86.88a6,6,0,0,1,6,6v86.88a6,6,0,0,1-6,6H86.18a6,6,0,0,1-6-6Z"/><path d="M226.08,192.88H313a18,18,0,0,0,18-18V88a18,18,0,0,0-18-18H226.08a18,18,0,0,0-18,18v86.88A18,18,0,0,0,226.08,192.88ZM220.08,88a6,6,0,0,1,6-6H313a6,6,0,0,1,6,6v86.88a6,6,0,0,1-6,6H226.08a6,6,0,0,1-6-6Z"/><path d="M174,207.12H87.11a18,18,0,0,0-18,18V312a18,18,0,0,0,18,18H174a18,18,0,0,0,18-18V225.12A18,18,0,0,0,174,207.12ZM180,312a6,6,0,0,1-6,6H87.11a6,6,0,0,1-6-6V225.12a6,6,0,0,1,6-6H174a6,6,0,0,1,6,6Z"/><path d="M313.23,207.12H226.36a18,18,0,0,0-18,18V312a18,18,0,0,0,18,18h86.88a18,18,0,0,0,18-18V225.12A18,18,0,0,0,313.23,207.12Zm6,104.88a6,6,0,0,1-6,6H226.36a6,6,0,0,1-6-6V225.12a6,6,0,0,1,6-6h86.88a6,6,0,0,1,6,6Z"/></svg>
|
Before Width: | Height: | Size: 977 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 16</title><rect x="79.12" y="76" width="115.35" height="115.35" rx="12" ry="12"/><rect x="214.66" y="76" width="115.35" height="115.35" rx="12" ry="12"/><rect x="80.08" y="208.65" width="115.35" height="115.35" rx="12" ry="12"/><rect x="214.95" y="208.65" width="115.35" height="115.35" rx="12" ry="12"/></svg>
|
Before Width: | Height: | Size: 429 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 26</title><path d="M131.44,69.85H88.09a18,18,0,0,0-18,18V131.2a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V87.85A18,18,0,0,0,131.44,69.85Zm6,61.35a6,6,0,0,1-6,6H88.09a6,6,0,0,1-6-6V87.85a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M312.71,69.85H269.36a18,18,0,0,0-18,18V131.2a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V87.85A18,18,0,0,0,312.71,69.85Zm6,61.35a6,6,0,0,1-6,6H269.36a6,6,0,0,1-6-6V87.85a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M222.08,69.85H178.73a18,18,0,0,0-18,18V131.2a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V87.85A18,18,0,0,0,222.08,69.85Zm6,61.35a6,6,0,0,1-6,6H178.73a6,6,0,0,1-6-6V87.85a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M131.44,160.18H88.09a18,18,0,0,0-18,18v43.35a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V178.18A18,18,0,0,0,131.44,160.18Zm6,61.35a6,6,0,0,1-6,6H88.09a6,6,0,0,1-6-6V178.18a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M312.71,160.18H269.36a18,18,0,0,0-18,18v43.35a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V178.18A18,18,0,0,0,312.71,160.18Zm6,61.35a6,6,0,0,1-6,6H269.36a6,6,0,0,1-6-6V178.18a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M222.08,160.18H178.73a18,18,0,0,0-18,18v43.35a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V178.18A18,18,0,0,0,222.08,160.18Zm6,61.35a6,6,0,0,1-6,6H178.73a6,6,0,0,1-6-6V178.18a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M131.44,250.5H88.09a18,18,0,0,0-18,18v43.35a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V268.5A18,18,0,0,0,131.44,250.5Zm6,61.35a6,6,0,0,1-6,6H88.09a6,6,0,0,1-6-6V268.5a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M312.71,250.5H269.36a18,18,0,0,0-18,18v43.35a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V268.5A18,18,0,0,0,312.71,250.5Zm6,61.35a6,6,0,0,1-6,6H269.36a6,6,0,0,1-6-6V268.5a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/><path d="M222.08,250.5H178.73a18,18,0,0,0-18,18v43.35a18,18,0,0,0,18,18h43.35a18,18,0,0,0,18-18V268.5A18,18,0,0,0,222.08,250.5Zm6,61.35a6,6,0,0,1-6,6H178.73a6,6,0,0,1-6-6V268.5a6,6,0,0,1,6-6h43.35a6,6,0,0,1,6,6Z"/></svg>
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 17</title><rect x="79.07" y="79.85" width="72.78" height="72.78" rx="12" ry="12"/><rect x="254.96" y="79.85" width="72.78" height="72.78" rx="12" ry="12"/><rect x="167.01" y="79.85" width="72.78" height="72.78" rx="12" ry="12"/><rect x="79.07" y="167.46" width="72.78" height="72.78" rx="12" ry="12"/><rect x="254.96" y="167.46" width="72.78" height="72.78" rx="12" ry="12"/><rect x="167.01" y="167.46" width="72.78" height="72.78" rx="12" ry="12"/><rect x="79.07" y="255.07" width="72.78" height="72.78" rx="12" ry="12"/><rect x="254.96" y="255.07" width="72.78" height="72.78" rx="12" ry="12"/><rect x="167.01" y="255.07" width="72.78" height="72.78" rx="12" ry="12"/></svg>
|
Before Width: | Height: | Size: 795 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 7</title><path d="M322,149.32c-11.34-36.24-46.08-59-82.61-54.2A74.63,74.63,0,0,0,203.54,110l-.17.14c-.34.27-.78.61-1.15.87-.47-.35-1.07-.85-1.47-1.2a28.78,28.78,0,0,0-2.28-1.8,78.49,78.49,0,0,0-8.45-5.05,75.77,75.77,0,0,0-24.83-7.81c-36.52-4.83-71.27,18-82.61,54.2C68.91,193,98.94,233.89,112.48,249.44A189.4,189.4,0,0,0,200,306.14h0a7.72,7.72,0,0,0,4.52,0,189.4,189.4,0,0,0,87.55-56.7C305.67,233.89,335.7,193,322,149.32Zm-39,92.23a177.39,177.39,0,0,1-80.77,52.73,177.39,177.39,0,0,1-80.77-52.73c-12.22-14-39.36-50.74-27.5-88.65,8.74-27.93,33.8-46.43,61.42-46.43a62.25,62.25,0,0,1,8.16.54,63.79,63.79,0,0,1,20.91,6.58,66.3,66.3,0,0,1,7.15,4.28c.32.22.83.65,1.32,1.07,2.14,1.81,5.38,4.55,9.7,4.29,3.68-.21,6.34-2.31,8.1-3.69l.17-.13A62.46,62.46,0,0,1,241,107c30.71-4.06,60,15.23,69.58,45.89C322.44,190.82,295.29,227.53,283.07,241.56Z"/></svg>
|
Before Width: | Height: | Size: 960 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 7</title><path d="M309.94,190.91c0-2,0-4.14,0-6.28a9.24,9.24,0,0,0-2.5-6,17.44,17.44,0,0,0-2.19-1.92l-93.59-72.78-.33-.16-.17-.16c-.23-.2-.46-.4-.7-.6-.51-.42-1-.82-1.56-1.23l-5.34-4.18a6.3,6.3,0,0,0-7.89,0l-103.06,80A11,11,0,0,0,91,179.1a6.28,6.28,0,0,0-1.2,2,6.21,6.21,0,0,0-.36,2.12l.19,141.2c0,6.27,5.82,11.38,13,11.38l62.35.08h0a10,10,0,0,0,7.08-2.83,8.36,8.36,0,0,0,2.5-5.94l-.09-69.54a2.56,2.56,0,0,1,.95-.17h0l48.18.06a2.56,2.56,0,0,1,1,.18l.09,69.56c0,4.91,4.22,8.76,9.59,8.77l62.93.08h0a13.79,13.79,0,0,0,9.74-3.85,10.6,10.6,0,0,0,3.21-7.52l-.17-131.05C309.92,192.75,309.93,191.83,309.94,190.91ZM297.14,324.1h0L236.61,324l-.09-67.13c0-6.27-5.82-11.37-13-11.38l-48.18-.06h0a13.8,13.8,0,0,0-9.74,3.85,10.61,10.61,0,0,0-3.21,7.53l.09,67.1-59.92-.08a2.55,2.55,0,0,1-1-.18l-.18-137.76,98.13-76.21,2,1.53,1.36,1.07.28.25a12.4,12.4,0,0,0,2,1.53l92.66,72.06.1.08c0,1.49,0,3,0,4.58,0,1,0,1.94,0,2.9l.17,130.24A2.56,2.56,0,0,1,297.14,324.1Z"/><path d="M327.7,160,206.34,66.25a10.36,10.36,0,0,0-12.67,0l-48.06,37.14V93.12c0-7.34-6.79-13.31-15.14-13.31h-19c-8.35,0-15.14,6-15.14,13.31v48.39L72.3,160a6,6,0,0,0,7.34,9.5L200,76.52l120.37,93a6,6,0,0,0,7.34-9.5ZM108.28,93.15c.1-.37,1.22-1.34,3.14-1.34h19c1.92,0,3,1,3.14,1.31v19.54l-25.32,19.57Z"/></svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="23px" height="23px" viewBox="0 0 23 23" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>info</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nebular-new-header" transform="translate(-1300.000000, -879.000000)" fill="#FFFFFF">
|
||||
<g id="info" transform="translate(1300.000000, 879.000000)">
|
||||
<path d="M22,11.5 C22,5.70114237 17.2988576,1 11.5,1 C5.70114237,1 1,5.70114237 1,11.5 C1,17.2988576 5.70114237,22 11.5,22 C17.2988576,22 22,17.2988576 22,11.5 Z M23,11.5 C23,17.8511424 17.8511424,23 11.5,23 C5.14885763,23 0,17.8511424 0,11.5 C0,5.14885763 5.14885763,0 11.5,0 C17.8511424,0 23,5.14885763 23,11.5 Z" id="Stroke-1" fill-rule="nonzero"></path>
|
||||
<path d="M11,6 L12.5,6 L12.2772277,13.9455446 L11.1930693,13.9455446 L11,6 Z M11.3118812,16.9455446 C11.2425739,16.9455446 11.1831686,16.9207923 11.1336634,16.8712871 C11.0841582,16.8217819 11.0594059,16.7623766 11.0594059,16.6930693 L11.0594059,15.4009901 C11.0594059,15.2227714 11.1435635,15.1336634 11.3118812,15.1336634 L12.1584158,15.1336634 C12.3366346,15.1336634 12.4257426,15.2227714 12.4257426,15.4009901 L12.4257426,16.6930693 C12.4257426,16.861387 12.3366346,16.9455446 12.1584158,16.9455446 L11.3118812,16.9455446 Z" id="!"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 40</title><path d="M115.51,70A33.51,33.51,0,1,0,149,103.51,33.51,33.51,0,0,0,115.51,70Zm0,55A21.51,21.51,0,1,1,137,103.51,21.54,21.54,0,0,1,115.51,125Z"/><path d="M206,70a33.51,33.51,0,1,0,33.51,33.51A33.51,33.51,0,0,0,206,70Zm0,55a21.51,21.51,0,1,1,21.51-21.51A21.54,21.54,0,0,1,206,125Z"/><path d="M296.49,137A33.51,33.51,0,1,0,263,103.51,33.51,33.51,0,0,0,296.49,137Zm0-55A21.51,21.51,0,1,1,275,103.51,21.54,21.54,0,0,1,296.49,82Z"/><path d="M115.51,160.49A33.51,33.51,0,1,0,149,194,33.51,33.51,0,0,0,115.51,160.49Zm0,55A21.51,21.51,0,1,1,137,194,21.54,21.54,0,0,1,115.51,215.51Z"/><path d="M206,160.49A33.51,33.51,0,1,0,239.51,194,33.51,33.51,0,0,0,206,160.49Zm0,55A21.51,21.51,0,1,1,227.51,194,21.54,21.54,0,0,1,206,215.51Z"/><path d="M296.49,160.49A33.51,33.51,0,1,0,330,194,33.51,33.51,0,0,0,296.49,160.49Zm0,55A21.51,21.51,0,1,1,318,194,21.54,21.54,0,0,1,296.49,215.51Z"/><path d="M115.51,251A33.51,33.51,0,1,0,149,284.49,33.51,33.51,0,0,0,115.51,251Zm0,55A21.51,21.51,0,1,1,137,284.49,21.54,21.54,0,0,1,115.51,306Z"/><path d="M206,251a33.51,33.51,0,1,0,33.51,33.51A33.51,33.51,0,0,0,206,251Zm0,55a21.51,21.51,0,1,1,21.51-21.51A21.54,21.54,0,0,1,206,306Z"/><path d="M296.49,251A33.51,33.51,0,1,0,330,284.49,33.51,33.51,0,0,0,296.49,251Zm0,55A21.51,21.51,0,1,1,318,284.49,21.54,21.54,0,0,1,296.49,306Z"/></svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 39</title><path d="M317,70H93A18,18,0,0,0,75,88V312a18,18,0,0,0,18,18H317a18,18,0,0,0,18-18V88A18,18,0,0,0,317,70ZM87,88a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,93,82H317a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,323,87.39a6.05,6.05,0,0,1,0,.61v28.4H87ZM323,312a6,6,0,0,1-6,6H93a6,6,0,0,1-6-6V128.4H323Z"/><path d="M169.36,293.45H240a18,18,0,0,0,18-18V172.19a18,18,0,0,0-18-18H169.36a18,18,0,0,0-18,18V275.45A18,18,0,0,0,169.36,293.45Zm-6-121.26a6,6,0,0,1,6-6H240a6,6,0,0,1,6,6V275.45a6,6,0,0,1-6,6H169.36a6,6,0,0,1-6-6Z"/></svg>
|
Before Width: | Height: | Size: 674 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 37</title><path d="M317,70H93A18,18,0,0,0,75,88V312a18,18,0,0,0,18,18H317a18,18,0,0,0,18-18V88A18,18,0,0,0,317,70ZM87,88a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,93,82H317a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,323,87.39a6.05,6.05,0,0,1,0,.61v28.4H87ZM323,312a6,6,0,0,1-6,6H93a6,6,0,0,1-6-6V128.4H323Z"/><path d="M143.91,292.15H264.14a18,18,0,0,0,18-18V170.88a18,18,0,0,0-18-18H143.91a18,18,0,0,0-18,18V274.15A18,18,0,0,0,143.91,292.15Zm-6-121.26a6,6,0,0,1,6-6H264.14a6,6,0,0,1,6,6V274.15a6,6,0,0,1-6,6H143.91a6,6,0,0,1-6-6Z"/></svg>
|
Before Width: | Height: | Size: 680 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 38</title><path d="M307,70H83A18,18,0,0,0,65,88V312a18,18,0,0,0,18,18H307a18,18,0,0,0,18-18V88A18,18,0,0,0,307,70ZM77,88a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,83,82H307a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,313,87.39a6.05,6.05,0,0,1,0,.61v28.4H77ZM313,312a6,6,0,0,1-6,6H83a6,6,0,0,1-6-6V128.4H313Z"/><path d="M183.5,292.8h23a18,18,0,0,0,18-18V171.54a18,18,0,0,0-18-18h-23a18,18,0,0,0-18,18V274.8A18,18,0,0,0,183.5,292.8Zm-6-121.26a6,6,0,0,1,6-6h23a6,6,0,0,1,6,6V274.8a6,6,0,0,1-6,6h-23a6,6,0,0,1-6-6Z"/></svg>
|
Before Width: | Height: | Size: 660 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 3</title><path d="M312,70H88A18,18,0,0,0,70,88V312a18,18,0,0,0,18,18H312a18,18,0,0,0,18-18V88A18,18,0,0,0,312,70ZM82,88a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,88,82H312a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,318,87.39a6.05,6.05,0,0,1,0,.61v28.4H82ZM318,312a6,6,0,0,1-6,6H88a6,6,0,0,1-6-6V128.4H318Z"/><path d="M178.72,292.8H282a18,18,0,0,0,18-18V171.54a18,18,0,0,0-18-18H178.72a18,18,0,0,0-18,18V274.8A18,18,0,0,0,178.72,292.8Zm-6-121.26a6,6,0,0,1,6-6H282a6,6,0,0,1,6,6V274.8a6,6,0,0,1-6,6H178.72a6,6,0,0,1-6-6Z"/><path d="M116.17,292.8a16.1,16.1,0,0,0,16.08-16.08V169.62a16.08,16.08,0,0,0-32.16,0v107.1A16.1,16.1,0,0,0,116.17,292.8Z"/></svg>
|
Before Width: | Height: | Size: 791 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 36</title><path d="M312,70H88A18,18,0,0,0,70,88V312a18,18,0,0,0,18,18H312a18,18,0,0,0,18-18V88A18,18,0,0,0,312,70ZM82,88a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,88,82H312a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,318,87.39a6.05,6.05,0,0,1,0,.61v28.4H82ZM318,312a6,6,0,0,1-6,6H88a6,6,0,0,1-6-6V128.4H318Z"/><path d="M118,292.8H221.28a18,18,0,0,0,18-18V171.54a18,18,0,0,0-18-18H118a18,18,0,0,0-18,18V274.8A18,18,0,0,0,118,292.8Zm-6-121.26a6,6,0,0,1,6-6H221.28a6,6,0,0,1,6,6V274.8a6,6,0,0,1-6,6H118a6,6,0,0,1-6-6Z"/><path d="M283.83,292.8a16.1,16.1,0,0,0,16.08-16.08V169.62a16.08,16.08,0,0,0-32.16,0v107.1A16.1,16.1,0,0,0,283.83,292.8Z"/></svg>
|
Before Width: | Height: | Size: 786 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 148</title><path d="M317,70H93A18,18,0,0,0,75,88V312a18,18,0,0,0,18,18H317a18,18,0,0,0,18-18V88A18,18,0,0,0,317,70ZM87,88a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,93,82H317a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,323,87.39a6.05,6.05,0,0,1,0,.61v28.4H87ZM323,312a6,6,0,0,1-6,6H93a6,6,0,0,1-6-6V128.4H323Z"/><path d="M150.43,292.15h23a18,18,0,0,0,18-18V170.88a18,18,0,0,0-18-18h-23a18,18,0,0,0-18,18V274.15A18,18,0,0,0,150.43,292.15Zm-6-121.26a6,6,0,0,1,6-6h23a6,6,0,0,1,6,6V274.15a6,6,0,0,1-6,6h-23a6,6,0,0,1-6-6Z"/><path d="M234,292.15h23a18,18,0,0,0,18-18V170.88a18,18,0,0,0-18-18H234a18,18,0,0,0-18,18V274.15A18,18,0,0,0,234,292.15Zm-6-121.26a6,6,0,0,1,6-6h23a6,6,0,0,1,6,6V274.15a6,6,0,0,1-6,6H234a6,6,0,0,1-6-6Z"/></svg>
|
Before Width: | Height: | Size: 862 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 160</title><path d="M232.64,284.81a89.91,89.91,0,1,0-65.28,0V328c0,.07,0,.15,0,.22s0,.15,0,.22a6,6,0,0,0,6,6h2.88v19.44c0,.11,0,.22,0,.33s0,.22,0,.33a6,6,0,0,0,6,6h36.41a6,6,0,0,0,6-6c0-.11,0-.23,0-.34a6,6,0,0,0,.06-.83l-.07-18.94h2a6,6,0,0,0,6-6c0-.17,0-.33,0-.5s0-.31,0-.48Zm-7.9-9.89-.11,0-.41.16-.19.09-.33.17-.23.14-.25.16-.25.19-.2.16-.24.22-.18.18-.21.23-.18.21-.17.22-.18.26-.13.21-.17.3-.1.2c-.05.11-.1.21-.14.33l-.08.22c0,.11-.08.22-.11.33s0,.17-.07.26,0,.2-.07.3,0,.22-.05.33,0,.16,0,.23,0,.28,0,.41,0,.09,0,.14v41.82h-.7a6,6,0,0,0-.86.07l-.47,0h0a6,6,0,0,0-6,6l.07,20H188.24V329a7,7,0,0,0-6.51-6.52h-2.37V280.61c0-.11,0-.21,0-.31s0-.13,0-.19,0-.29-.06-.44l0-.13c0-.16-.07-.32-.11-.48l0-.08c0-.17-.1-.33-.16-.49l0-.05q-.09-.24-.21-.47l0-.06c-.07-.15-.15-.29-.24-.43l0-.08c-.08-.13-.17-.25-.26-.37l-.08-.11-.26-.31-.12-.14-.27-.26-.16-.14-.29-.23-.17-.13-.34-.22-.15-.09-.41-.21-.11-.05-.48-.19-.06,0a77.91,77.91,0,1,1,49.47,0Z"/><path d="M79.64,212.1h-31a6,6,0,1,0,0,12h31a6,6,0,0,0,0-12Z"/><path d="M351.33,212.1h-31a6,6,0,0,0,0,12h31a6,6,0,0,0,0-12Z"/><path d="M200.93,81.52a6,6,0,0,0,6-6v-31a6,6,0,0,0-12,0v31A6,6,0,0,0,200.93,81.52Z"/><path d="M77.31,106.79l24.17,19.37a6,6,0,0,0,7.5-9.37L84.81,97.42a6,6,0,0,0-7.5,9.37Z"/><path d="M295.18,128a6,6,0,0,0,3.65-1.24L323.4,107.9a6,6,0,0,0-7.31-9.52l-24.57,18.86A6,6,0,0,0,295.18,128Z"/><path d="M295.93,274.07a6,6,0,0,0-9.47,7.37l19,24.44a6,6,0,1,0,9.47-7.37Z"/><path d="M113,273.65a6,6,0,0,0-8.41,1.11L85.79,299.34a6,6,0,1,0,9.52,7.3l18.84-24.58A6,6,0,0,0,113,273.65Z"/><path d="M236.29,187.72a6,6,0,0,0-7.48,4l-3.63,12H176.12l-3.63-12A6,6,0,1,0,161,195.2l12.4,41.08h0a5.91,5.91,0,0,0,.33.84l.07.15a6,6,0,0,0,.43.71l.11.15a6,6,0,0,0,.49.58l.06.07a6,6,0,0,0,.63.54l.14.1a5.94,5.94,0,0,0,.71.44l.09,0a6,6,0,0,0,.75.31l.08,0a6,6,0,0,0,.81.2l.19,0a5.91,5.91,0,0,0,.79.06h14.73v62.64a6,6,0,0,0,12,0V240.55h15.5l.48,0,.35,0a6,6,0,0,0,5.74-4.27l12.4-41.08A6,6,0,0,0,236.29,187.72ZM217.7,228.55H183.61l-3.87-12.81h41.83Z"/></svg>
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 3</title><path d="M129.16,131.33H340a6,6,0,1,0,0-12H129.16a6,6,0,0,0,0,12Z"/><path d="M340,193.88H129.16a6,6,0,1,0,0,12H340a6,6,0,0,0,0-12Z"/><path d="M340,268.43H129.16a6,6,0,0,0,0,12H340a6,6,0,0,0,0-12Z"/><path d="M76.87,102.54a22.87,22.87,0,1,0,22.87,22.87A22.89,22.89,0,0,0,76.87,102.54Zm0,33.73a10.87,10.87,0,1,1,10.87-10.87A10.88,10.88,0,0,1,76.87,136.28Z"/><path d="M76.87,177a22.87,22.87,0,1,0,22.87,22.87A22.89,22.89,0,0,0,76.87,177Zm0,33.73a10.87,10.87,0,1,1,10.87-10.87A10.88,10.88,0,0,1,76.87,210.73Z"/><path d="M76.87,251.72a22.87,22.87,0,1,0,22.87,22.87A22.89,22.89,0,0,0,76.87,251.72Zm0,33.73a10.87,10.87,0,1,1,10.87-10.87A10.88,10.88,0,0,1,76.87,285.46Z"/></svg>
|
Before Width: | Height: | Size: 798 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 8</title><path d="M357.85,309.93l-51-121.59a6,6,0,0,0-5.83-4.61H270.81c.62-1.6,1.21-3.19,1.76-4.77,1-2.86,1.9-5.73,2.68-8.55s1.5-5.81,2.07-8.66,1.06-5.87,1.4-8.75.57-5.91.66-8.8,0-5.94-.15-8.81a85.69,85.69,0,0,0-1-8.78,81.57,81.57,0,0,0-2-8.7A79.54,79.54,0,0,0,269.13,101q-.6-1.08-1.24-2.14A66.47,66.47,0,0,0,210,66.44l-.72,0h-.06A66.76,66.76,0,0,0,152,99.63a81.5,81.5,0,0,0-4.27,8.34,79.87,79.87,0,0,0-5.35,17.21,84.36,84.36,0,0,0-1.2,8.75c-.24,2.87-.34,5.83-.3,8.78s.22,5.82.52,8.77.73,5.79,1.28,8.72,1.2,5.75,2,8.64,1.62,5.68,2.58,8.53c.71,2.09,1.51,4.23,2.35,6.36H114a6.34,6.34,0,0,0-5.71,3.74L56.9,310.05a6.14,6.14,0,0,0,5.6,8.44H352.44a6,6,0,0,0,5.42-8.57Zm-64.47-3.43c-5.89-31.52-36.45-32.38-46.85-32.66-6.81-.19-14.48.27-22.6.75-31.05,1.83-66.25,3.91-74.82-27.35-3.76-13.73,1.68-29.67,12.6-38.8.27.45.52.91.79,1.36,1.5,2.51,3.1,5,4.75,7.55s3.28,4.87,5,7.27,3.42,4.66,5.2,7S181,236,182.8,238.2s3.59,4.21,5.43,6.25,3.63,4,5.47,5.85c3.53,3.64,7.38,7.31,12.49,11.9a6.69,6.69,0,0,0,4.53,1.8h.2l.33,0a6.67,6.67,0,0,0,4.06-1.88l1.47-1.38c3-2.84,6.15-5.77,9.12-8.85,1.83-1.89,3.65-3.84,5.42-5.81s3.63-4.1,5.41-6.22,3.6-4.38,5.33-6.6,3.52-4.62,5.21-6.95,3.43-4.86,5-7.26,3.26-5,4.78-7.55,3.06-5.21,4.47-7.81,2.8-5.3,4.06-7.92H297L343.4,306.5ZM117.85,195.74h37c.33.68.65,1.35,1,2-15.78,11.85-23.58,33.46-18.32,52.65,11.14,40.63,55,38,87.1,36.16,7.85-.46,15.28-.9,21.57-.73,15.7.43,30.57,3.39,34.91,20.67H71.41Zm35.28-60.8a72.81,72.81,0,0,1,1-7.51,69,69,0,0,1,1.84-7.38,67.83,67.83,0,0,1,2.71-7.25,69.49,69.49,0,0,1,3.64-7.11c9.71-16.56,28.1-27.22,46.92-27.22h.39l.71,0c18.83-.28,37.36,10.15,47.23,26.59q.54.9,1.06,1.82a68.46,68.46,0,0,1,3.46,7.12,67.6,67.6,0,0,1,2.55,7.27,69.39,69.39,0,0,1,1.69,7.42,73.18,73.18,0,0,1,.89,7.54c.17,2.49.21,5.07.13,7.66s-.27,5.14-.58,7.74-.72,5.19-1.25,7.8-1.14,5.2-1.87,7.82-1.53,5.19-2.44,7.8-1.89,5.16-3,7.75-2.21,5.1-3.43,7.65-2.49,5-3.85,7.51-2.74,4.91-4.21,7.34-2.94,4.76-4.51,7.13-3.1,4.59-4.75,6.87-3.25,4.42-4.93,6.59-3.34,4.21-5.06,6.26-3.41,4-5.13,5.9-3.41,3.71-5.14,5.5c-2.14,2.22-4.35,4.34-6.64,6.51-3.2-2.95-5.85-5.52-8.31-8.07-1.74-1.8-3.48-3.66-5.17-5.54s-3.48-3.93-5.15-5.93-3.43-4.17-5.07-6.28-3.35-4.39-4.93-6.59-3.22-4.58-4.73-6.87-3.06-4.75-4.47-7.11c-1.21-2-2.37-4.06-3.48-6.09a6.06,6.06,0,0,0-.35-.74,6,6,0,0,0-.39-.59c-1.32-2.46-2.58-4.94-3.73-7.37s-2.34-5.1-3.36-7.61-2-5.18-2.88-7.71-1.67-5.2-2.35-7.76-1.29-5.22-1.77-7.77-.87-5.21-1.14-7.75-.42-5.18-.46-7.69S152.93,137.42,153.14,134.94Z"/><path d="M210.21,171.28a36.44,36.44,0,1,0-36.44-36.44A36.48,36.48,0,0,0,210.21,171.28Zm0-60.88a24.44,24.44,0,1,1-24.44,24.44A24.47,24.47,0,0,1,210.21,110.4Z"/></svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 42</title><path d="M318.67,185a18,18,0,0,0-18-18h0l-27,0-.07-45.76a68.79,68.79,0,0,0-68.6-68.5h-.11a68.68,68.68,0,0,0-68.5,68.71l.07,45.76-27,0a18,18,0,0,0-18,18l.21,131.49a18,18,0,0,0,18,18h0l191.29-.3a18,18,0,0,0,18-18ZM148.32,121.55a56.67,56.67,0,0,1,56.52-56.69h.09a56.79,56.79,0,0,1,56.6,56.52l.07,45.76-113.21.18Zm-43.18,59.6a6,6,0,0,1,4.23-1.77l191.29-.3h0a6,6,0,0,1,6,6l.17,108.23-203.29.32-.17-108.23A6,6,0,0,1,105.14,181.14Zm200,139.64a6,6,0,0,1-4.23,1.77l-191.29.3h0a6,6,0,0,1-6-6l0-11.26,203.29-.32,0,11.26A6,6,0,0,1,305.11,320.78Z"/><path d="M205.75,277.62h0A19.34,19.34,0,0,0,225,258.29L225,214.51a19.32,19.32,0,0,0-19.3-19.27h0a19.32,19.32,0,0,0-19.27,19.33l.07,43.78A19.32,19.32,0,0,0,205.75,277.62Zm-.08-70.38h0a7.31,7.31,0,0,1,7.3,7.29l.07,43.78a7.34,7.34,0,0,1-7.29,7.31h0a7.31,7.31,0,0,1-7.3-7.29l-.07-43.78A7.31,7.31,0,0,1,205.67,207.25Z"/></svg>
|
Before Width: | Height: | Size: 986 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 3</title><path d="M200.5,5C93.8,5,7,91.8,7,198.5S93.8,392,200.5,392,394,305.2,394,198.5,307.2,5,200.5,5Zm0,375C100.42,380,19,298.58,19,198.5S100.42,17,200.5,17,382,98.42,382,198.5,300.58,380,200.5,380Z"/><path d="M288.52,241.82a6,6,0,0,0-8.19,2.22,91.78,91.78,0,0,1-171.4-42.73l5.21,5.4a6,6,0,0,0,8.63-8.34l-14.12-14.63a7.91,7.91,0,0,0-11.17-.2L82.84,197.68a6,6,0,1,0,8.34,8.63l5.73-5.53A103.78,103.78,0,0,0,290.74,250,6,6,0,0,0,288.52,241.82Z"/><path d="M309.82,186.5l-5.62,5.43A103.77,103.77,0,0,0,110.53,147a6,6,0,0,0,10.41,6,91.78,91.78,0,0,1,171.21,38.59l-5.29-5.48a6,6,0,1,0-8.63,8.33l14.12,14.63a7.91,7.91,0,0,0,11.17.2l14.63-14.12a6,6,0,0,0-8.34-8.63Z"/></svg>
|
Before Width: | Height: | Size: 788 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 8</title><path d="M312.34,256.84a6,6,0,0,0-8.19,2.22A118,118,0,0,1,83.69,200.5c0-.16,0-.31,0-.47l9.43,9.77a6,6,0,0,0,8.63-8.34L83.84,182.91a8.42,8.42,0,0,0-11.89-.21L53.39,200.61a6,6,0,0,0,8.34,8.63l10-9.63c0,.29,0,.59,0,.88A130,130,0,0,0,314.56,265,6,6,0,0,0,312.34,256.84Z"/><path d="M349.76,186.58a6,6,0,0,0-8.48-.15l-9.68,9.35C329.1,126.28,271.79,70.5,201.69,70.5A130.41,130.41,0,0,0,88.79,136a6,6,0,1,0,10.41,6,118,118,0,0,1,220.39,54l-9.71-10.06a6,6,0,0,0-8.63,8.34l17.92,18.55a8.42,8.42,0,0,0,11.89.21l18.55-17.92A6,6,0,0,0,349.76,186.58Z"/></svg>
|
Before Width: | Height: | Size: 674 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 192</title><path d="M94.16,143.33H305a6,6,0,0,0,0-12H94.16a6,6,0,1,0,0,12Z"/><path d="M305,205.88H94.16a6,6,0,0,0,0,12H305a6,6,0,0,0,0-12Z"/><path d="M305,280.43H94.16a6,6,0,0,0,0,12H305a6,6,0,0,0,0-12Z"/></svg>
|
Before Width: | Height: | Size: 322 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 29</title><path d="M303.27,287l-10-25.29v-67h0a93.4,93.4,0,0,0-75.17-91.48V87.95a18.45,18.45,0,1,0-36.9,0v15.46a93.4,93.4,0,0,0-74.42,91.33h0v67L96.73,287a6,6,0,0,0,5.58,8.21l.29,0,.39,0h56.54a40.72,40.72,0,0,0,80.94,0H297.7l.31,0h.14a5.93,5.93,0,0,0,5.13-8.17Zm-192.13-3.79,5.69-14.35H283.17l5.69,14.35Zm82-195.3a6.45,6.45,0,1,1,12.9,0V101.7c-2-.13-4-.2-6.07-.2q-3.44,0-6.83.25ZM200,113.5a81.33,81.33,0,0,1,81.24,81.24h0V256.9H118.76V194.74h0A81.33,81.33,0,0,1,200,113.5Zm0,206a28.77,28.77,0,0,1-28.37-24.25h56.74A28.77,28.77,0,0,1,200,319.5Z"/></svg>
|
Before Width: | Height: | Size: 671 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 5</title><path d="M316.09,77.83s0-.09,0-.13,0-.05,0-.08,0-.05,0-.08,0-.18,0-.27,0-.11,0-.16,0-.12,0-.18,0-.15,0-.23,0-.12,0-.18,0-.12,0-.18l0-.21c0-.06,0-.13,0-.19l0-.17-.06-.22c0-.06,0-.12,0-.18l-.05-.14-.1-.26v0l0-.12-.05-.11-.14-.29-.07-.14h0l0-.08-.17-.29-.08-.13-.07-.1-.18-.24-.1-.13-.1-.12-.17-.18-.12-.13-.14-.13-.15-.13-.15-.13-.17-.13-.07-.05-.07,0-.17-.12-.18-.11-.17-.1-.16-.09-.16-.08-.22-.11-.14-.06-.15-.06-.28-.1-.12,0-.14,0-.33-.08-.09,0h0l-.14,0-.33,0-.11,0h-1.18l-.17,0-.23,0-.18,0-.15,0-.26.06-.17,0-.11,0-.3.11-.23.09-.34.17h0l-.08,0h0l-220,119.49-.15.09-.3.18-.22.15-.26.19-.21.18-.22.21-.19.2-.2.23-.17.22-.18.25-.15.24-.15.26-.14.27-.12.26c0,.1-.08.21-.12.31l-.07.17,0,.07c0,.11-.06.22-.09.33s0,.17-.06.25,0,.21-.05.31,0,.18,0,.27,0,.2,0,.3,0,.19,0,.29,0,.21,0,.31,0,.18,0,.27,0,.22,0,.33,0,.16,0,.24.05.22.08.33,0,.16.06.23.07.2.1.3.06.17.09.26l.12.26.14.29,0,.07.06.1q.15.26.32.51l.11.15a6,6,0,0,0,.46.54l.12.11q.2.2.43.38l.17.13q.24.18.5.33l.11.07a6,6,0,0,0,.64.32l.18.07.33.13,104.65,33.95,63.47,89.86.09.11.3.37.16.18.34.33.14.13a5.87,5.87,0,0,0,.52.4l.12.07.45.26.2.1.4.17.23.08.39.12.25.06.12,0,.31,0,.21,0a6.05,6.05,0,0,0,.66,0h.07a6,6,0,0,0,.9-.08l.34-.08a6,6,0,0,0,.61-.16l.37-.15c.18-.07.35-.15.52-.24l.38-.22c.09-.06.19-.1.28-.17l.23-.18.14-.11a6,6,0,0,0,.63-.61l.1-.12a6,6,0,0,0,.54-.73l0-.06a6,6,0,0,0,.41-.82l0-.09a6,6,0,0,0,.27-.92l0-.08L316,78.3h0c0-.05,0-.11,0-.16S316.08,77.93,316.09,77.83Zm-57.94,230-54.06-76.55L299,102.37Zm-63.73-83.66-89.14-28.92,184.06-100Z"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 5</title><path d="M302.26,215.69a67.34,67.34,0,0,0-34.42-121,67.47,67.47,0,0,0-61.61,29.2,6,6,0,0,0-1,2.77,81.66,81.66,0,0,0-51.73,27.14,64.78,64.78,0,0,0-79.09,58.1A59.05,59.05,0,0,0,85.14,329H279a59,59,0,0,0,23.24-113.31ZM266.79,106.62a55.36,55.36,0,0,1,30.08,98.08,82.11,82.11,0,0,0-77.36-78.51A55.47,55.47,0,0,1,266.79,106.62ZM279,317H85.14a47.06,47.06,0,0,1-4.81-93.87,6.74,6.74,0,0,0,5.85-6.25,52.76,52.76,0,0,1,104-12.46,6,6,0,1,0,11.66-2.82A64.5,64.5,0,0,0,166,158a70,70,0,0,1,119,50.06,71.07,71.07,0,0,1-.61,9.27,6,6,0,0,0,5.16,6.73A47.05,47.05,0,0,1,279,317Z"/><path d="M268.89,82.83l.53,0a6,6,0,0,0,6-5.47L277.3,55.7a6,6,0,0,0-12-1.05l-1.91,21.67A6,6,0,0,0,268.89,82.83Z"/><path d="M307.42,96.88a6,6,0,0,0,8.36-1.47L328.27,77.6a6,6,0,0,0-9.83-6.89L306,88.53A6,6,0,0,0,307.42,96.88Z"/><path d="M339.21,131.79a6,6,0,0,0,2.53-.56L361.46,122a6,6,0,0,0-5.06-10.88l-19.73,9.18a6,6,0,0,0,2.54,11.44Z"/><path d="M369,165.18l-21.67-1.91a6,6,0,0,0-1.05,12L368,177.14l.53,0a6,6,0,0,0,.52-12Z"/><path d="M353,218.28l-17.81-12.49a6,6,0,1,0-6.89,9.83l17.81,12.49a6,6,0,1,0,6.89-9.83Z"/><path d="M170.88,105.25l17.81,12.49a6,6,0,1,0,6.89-9.83L177.76,95.42a6,6,0,1,0-6.89,9.83Z"/><path d="M220.51,87A6,6,0,1,0,231.39,82l-9.18-19.73a6,6,0,1,0-10.88,5.06Z"/></svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 52</title><path d="M240.28,76.09a6,6,0,0,0-6,6v232a6,6,0,0,0,12,0v-232A6,6,0,0,0,240.28,76.09Z"/><path d="M159.72,76.09a6,6,0,0,0-6,6v232a6,6,0,0,0,12,0v-232A6,6,0,0,0,159.72,76.09Z"/></svg>
|
Before Width: | Height: | Size: 309 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 183</title><path d="M155.16,68.35a18.86,18.86,0,0,0-18.84,18.84V293.5a18.84,18.84,0,0,0,37.69,0V87.19A18.86,18.86,0,0,0,155.16,68.35Z"/><path d="M245.16,68.35a18.86,18.86,0,0,0-18.84,18.84V293.5a18.84,18.84,0,0,0,37.69,0V87.19A18.86,18.86,0,0,0,245.16,68.35Z"/></svg>
|
Before Width: | Height: | Size: 378 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 104 copy 15</title><path d="M332.5,293.61s0,0,0-.07,0-.11,0-.16c-.16-49.12-29.57-94-74.07-114.31a64.87,64.87,0,1,0-104.23.17c-44.27,20.38-73.52,65.19-73.69,114.13,0,.05,0,.11,0,.16s0,0,0,.07,0,.12,0,.18h0a6,6,0,0,0,6,5.75h240a6,6,0,0,0,6-5.75h0C332.5,293.73,332.5,293.67,332.5,293.61ZM206.25,87.71a52.87,52.87,0,1,1-52.87,52.87A52.93,52.93,0,0,1,206.25,87.71ZM162.69,188.61a64.74,64.74,0,0,0,87.27-.15,114.87,114.87,0,0,1,70.34,99.08H92.7A114.94,114.94,0,0,1,162.69,188.61Z"/></svg>
|
Before Width: | Height: | Size: 593 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 8</title><path d="M321.12,240.29,296.86,210.5a27,27,0,0,0-38-3.88c-2.64,2.15-5.21,4.38-7.7,6.55-4.28,3.72-8.33,7.24-12.71,10.38-6.13,4.4-12.6,8.54-18.46,6.8a38.89,38.89,0,0,1-14.49-8.63,173.7,173.7,0,0,1-16.66-18,210,210,0,0,1-14.35-20.12A38.9,38.9,0,0,1,169,167.69c-.52-6.09,4.85-11.59,10.4-16.7,4-3.65,8.22-6.9,12.73-10.34,2.62-2,5.33-4.07,8-6.22a27,27,0,0,0,3.88-38L179.74,66.68a27,27,0,0,0-38-3.88L127.36,74.54c-1.14.93-2.32,1.94-3.71,3.19q-1.3,1.17-2.57,2.35-1.49,1.39-3,2.81c-1.11,1.08-2.09,2.07-3,3-1.08,1.13-1.94,2.09-2.7,3-.26.32-.52.64-.78,1a64.47,64.47,0,0,0-9.33,16.62,57.19,57.19,0,0,0-3.51,15.31c-1.25,14.75,1.48,30.92,8.36,49.45a256.73,256.73,0,0,0,17.95,37.57,219.56,219.56,0,0,0,20.48,30l0,0A219.45,219.45,0,0,0,170.85,265,256.65,256.65,0,0,0,204,290.18c16.75,10.49,32,16.44,46.73,18.2a55.31,55.31,0,0,0,6.57.39,58.57,58.57,0,0,0,9.13-.72,64.45,64.45,0,0,0,18.17-5.77l1.11-.56c1.06-.56,2.17-1.21,3.49-2,1.1-.69,2.26-1.44,3.55-2.32q1.69-1.14,3.35-2.33,1.42-1,2.83-2c1.5-1.11,2.74-2.05,3.88-3l14.42-11.75a27,27,0,0,0,3.88-38Zm-6,18.56a14.87,14.87,0,0,1-5.42,10.1l-14.42,11.74c-1,.8-2.07,1.64-3.42,2.63q-1.32,1-2.67,1.93-1.55,1.1-3.12,2.17c-1.17.79-2.21,1.47-3.18,2.08s-2,1.2-2.78,1.63l-.72.37a52.48,52.48,0,0,1-14.79,4.71,45.19,45.19,0,0,1-12.4.27c-12.9-1.54-26.57-6.93-41.79-16.45a245.12,245.12,0,0,1-31.61-24,207.41,207.41,0,0,1-23.84-24.69l-4.65,3.8,4.63-3.82a207.44,207.44,0,0,1-19.35-28.34,245.19,245.19,0,0,1-17.14-35.83c-6.25-16.83-8.75-31.3-7.65-44.25a45.17,45.17,0,0,1,2.78-12.09,52.47,52.47,0,0,1,7.6-13.52l.5-.63c.59-.71,1.28-1.47,2.16-2.4s1.67-1.72,2.68-2.7,1.83-1.76,2.75-2.62,1.61-1.49,2.43-2.22c1.24-1.12,2.28-2,3.26-2.81L149.36,72.1a15,15,0,0,1,21.08,2.16L194.7,104a15,15,0,0,1-2.16,21.08c-2.49,2-5.12,4-7.67,6-4.53,3.46-9.22,7-13.59,11.06-5.34,4.92-15.29,14.09-14.22,26.55a50.53,50.53,0,0,0,7.19,21.09,219.8,219.8,0,0,0,15.21,21.36l.1.12a185.4,185.4,0,0,0,17.85,19.24,50.51,50.51,0,0,0,19.2,11.31c12,3.57,23-4.32,28.88-8.55,4.83-3.46,9.28-7.33,13.58-11.06,2.42-2.1,4.92-4.28,7.41-6.3a15,15,0,0,1,21.08,2.16l24.26,29.79A14.88,14.88,0,0,1,315.08,258.85Z"/></svg>
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 44</title><path d="M284.15,190.78c.09-.17.19-.34.26-.52a5.88,5.88,0,0,0,.18-.56c.05-.18.11-.36.15-.55s0-.38.07-.58,0-.38,0-.57,0-.38,0-.57,0-.39-.07-.58-.1-.37-.15-.55a5.88,5.88,0,0,0-.18-.56c-.07-.18-.17-.35-.26-.52a5.91,5.91,0,0,0-.29-.52,6,6,0,0,0-.37-.48c-.1-.12-.18-.26-.29-.38l-.1-.09-.09-.1L161.7,67.66l-.05,0a6,6,0,0,0-.86-.67l-.12-.07a5.9,5.9,0,0,0-.93-.46l-.13,0a6,6,0,0,0-1-.27l-.14,0a6,6,0,0,0-.93-.08h-.21a6,6,0,0,0-1,.12h-.05a6,6,0,0,0-1.05.34l0,0a6,6,0,0,0-1,.54l-.07,0a6,6,0,0,0-.85.73l0,0,0,.06a6,6,0,0,0-.67.85l-.08.12a5.93,5.93,0,0,0-.46.92l-.05.14a6,6,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93V304a6,6,0,0,0,.08.93l0,.14a6,6,0,0,0,.27,1l.05.14a5.93,5.93,0,0,0,.46.92l.08.12a6,6,0,0,0,.67.85l0,.06,0,0,.26.24.19.17.27.2.21.16.28.17.38.21.37.18.17.06.39.14.18,0,.4.1.23,0,.35.05.57,0h0a6,6,0,0,0,1-.1h.09a5.92,5.92,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.84-.66l.05,0L283,192.34l0-.05.15-.14c.11-.12.19-.25.29-.38a3.83,3.83,0,0,0,.66-1Zm-14-2.78L163.55,290V86Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 43</title><path d="M270.69,213.78c.09-.17.19-.34.26-.52a5.88,5.88,0,0,0,.18-.56c.05-.18.11-.36.15-.55s0-.38.07-.58,0-.38,0-.57,0-.38,0-.57,0-.39-.07-.58-.1-.37-.15-.55a5.88,5.88,0,0,0-.18-.56c-.07-.18-.17-.35-.26-.52a5.91,5.91,0,0,0-.29-.52,6,6,0,0,0-.37-.48c-.1-.12-.18-.26-.29-.38l-.1-.09-.09-.1-121.31-116-.05,0a6.07,6.07,0,0,0-.86-.67l-.12-.07a6,6,0,0,0-.93-.46l-.14,0a5.93,5.93,0,0,0-1-.27l-.14,0a6,6,0,0,0-.93-.08h-.21a6,6,0,0,0-1,.12h-.05a6,6,0,0,0-1.05.34l0,0a6,6,0,0,0-1,.54l-.07.05a6.06,6.06,0,0,0-.85.72l0,0,0,.06a6,6,0,0,0-.67.85l-.08.12a5.93,5.93,0,0,0-.46.92l-.05.14a6,6,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93V327a6,6,0,0,0,.08.93l0,.14a6,6,0,0,0,.27,1l.05.14a5.93,5.93,0,0,0,.46.92l.08.12a6,6,0,0,0,.67.85l0,.06,0,0,.26.24.19.17.27.2.21.16.28.17.38.21.37.18.17.06.39.14.18,0,.4.1.23,0,.35.05.57,0h0a6,6,0,0,0,1-.1h.09a5.92,5.92,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.84-.66l.05,0,121.31-116,0-.05.15-.14c.11-.12.19-.25.29-.38a3.83,3.83,0,0,0,.66-1Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 2</title><path d="M283.88,197H206.06V119.16a6,6,0,0,0-12,0V197H116.12a6,6,0,0,0,0,12h77.94v77.94a6,6,0,0,0,12,0V209h77.82a6,6,0,0,0,0-12Z"/><path d="M200,73A130,130,0,1,0,330,203,130.15,130.15,0,0,0,200,73Zm0,248A118,118,0,1,1,318,203,118.13,118.13,0,0,1,200,321Z"/></svg>
|
Before Width: | Height: | Size: 392 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy</title><path d="M310,194H206.08V90.09a6,6,0,0,0-12,0V194H90a6,6,0,1,0,0,12H194.08V310.09a6,6,0,0,0,12,0V206H310a6,6,0,0,0,0-12Z"/></svg>
|
Before Width: | Height: | Size: 256 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 16</title><path d="M244,77.5a6,6,0,0,0-4,11.31,119.74,119.74,0,1,1-80,0,6,6,0,0,0-4-11.31A132,132,0,0,0,68.26,201.71c0,72.64,59.1,131.74,131.74,131.74s131.74-59.1,131.74-131.74A132,132,0,0,0,244,77.5Z"/><path d="M200,151.38a6,6,0,0,0,6-6V79.46a6,6,0,0,0-12,0v65.92A6,6,0,0,0,200,151.38Z"/><path d="M199.5,7C92.8,7,6,93.8,6,200.5S92.8,394,199.5,394,393,307.2,393,200.5,306.2,7,199.5,7Zm0,375C99.42,382,18,300.58,18,200.5S99.42,19,199.5,19,381,100.42,381,200.5,299.58,382,199.5,382Z"/></svg>
|
Before Width: | Height: | Size: 609 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 4</title><path d="M244,77.5a6,6,0,0,0-4,11.31,119.74,119.74,0,1,1-80,0,6,6,0,0,0-4-11.31A132,132,0,0,0,68.26,201.71c0,72.64,59.1,131.74,131.74,131.74s131.74-59.1,131.74-131.74A132,132,0,0,0,244,77.5Z"/><path d="M200,151.38a6,6,0,0,0,6-6V79.46a6,6,0,0,0-12,0v65.92A6,6,0,0,0,200,151.38Z"/></svg>
|
Before Width: | Height: | Size: 414 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 6</title><path d="M323.19,151.62c.12-1.85.19-3.71.19-5.56A82,82,0,0,0,179.91,91.77a64.78,64.78,0,0,0-79.09,58.1A59.05,59.05,0,0,0,111.56,267h17.81L77.5,320.72a6,6,0,1,0,8.63,8.33L146.05,267H180l-41.51,42.69a6,6,0,1,0,8.6,8.36L196.71,267h30.41l-56.38,58.88a6,6,0,0,0,8.67,8.3L243.74,267h32.44l-41.51,42.69a6,6,0,1,0,8.6,8.36L292.92,267h12.52a59.05,59.05,0,0,0,17.75-115.38ZM305.44,255H111.56a47.06,47.06,0,0,1-4.81-93.87,6.74,6.74,0,0,0,5.85-6.25,52.76,52.76,0,0,1,104-12.46,6,6,0,1,0,11.66-2.82A64.5,64.5,0,0,0,192.41,96a70,70,0,0,1,119,50.06,71,71,0,0,1-.61,9.27,6,6,0,0,0,5.16,6.74h0A47.05,47.05,0,0,1,305.44,255Z"/></svg>
|
Before Width: | Height: | Size: 743 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 7</title><path d="M317.23,77.07H114.73A18.55,18.55,0,0,0,97,90.36V89.6H76.87a6,6,0,0,0-6,6v95.3A17.59,17.59,0,0,0,59.05,207.5v18.63a17.58,17.58,0,1,0,35.16,0V207.5a17.59,17.59,0,0,0-11.34-16.41V101.6H97v-.73a18.63,18.63,0,0,0,9.49,11.29V256.59a9.9,9.9,0,0,0,9.85,9.89h4.48v52.58a18,18,0,0,0,18,18H296.44a18,18,0,0,0,18-18V267h4.29a9.88,9.88,0,0,0,9.87-9.89V110.2a18.51,18.51,0,0,0-11.37-33.13Zm-235,149.05a5.58,5.58,0,1,1-11.16,0V207.5a5.58,5.58,0,1,1,11.16,0ZM211.6,325.07H138.78a6,6,0,0,1-6-6V266.52l78.82.19Zm90.84-6a6,6,0,0,1-6,6H223.6V266.74l78.84.19Zm14.16-64.41-198.15-.47V236.05H316.6Zm0-30.61H118.46V205.14H316.6Zm0-30.92H118.46V174.22H316.6Zm0-30.92H118.46V143.3H316.6Zm0-30.92H118.46V114.13H316.6Zm.63-29.17H114.73a6.53,6.53,0,1,1,0-13.06h202.5a6.53,6.53,0,1,1,0,13.06Z"/></svg>
|
Before Width: | Height: | Size: 909 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 9</title><path d="M316.87,298.36l-70.08-70.08a98.74,98.74,0,1,0-20.22,20.22l70.08,70.08a14.3,14.3,0,0,0,20.22-20.22ZM81,169.4A86.65,86.65,0,1,1,167.69,256,86.75,86.75,0,0,1,81,169.4Z"/></svg>
|
Before Width: | Height: | Size: 311 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 49</title><path d="M315.21,299.52a5.84,5.84,0,0,0,.26-.53c.07-.18.12-.37.18-.55s.11-.37.15-.55,0-.38.07-.57,0-.38,0-.57,0-.38,0-.57,0-.38-.07-.57-.1-.37-.15-.55-.1-.37-.18-.55a5.84,5.84,0,0,0-.26-.53c-.09-.17-.17-.34-.28-.51a6,6,0,0,0-.38-.49c-.1-.12-.18-.25-.29-.37l-.1-.09-.09-.1L281.5,261.25l-.05,0a6,6,0,0,0-.86-.67l-.12-.07a6,6,0,0,0-.93-.46l-.13,0a6,6,0,0,0-1-.27l-.13,0a6,6,0,0,0-.93-.08h-.21a6,6,0,0,0-1,.12H276a5.93,5.93,0,0,0-1.05.34l0,0a6,6,0,0,0-1,.54l-.06,0a6.05,6.05,0,0,0-.85.73l0,0,0,0a6,6,0,0,0-.68.87l-.07.11a5.93,5.93,0,0,0-.46.93l0,.13a5.9,5.9,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93v26a6,6,0,0,0-1.67-.24c-45,0-81.53-34.67-81.53-77.29s36.57-77.29,81.53-77.29a6,6,0,0,0,1.32-.15v24.4a6,6,0,0,0,.08.93l0,.14a6,6,0,0,0,.27,1l.05.14a5.93,5.93,0,0,0,.46.92l.08.12a6,6,0,0,0,.67.85l0,.06,0,0,.26.24.19.17.27.2.21.16.28.17.38.21.37.18.17.06.39.14.18,0,.4.1.23,0,.35.05.57,0h0a6,6,0,0,0,1-.1h.09a6,6,0,0,0,1-.28l.11,0a6,6,0,0,0,.91-.46l.11-.07a6.05,6.05,0,0,0,.84-.66l.05,0,32.58-31.15,0-.05.15-.14c.11-.12.19-.25.29-.38a3.83,3.83,0,0,0,.66-1c.09-.17.19-.34.26-.52a5.88,5.88,0,0,0,.18-.56c.05-.18.11-.36.15-.55s0-.38.07-.58,0-.38,0-.57,0-.38,0-.57,0-.39-.07-.58-.1-.37-.15-.55a5.88,5.88,0,0,0-.18-.56c-.07-.18-.17-.35-.26-.52a5.91,5.91,0,0,0-.29-.52,6,6,0,0,0-.37-.48c-.1-.12-.18-.26-.29-.38l-.1-.09-.09-.1L281.14,94.42l-.05,0a6,6,0,0,0-.86-.67l-.12-.07a5.93,5.93,0,0,0-.93-.46l-.13,0a6,6,0,0,0-1-.27l-.13,0a6,6,0,0,0-.93-.08h-.21a6,6,0,0,0-1.05.12h-.05a6,6,0,0,0-1.05.34l0,0a6,6,0,0,0-1,.54l-.07,0a6,6,0,0,0-.85.73l0,0,0,.06a6,6,0,0,0-.67.85l-.08.12a5.93,5.93,0,0,0-.46.92l-.05.14a6,6,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93V125a6,6,0,0,0-1.32-.15c-42,0-77.61,26.56-89.39,63-10.67-38.1-47.14-66.25-90.37-66.25a6,6,0,1,0,0,12c45,0,81.53,34.67,81.53,77.29s-36.57,77.29-81.53,77.29a6,6,0,0,0,0,12c42,0,77.61-26.56,89.39-63,10.67,38.1,47.14,66.25,90.37,66.25a6,6,0,0,0,1.67-.24v24.73a6,6,0,0,0,.08.93l0,.14a5.9,5.9,0,0,0,.27,1l0,.13a5.93,5.93,0,0,0,.46.93l.07.11a6,6,0,0,0,.68.87l0,0,0,0,.28.26.17.16.28.21.21.15.26.16.44.24.34.16.19.07.37.13.19,0,.39.1.24,0,.35.05.57,0h0a6,6,0,0,0,1-.1h.09a6,6,0,0,0,1-.28l.11,0a6,6,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.84-.66l.05,0,32.58-31.15,0-.06.14-.13c.11-.11.19-.25.29-.37a6,6,0,0,0,.38-.49C315,299.86,315.12,299.69,315.21,299.52ZM283,112.8l17.9,17.11L283,147Zm.35,166.83,17.9,17.11-17.9,17.11Z"/></svg>
|
Before Width: | Height: | Size: 2.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 48</title><path d="M279.23,302.44a5.93,5.93,0,0,0,.46-.92l.05-.14a5.91,5.91,0,0,0,.27-1l0-.14a6,6,0,0,0,.08-.93V78A6,6,0,0,0,280,77l0-.14a5.88,5.88,0,0,0-.27-1l-.05-.14a6,6,0,0,0-.46-.92l-.08-.12a6,6,0,0,0-.67-.85l0-.06,0,0a6,6,0,0,0-.85-.73l-.07,0a5.93,5.93,0,0,0-1-.54l0,0a5.93,5.93,0,0,0-1.05-.34h-.05a6,6,0,0,0-1.05-.12h-.21a6,6,0,0,0-.94.08l-.13,0a5.93,5.93,0,0,0-1,.27l-.12,0a6,6,0,0,0-.94.47l-.11.07a6.1,6.1,0,0,0-.87.67l0,0L158,180.71V77.81a11.46,11.46,0,1,0-22.92,0V298.89a11.46,11.46,0,1,0,22.92,0V196.58L270,303.66l.05,0a6,6,0,0,0,.84.66l.11.07a6,6,0,0,0,.91.46l.11,0a6,6,0,0,0,1,.28h.09a6,6,0,0,0,1,.1h0l.56,0,.37-.05.22,0,.4-.1.18,0,.38-.14.19-.07.34-.16.45-.25.24-.15.23-.17.25-.19.19-.18.25-.24.05,0,0-.06a6,6,0,0,0,.67-.85ZM268.1,92V285.29L167,188.65Z"/></svg>
|
Before Width: | Height: | Size: 895 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 47</title><path d="M284.74,314.08a6,6,0,0,0,.46-.92l.05-.14a5.88,5.88,0,0,0,.27-1l0-.14a6,6,0,0,0,.08-.93V89.6a6,6,0,0,0-.08-.93l0-.14a5.88,5.88,0,0,0-.27-1l-.05-.14a6,6,0,0,0-.46-.92l-.08-.12a6,6,0,0,0-.67-.85l0-.06,0,0a6,6,0,0,0-.85-.73l-.07-.05a6,6,0,0,0-1-.54l0,0a6,6,0,0,0-1-.34h-.06a6.07,6.07,0,0,0-1-.12h-.21a6,6,0,0,0-.93.08l-.13,0a5.93,5.93,0,0,0-1,.27l-.12,0a6,6,0,0,0-.94.47l-.11.07a6.1,6.1,0,0,0-.87.67l0,0L160.72,195V96a16.64,16.64,0,0,0-33.28,0V306.71a16.64,16.64,0,1,0,33.28,0V205.57L275.47,315.3l.05,0a6,6,0,0,0,.84.66l.11.07a6,6,0,0,0,.91.46l.11,0a5.91,5.91,0,0,0,1,.28h.09a6.09,6.09,0,0,0,1,.1h0l.57,0,.35-.05.24,0,.38-.1.19,0,.36-.13.2-.07.3-.14q.27-.13.52-.29l.21-.13.23-.17.25-.19.2-.18.25-.24.05,0,0-.06a6,6,0,0,0,.67-.85Z"/></svg>
|
Before Width: | Height: | Size: 872 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 46</title><path d="M251.64,78.35a11.47,11.47,0,0,0-11.46,11.46V192.11L128.2,85l-.05,0a6,6,0,0,0-.86-.67l-.12-.07a5.93,5.93,0,0,0-.93-.46l-.13,0a5.91,5.91,0,0,0-1-.27l-.13,0a6.06,6.06,0,0,0-.93-.08h-.21a6,6,0,0,0-1.05.12h-.05a5.93,5.93,0,0,0-1.05.34l0,0a6,6,0,0,0-1,.54l-.07,0a6,6,0,0,0-.85.73l0,0,0,.06a6,6,0,0,0-.67.85l-.08.12a5.93,5.93,0,0,0-.46.92l-.05.14a6,6,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93V310.73a6,6,0,0,0,.08.93l0,.14a6,6,0,0,0,.27,1l.05.14a6,6,0,0,0,.46.92l.08.12a6,6,0,0,0,.67.85l0,.06,0,0,.26.24.19.17.27.2.21.16.28.17.38.21.37.18.17.06.39.14.18,0,.4.1.23,0,.35.05.57,0h0a6.09,6.09,0,0,0,1-.1h.09a5.87,5.87,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6.05,6.05,0,0,0,.84-.66l.05,0L240.19,208V310.89a11.46,11.46,0,1,0,22.92,0V89.81A11.47,11.47,0,0,0,251.64,78.35ZM231.12,200,130.06,296.69V103.41Z"/></svg>
|
Before Width: | Height: | Size: 942 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 45</title><path d="M262,78.35A16.66,16.66,0,0,0,245.33,95V196.12L130.59,86.4l-.05,0a6,6,0,0,0-.86-.67l-.12-.07a6,6,0,0,0-.93-.46l-.13,0a6,6,0,0,0-1-.27l-.13,0a6,6,0,0,0-.93-.08h-.21a6,6,0,0,0-1.05.12h0a6,6,0,0,0-1.06.34l0,0a6,6,0,0,0-1,.54l-.06,0a6,6,0,0,0-.85.73l0,0,0,.06a6,6,0,0,0-.67.85l-.08.12a6,6,0,0,0-.46.92l-.05.14a6,6,0,0,0-.27,1l0,.14a6,6,0,0,0-.08.93V312.09a6,6,0,0,0,.08.93l0,.14a6,6,0,0,0,.27,1l.05.14a5.93,5.93,0,0,0,.46.92l.08.12a6,6,0,0,0,.67.85l0,.06,0,0,.26.24.19.17.27.2.21.16.28.17.38.21.37.18.17.06.39.14.18,0,.4.1.23,0,.35.05.57,0h0a6,6,0,0,0,1-.1h.09a5.92,5.92,0,0,0,1-.28l.11,0a5.93,5.93,0,0,0,.91-.46l.11-.07a6,6,0,0,0,.84-.66l.05,0L245.33,206.7v99a16.64,16.64,0,1,0,33.28,0V95A16.66,16.66,0,0,0,262,78.35Z"/></svg>
|
Before Width: | Height: | Size: 860 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy 2</title><path d="M202.5,6.5C95.8,6.5,9,93.3,9,200S95.8,393.5,202.5,393.5,396,306.7,396,200,309.2,6.5,202.5,6.5Zm0,375C102.42,381.5,21,300.08,21,200S102.42,18.5,202.5,18.5,384,99.92,384,200,302.58,381.5,202.5,381.5Z"/><path d="M315.49,194H291.11l19-19a6,6,0,0,0-8.48-8.49L274.14,194H216.49l41.6-41.6h37.49a6,6,0,0,0,0-12H270.09L286.5,124a6,6,0,0,0-8.48-8.49l-16.8,16.8V106a6,6,0,0,0-12,0v38.28L208,185.51v-59l26.6-26.6a6,6,0,0,0-8.48-8.49L208,109.58V86.51a6,6,0,1,0-12,0v23.44L177.52,91.46A6,6,0,0,0,169,99.94l27,27v58.6l-41.38-41.38V106.25a6,6,0,0,0-12,0v25.89L126,115.51a6,6,0,0,0-8.48,8.49l16.63,16.63H108.26a6,6,0,0,0,0,12h37.89L187.52,194H129.4l-26.72-26.72a6,6,0,1,0-8.48,8.49L112.43,194H88.52a6,6,0,0,0,0,12h24L94.19,224.37a6,6,0,1,0,8.48,8.49L129.54,206h58l-40.43,40.43H108.91a6,6,0,1,0,0,12h26.18L117.52,276a6,6,0,0,0,8.48,8.49l17.28-17.28V292.8a6,6,0,0,0,12,0V255.21L196,214.48v57.17l-27,27a6,6,0,0,0,8.48,8.49L196,288.63v24.86a6,6,0,0,0,12,0V289l18.1,18.1a6,6,0,1,0,8.48-8.49L208,272.08V214.49l40.84,40.84v37.41a6,6,0,0,0,12,0V267.32L278,284.49A6,6,0,1,0,286.5,276l-17.64-17.64h26.36a6,6,0,1,0,0-12H256.86L216.49,206h59.1l26.06,26.06a6,6,0,1,0,8.48-8.49L292.56,206h22.93a6,6,0,1,0,0-12Z"/></svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 24</title><path d="M313,71H89A18,18,0,0,0,71,89V313a18,18,0,0,0,18,18H313a18,18,0,0,0,18-18V89A18,18,0,0,0,313,71Zm6,242a6,6,0,0,1-6,6H89a6,6,0,0,1-6-6V89a6,6,0,0,1,6-6H313a6,6,0,0,1,6,6Z"/></svg>
|
Before Width: | Height: | Size: 315 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 126</title><rect x="77" y="79" width="248" height="248" rx="12" ry="12"/></svg>
|
Before Width: | Height: | Size: 190 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 200</title><path d="M330.5,171.89a5.92,5.92,0,0,0,.3-.56c.07-.16.14-.32.2-.48a5.92,5.92,0,0,0,.17-.57c0-.18.08-.37.11-.55s0-.17.05-.25a6,6,0,0,0,0-.63v0a6,6,0,0,0-.11-1.12h0a6,6,0,0,0-.32-1.08l0,0a6,6,0,0,0-.53-1l0,0a6,6,0,0,0-.74-.92h0l0,0a6,6,0,0,0-.89-.73l-.08,0a6,6,0,0,0-1-.51l-.1,0a6,6,0,0,0-1-.3l-.1,0-.44-.07-79.95-8.67L206.75,82.3l-.09-.15-.19-.31-.15-.21-.2-.26-.18-.21-.21-.23-.21-.2-.22-.19-.24-.18-.23-.16-.27-.17-.23-.13-.31-.15-.17-.08-.07,0-.3-.11-.27-.09-.23-.06-.35-.08-.16,0-.42-.06h-.12l-.46,0h-.16l-.41,0-.23,0-.34.05-.26.06-.31.08-.23.08-.33.12-.19.09-.35.17,0,0-.12.08-.34.21-.18.13-.29.22-.19.16-.24.23-.19.2-.2.23-.18.23-.17.24-.17.27-.13.23c-.06.1-.11.21-.16.32l-.08.16L164.3,156.64l-79.58,8.63-.42.07-.11,0a6,6,0,0,0-1,.3l-.12,0a6,6,0,0,0-.94.49l-.09.06a6,6,0,0,0-.87.71l0,0v0a6,6,0,0,0-.74.9l0,0a6,6,0,0,0-.54,1v0a6,6,0,0,0-.43,2.21s0,0,0,0a6.06,6.06,0,0,0,0,.64c0,.08,0,.16.05.24s.07.37.11.55.1.38.17.57.12.32.2.48a5.94,5.94,0,0,0,.3.56c.08.14.17.28.26.41a6,6,0,0,0,.44.54c.07.07.12.16.19.23L138.54,233l-7.77,80.77c0,.07,0,.14,0,.21s0,.23,0,.34,0,.19,0,.28,0,.21,0,.31,0,.2,0,.3,0,.19,0,.28,0,.21.07.31,0,.17.07.26.07.21.11.32l.09.24c0,.11.1.22.15.33l.1.2c.06.12.14.24.21.36l.08.13v0a6,6,0,0,0,.42.56l.13.14c.11.12.22.24.34.35l.18.16.38.3.15.11a6,6,0,0,0,.58.35l.09,0q.26.13.53.24l.18.06.47.15.21.05.46.08.23,0h.08l.56,0h0a6,6,0,0,0,1-.1l.31-.07a5.93,5.93,0,0,0,.68-.2l.32-.12a6,6,0,0,0,.63-.32l.26-.15.08,0,66.72-43.82,69,40.38h0a6,6,0,0,0,.84.4l.15.06a5.93,5.93,0,0,0,.89.25l.15,0a6,6,0,0,0,.94.09h.15a6,6,0,0,0,.73-.05h.1l.38-.08.21,0,.25-.08a6,6,0,0,0,1.25-.54l.1-.06.28-.19.21-.14.18-.15a5.94,5.94,0,0,0,.83-.82l.22-.27.1-.15c.08-.12.16-.23.23-.36v0l.07-.14c.07-.12.13-.24.19-.36l.09-.22c0-.11.09-.22.13-.33s.05-.17.08-.25.06-.2.09-.31,0-.18.06-.28,0-.2.05-.3,0-.19,0-.29,0-.19,0-.29,0-.21,0-.32,0-.18,0-.27,0-.23,0-.35,0-.14,0-.21l-12-80.14,56.85-56.61c.07-.07.13-.16.19-.24a6,6,0,0,0,.44-.54C330.33,172.16,330.42,172,330.5,171.89Zm-69.9,57.73L271,299.2,210.84,264a8.26,8.26,0,0,0-8.76.23l-58.17,38.2,6.74-70.06a8.24,8.24,0,0,0-2.38-6.63L98.46,175.85l69.27-7.52a8.34,8.34,0,0,0,6.75-5l27.66-64.47,34.32,62.75a8.33,8.33,0,0,0,6.41,4.29l69.36,7.53L263,222.49A8.36,8.36,0,0,0,260.61,229.62Z"/></svg>
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152 copy</title><path d="M201,7.47C94.28,7.47,7.48,94.28,7.48,201s86.8,193.5,193.5,193.5,193.5-86.8,193.5-193.5S307.67,7.47,201,7.47Zm0,375c-100.08,0-181.5-81.42-181.5-181.5S100.9,19.47,201,19.47s181.5,81.42,181.5,181.5S301.06,382.47,201,382.47Z"/><path d="M203,128.94A71.08,71.08,0,1,0,274,200,71.16,71.16,0,0,0,203,128.94Zm0,130.15A59.08,59.08,0,1,1,262,200,59.14,59.14,0,0,1,203,259.09Z"/><path d="M203,115.6a6,6,0,0,0,6-6V86.53a6,6,0,1,0-12,0V109.6A6,6,0,0,0,203,115.6Z"/><path d="M245.18,126.91a6,6,0,0,0,8.2-2.2l11.54-20a6,6,0,1,0-10.39-6l-11.54,20A6,6,0,0,0,245.18,126.91Z"/><path d="M281.28,160.81a6,6,0,0,0,3-.8l20-11.54a6,6,0,1,0-6-10.39l-20,11.54a6,6,0,0,0,3,11.2Z"/><path d="M316.46,194H293.38a6,6,0,0,0,0,12h23.08a6,6,0,0,0,0-12Z"/><path d="M304.26,251.56l-20-11.54a6,6,0,1,0-6,10.39l20,11.54a6,6,0,1,0,6-10.39Z"/><path d="M253.38,275.31a6,6,0,1,0-10.39,6l11.54,20a6,6,0,0,0,10.39-6Z"/><path d="M203,284.42a6,6,0,0,0-6,6V313.5a6,6,0,0,0,12,0V290.42A6,6,0,0,0,203,284.42Z"/><path d="M160.77,273.11a6,6,0,0,0-8.2,2.2l-11.54,20a6,6,0,1,0,10.39,6l11.54-20A6,6,0,0,0,160.77,273.11Z"/><path d="M121.68,240l-20,11.54a6,6,0,1,0,6,10.39l20-11.54a6,6,0,0,0-6-10.39Z"/><path d="M118.56,200a6,6,0,0,0-6-6H89.49a6,6,0,1,0,0,12h23.08A6,6,0,0,0,118.56,200Z"/><path d="M127.68,149.61l-20-11.54a6,6,0,0,0-6,10.39l20,11.54a6,6,0,0,0,6-10.39Z"/><path d="M152.57,124.72a6,6,0,0,0,10.39-6l-11.54-20a6,6,0,0,0-10.39,6Z"/><path d="M196.25,153.52a51.07,51.07,0,0,0-39.16,35.41,6,6,0,1,0,11.48,3.48,39.1,39.1,0,0,1,30-27.11,6,6,0,1,0-2.3-11.78Z"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 152</title><path d="M197,96.52A103.48,103.48,0,1,0,300.48,200,103.6,103.6,0,0,0,197,96.52Zm0,195A91.48,91.48,0,1,1,288.48,200,91.58,91.58,0,0,1,197,291.48Z"/><path d="M197,70.57a6,6,0,0,0,6-6V30a6,6,0,0,0-12,0V64.57A6,6,0,0,0,197,70.57Z"/><path d="M261.72,87.91a6,6,0,0,0,8.2-2.2L287.2,55.78a6,6,0,0,0-10.39-6L259.52,79.71A6,6,0,0,0,261.72,87.91Z"/><path d="M314.29,138.29a6,6,0,0,0,3-.8l29.94-17.28a6,6,0,0,0-6-10.39l-29.94,17.28a6,6,0,0,0,3,11.2Z"/><path d="M367,194H332.43a6,6,0,0,0,0,12H367a6,6,0,0,0,0-12Z"/><path d="M347.22,279.8l-29.94-17.28a6,6,0,1,0-6,10.39l29.94,17.28a6,6,0,0,0,6-10.39Z"/><path d="M269.91,314.29a6,6,0,0,0-10.39,6l17.28,29.94a6,6,0,0,0,10.39-6Z"/><path d="M197,329.43a6,6,0,0,0-6,6V370a6,6,0,0,0,12,0V335.43A6,6,0,0,0,197,329.43Z"/><path d="M132.28,312.09a6,6,0,0,0-8.2,2.2L106.8,344.22a6,6,0,1,0,10.39,6l17.28-29.94A6,6,0,0,0,132.28,312.09Z"/><path d="M76.71,262.52,46.78,279.8a6,6,0,1,0,6,10.39l29.94-17.28a6,6,0,1,0-6-10.39Z"/><path d="M67.57,200a6,6,0,0,0-6-6H27a6,6,0,0,0,0,12H61.57A6,6,0,0,0,67.57,200Z"/><path d="M82.71,127.09,52.78,109.8a6,6,0,0,0-6,10.39l29.94,17.28a6,6,0,0,0,6-10.39Z"/><path d="M124.09,85.71a6,6,0,0,0,10.39-6L117.2,49.78a6,6,0,0,0-10.39,6Z"/><path d="M187.5,133.28a73.52,73.52,0,0,0-56.38,51,6,6,0,1,0,11.48,3.48,61.55,61.55,0,0,1,47.2-42.68,6,6,0,1,0-2.3-11.78Z"/></svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 181</title><path d="M318,72H94A18,18,0,0,0,76,90V314a18,18,0,0,0,18,18H318a18,18,0,0,0,18-18V90A18,18,0,0,0,318,72ZM88,90a6.05,6.05,0,0,1,0-.61,6,6,0,0,1,1.73-3.63q.2-.2.43-.39A6,6,0,0,1,94,84H318a6,6,0,0,1,3.81,1.37q.22.18.43.39A6,6,0,0,1,324,89.39a6.05,6.05,0,0,1,0,.61v28.4H88ZM324,314a6,6,0,0,1-6,6H94a6,6,0,0,1-6-6V130.4H324Z"/><path d="M126.79,304H176a18,18,0,0,0,18-18V163.6a18,18,0,0,0-18-18H126.79a18,18,0,0,0-18,18V286A18,18,0,0,0,126.79,304Zm-6-140.4a6,6,0,0,1,6-6H176a6,6,0,0,1,6,6V286a6,6,0,0,1-6,6H126.79a6,6,0,0,1-6-6Z"/><path d="M236.79,304H286a18,18,0,0,0,18-18V163.6a18,18,0,0,0-18-18H236.79a18,18,0,0,0-18,18V286A18,18,0,0,0,236.79,304Zm-6-140.4a6,6,0,0,1,6-6H286a6,6,0,0,1,6,6V286a6,6,0,0,1-6,6H236.79a6,6,0,0,1-6-6Z"/><circle cx="110.23" cy="101.49" r="6.53"/><circle cx="134.38" cy="101.49" r="6.53"/><circle cx="158.53" cy="101.49" r="6.53"/></svg>
|
Before Width: | Height: | Size: 982 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 66 copy 22</title><path d="M298.58,75.37H111.42A11.4,11.4,0,0,0,100,86.76V148.7a11.4,11.4,0,0,0,11.39,11.39h34.11a11.4,11.4,0,0,0,11.39-11.39V132.25h19.87V254.9H156.53a11.4,11.4,0,0,0-11.39,11.39V300.4a11.4,11.4,0,0,0,11.39,11.39h96.95a11.4,11.4,0,0,0,11.39-11.39V266.29a11.4,11.4,0,0,0-11.39-11.39H233.67V132.25h19.42V148.7a11.4,11.4,0,0,0,11.39,11.39h34.11A11.4,11.4,0,0,0,310,148.7V86.76A11.4,11.4,0,0,0,298.58,75.37ZM298,148.08H265.08V120.25H221.67V266.9h31.19v32.88H157.14V266.9h31.64V120.25H144.92v27.83H112V87.37H298Z"/><path d="M304,323.37H106a6,6,0,1,0,0,12H304a6,6,0,0,0,0-12Z"/></svg>
|
Before Width: | Height: | Size: 706 B |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><title>Artboard 188 copy 6</title><path d="M308.88,112.2H245.22V88.61a9.71,9.71,0,0,0-9.7-9.7H168.33a9.71,9.71,0,0,0-9.7,9.7V112.2H93.12a6,6,0,0,0,0,12h12.62V277.46a43.5,43.5,0,0,0,43.45,43.45H252.81a43.5,43.5,0,0,0,43.45-43.45V124.2h12.62a6,6,0,0,0,0-12ZM170.63,90.91h62.59V112.2H170.63ZM284.26,277.46a31.49,31.49,0,0,1-31.45,31.45H149.19a31.49,31.49,0,0,1-31.45-31.45V124.2H284.26Z"/><path d="M201.28,277.59a6,6,0,0,0,6-6V159.71a6,6,0,1,0-12,0V271.59A6,6,0,0,0,201.28,277.59Z"/><path d="M164,263.1a6,6,0,0,0,6-6V174.5a6,6,0,0,0-12,0v82.6A6,6,0,0,0,164,263.1Z"/><path d="M237.65,263.1a6,6,0,0,0,6-6V174.5a6,6,0,0,0-12,0v82.6A6,6,0,0,0,237.65,263.1Z"/></svg>
|
Before Width: | Height: | Size: 753 B |