mirror of
https://github.com/konpa/devicon.git
synced 2025-03-13 17:29:42 +01:00
Merge remote-tracking branch 'upstream/develop' into feature/306-jenkins
* upstream/develop: Fix the delete-branch arg in the workflow yaml Built new icons, icomoon.json and devicon.css Fix the yunohost-plain.svg Add new_icons.png to gitignore. Fixed yunohost, clojure, clojurescript, and redux Built new icons, icomoon.json and devicon.css Add screenshot code, update the CONTRIBUTING.md and fix clojure Built new icons, icomoon.json and devicon.css Fix it so mocha now have a plain font Fix an error in CONTRIBUTING.md Added a section on svg standards to CONTRIBUTING.md Built new icons, icomoon.json and devicon.css Added code to ensure we always get run log Added colored class and change README.md Updated the CONTRIBUTING.md, README.md and code doc
This commit is contained in:
commit
e9c25c249b
@ -130,6 +130,8 @@ class SeleniumRunner:
|
||||
self.test_for_possible_alert(self.SHORT_WAIT_IN_SEC, "Dismiss")
|
||||
self.remove_color_from_icon()
|
||||
|
||||
# take a screenshot of the icons that were just added
|
||||
self.driver.save_screenshot("new_icons.png");
|
||||
self.click_hamburger_input()
|
||||
select_all_button = WebDriverWait(self.driver, self.LONG_WAIT_IN_SEC).until(
|
||||
ec.element_to_be_clickable((By.XPATH, "//button[text()='Select All']"))
|
||||
|
12
.github/scripts/build_assets/filehandler.py
vendored
12
.github/scripts/build_assets/filehandler.py
vendored
@ -9,8 +9,8 @@ import re
|
||||
def find_new_icons(devicon_json_path: str, icomoon_json_path: str) -> List[dict]:
|
||||
"""
|
||||
Find the newly added icons by finding the difference between
|
||||
the devicon_test.json and the icomoon_test.json.
|
||||
:param devicon_json_path, the path to the devicon_test.json.
|
||||
the devicon.json and the icomoon.json.
|
||||
:param devicon_json_path, the path to the devicon.json.
|
||||
:param icomoon_json_path: a path to the iconmoon.json.
|
||||
:return: a list of the new icons as JSON objects.
|
||||
"""
|
||||
@ -33,8 +33,8 @@ def is_not_in_icomoon_json(icon, icomoon_json) -> bool:
|
||||
Checks whether the icon's name is not in the icomoon_json.
|
||||
:param icon: the icon object we are searching for.
|
||||
:param icomoon_json: the icomoon json object parsed from
|
||||
icomoon_test.json.
|
||||
:return: True if icon's name is not in the icomoon_test.json, else False.
|
||||
icomoon.json.
|
||||
:return: True if icon's name is not in the icomoon.json, else False.
|
||||
"""
|
||||
pattern = re.compile(f"^{icon['name']}-")
|
||||
|
||||
@ -46,7 +46,7 @@ def is_not_in_icomoon_json(icon, icomoon_json) -> bool:
|
||||
|
||||
def get_svgs_paths(new_icons: List[dict], icons_folder_path: str) -> List[str]:
|
||||
"""
|
||||
Get all the suitable svgs file path listed in the devicon_test.json.
|
||||
Get all the suitable svgs file path listed in the devicon.json.
|
||||
:param new_icons, a list containing the info on the new icons.
|
||||
:param icons_folder_path, the path where the function can find the
|
||||
listed folders.
|
||||
@ -66,7 +66,9 @@ def get_svgs_paths(new_icons: List[dict], icons_folder_path: str) -> List[str]:
|
||||
aliases = [] # create empty list of aliases if not provided in devicon.json
|
||||
|
||||
for font_version in icon_info["versions"]["font"]:
|
||||
# if it's an alias, we don't want to make it into an icon
|
||||
if is_alias(font_version, aliases):
|
||||
print(f"Not exist {icon_info['name']}-{font_version}.svg")
|
||||
continue
|
||||
|
||||
file_name = f"{icon_info['name']}-{font_version}.svg"
|
||||
|
9
.github/workflows/build_icons.yml
vendored
9
.github/workflows/build_icons.yml
vendored
@ -27,9 +27,16 @@ jobs:
|
||||
./icomoon.json ./devicon.json ./icons ./ --headless
|
||||
- name: Upload geckodriver.log for debugging purposes
|
||||
uses: actions/upload-artifact@v2
|
||||
if: ${{failure()}}
|
||||
with:
|
||||
name: geckodriver-log
|
||||
path: ./geckodriver.log
|
||||
- name: Upload screenshot of the newly made icons
|
||||
uses: actions/upload-artifact@v2
|
||||
if: ${{success()}}
|
||||
with:
|
||||
name: new_icons
|
||||
path: ./new_icons.png
|
||||
- name: Running npm task for building devicon.min.css
|
||||
if: ${{ success() }}
|
||||
run: npm run build-css
|
||||
@ -41,4 +48,4 @@ jobs:
|
||||
commit-message: 'Built new icons, icomoon.json and devicon.css'
|
||||
title: 'bot:build new icons, icomoon.json and devicon.css'
|
||||
body: 'Automated font-building task ran by GitHub Actions bot'
|
||||
delete-branch: true
|
||||
delete-branch: ${{true}}
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,4 +3,5 @@ node_modules
|
||||
.idea
|
||||
geckodriver.log
|
||||
__pycache__
|
||||
*.pyc
|
||||
*.pyc
|
||||
new_icons.png
|
245
CONTRIBUTING.md
245
CONTRIBUTING.md
@ -2,50 +2,239 @@
|
||||
<p>
|
||||
First of all, thanks for taking the time to contribute! This project can only grow and live by your countless contributions. To keep this project maintable we developed some guidelines for contributions.
|
||||
</p>
|
||||
<h2>Submitting icon</h2>
|
||||
|
||||
<h2>Table of Content</h2>
|
||||
<ul>
|
||||
<li>Create a separated pull request for each icon (no matter how many variations)</li>
|
||||
<li>Include the name of the icon in the pull request f.e. "new icon: html5 (original, plain, line)"</li>
|
||||
<li>At least the plain or line version of the icon is required (since those are required for the icon font)</li>
|
||||
<li>Modify <a href="https://github.com/konpa/devicon/blob/master/devicon.json">devicon.json</a> to include the icon (or variations)</li>
|
||||
<li>Modify <a href="https://github.com/konpa/devicon/blob/master/devicon-colors.css">devicon-colors.css</a> to include the colored version of the icon</li>
|
||||
<li>optional: Add a image of the new icon(s) to the description of the pull request</li>
|
||||
<li>optional: Reference the issues regarding the new icon</li>
|
||||
<li><a href="#overview">Overview on Submitting Icon</a></li>
|
||||
<li><a href="#versionNaming">Naming Conventions</a></li>
|
||||
<li><a href="#svgStandards">SVG Standards</a></li>
|
||||
<li><a href="#orgGuidelines">Organizational Guidelines</a></li>
|
||||
<li><a href="#updateDevicon">Updating the <code>devicon.json</code></a></li>
|
||||
<li><a href="#example">Example</a></li>
|
||||
<li><a href="#requestingIcon">Requesting An Icon</a></li>
|
||||
<li><a href="#buildScript">Regarding the Build Script</a></li>
|
||||
</ul>
|
||||
<h3>Icon formats and naming conventions</h3>
|
||||
<p>Each icon comes in different variations:</p>
|
||||
|
||||
<hr>
|
||||
<h2 id="overview">Overview on Submitting Icon</h2>
|
||||
<p>Here is an overview of what you have to do to submit your icons to the repo.</p>
|
||||
<ol>
|
||||
<li>Create the svgs for each logo versions that you have </li>
|
||||
<li>Put the svgs for each logo into its own folders in <code>/icons</code> </li>
|
||||
<li><a href="#updateDevicon">Update the <code>devicon.json</code> to include the new icon</a> </li>
|
||||
<li>Create a separated pull request (PR) for each icon (no matter how many versions). </li>
|
||||
<li>Include the name of the icon in the pull request title. Follow this format: <code>new icon: {{logoName}} ({{versions}})</code> </li>
|
||||
<li><i>Optional</i>: Add images of the new icon(s) to the description of the pull request. This would help speed up the review process </li>
|
||||
<li><i>Optional</i>: Reference the issues regarding the new icon. </li>
|
||||
<li>Wait for a repo maintainer to review your changes. Once they are satisfied, they will <a href="#buildScript">build your repo </a>. This will create a PR into your branch.</li>
|
||||
<li>Review the PR. It should contain the icon versions of your svgs. Accept the changes if you are satisfied</li>
|
||||
<li>Once you accept the changes, a maintainer will accept your PR into the repo.</li>
|
||||
</ol>
|
||||
|
||||
<hr>
|
||||
<h2 id='versionNaming'>Versions and Naming Conventions</h2>
|
||||
<p>Each icon can come in different versions. So far, we have:</p>
|
||||
<ul>
|
||||
<li>original</li>
|
||||
<li>original-wordmark</li>
|
||||
<li>plain</li>
|
||||
<li>plain-wordmark</li>
|
||||
<li>line</li>
|
||||
<li>line-wordmark</li>
|
||||
<li><b>original</b>: the original logo. Can contains multiple colors. <a href="https://github.com/devicons/devicon/blob/master/icons/amazonwebservices/amazonwebservices-original.svg"> Example </a> </li>
|
||||
<li><b>original-wordmark</b>: similar to the above but must contain the name of the technology.<a href="https://github.com/devicons/devicon/blob/master/icons/amazonwebservices/amazonwebservices-original-wordmark.svg"> Example </a></li>
|
||||
<li><b>plain</b>: a one-color version of the original logo.<a href="https://github.com/devicons/devicon/blob/master/icons/android/android-plain.svg"> Example </a></li>
|
||||
<li><b>plain-wordmark</b>: a one-color version of the original logo but with wordmark.<a href="https://github.com/devicons/devicon/blob/master/icons/android/android-plain-wordmark.svg"> Example </a></li>
|
||||
<li><b>line</b>: a one-color, line version of the original logo.<a href="https://github.com/devicons/devicon/blob/master/icons/apache/apache-line.svg"> Example </a></li>
|
||||
<li><b>line-wordmark</b>: a one-color, line version of the original logo but with wordmark.<a href="https://github.com/devicons/devicon/blob/master/icons/apache/apache-line-wordmark.svg"> Example </a></li>
|
||||
</ul>
|
||||
<p>
|
||||
This is not mandatory, an icon can only have one or two variations available. Just keep in mind that the minimum is 1 and the maximum 6 (for now).
|
||||
It is not mandatory to have 6 versions for each icon. An icon can only have one or two versions available. Just keep in mind that the minimum is 1 and the maximum 6 (for now). You must also have at least one version that can be make into an icon.
|
||||
</p>
|
||||
<p>
|
||||
The plain and line variations (with or without wordmark) are designed to be available in the final icon font. So they need to stay as simple as possible (one color and ensure that the paths are united before to export to svg). You can use a service like <a href="https://compressor.io/">compressor</a> or <a href="https://petercollingridge.appspot.com/svg-editor">SVG Editor</a> in order to optimize the svg file.
|
||||
The <b>plain</b> and <b>line</b> versions (with or without wordmark) are designed to be available in the final icon font.
|
||||
</p>
|
||||
<p>
|
||||
The original versions are only available in svg format, so they do not need to be as simple and they can contain numerous colors.
|
||||
The <b>original</b> version are only available in svg format, so they do not need to be as simple and can contain numerous colors.
|
||||
</p>
|
||||
<p>
|
||||
Some icons are really simple (like the apple one), so the original version can be used for the icon font. In this case, I'll add an alias so they can be found with the "original" or "plain" naming convention.
|
||||
Some icons are really simple (like the Apple one), so the original version can be used as the plain version and as the icon font. In this case, you'll only need to make only one of the version (either "original" or "plain"). You can then add an alias in the <code>devicon.json</code> so they can be found with either the "original" or "plain" naming convention.
|
||||
</p>
|
||||
<h3>Organizational guidelines</h3>
|
||||
|
||||
<hr>
|
||||
<h2 id='svgStandards'>SVG Standards</h2>
|
||||
<p>Before you submit your logos/svgs, please ensure that they meet the following standard:</p>
|
||||
<ul>
|
||||
<li>Each icon has his own folder located in the "icons" folder</li>
|
||||
<li>Each icon folder contains one .eps file and as many .svg files as versions available</li>
|
||||
<li>The .eps file contains all available versions of an icon. Each version is contained in a 128px by 128px artboard</li>
|
||||
<li>Each .svg file contains one version of an icon in a "0 0 128 128" viewbox</li>
|
||||
<li>The naming convention for the svg file is the following: (icon name)-(original/plain/line)-(wordmark)</li>
|
||||
<li>The background must be transparent.</li>
|
||||
<li>The <b>plain</b> and <b>line</b> versions (with or without wordmark) need to stay as simple as possible. They must have only one color and the paths are united before exporting to svg.
|
||||
</li>
|
||||
<li>Optimize/compress your SVGs. You can use a service like <a href="https://compressor.io/">compressor</a> or <a href="https://petercollingridge.appspot.com/svg-editor">SVG Editor</a>.</li>
|
||||
<li>
|
||||
</ul>
|
||||
<h2>Requesting a icon</h2>
|
||||
|
||||
<hr>
|
||||
<h2 id='orgGuidelines'>Organizational Guidelines</h2>
|
||||
<ul>
|
||||
<li>Each icon has its own folder located in the <code>icons</code> folder</li>
|
||||
<li>Each icon folder contains one <code>.eps</code> file and as many <code>.svg</code> files as versions available</li>
|
||||
<li>The <code>.eps</code> file contains all available versions of an icon. Each version is contained in a 128px by 128px artboard</li>
|
||||
<li>Each <code>.svg</code> file contains one version of an icon in a <code>0 0 128 128</code> viewbox</li>
|
||||
<li>The naming convention for the svg file is the following: <code>(icon name)-(original|plain|line)-(wordmark)</code></li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<h2 id='updateDevicon'> Updating the <code>devicon.json</code> </h2>
|
||||
<p>
|
||||
Before you open a PR into Devicon, you'd have to update the <code>devicon.json</code>. This is essential for our build script to work and to document your work.
|
||||
</p>
|
||||
<p>
|
||||
Here is the object that each of your logo must have:
|
||||
</p>
|
||||
|
||||
<pre>
|
||||
<code>
|
||||
{
|
||||
"name": string, // the official name of the technology. Must be lower case, no space or use the dash '-' character.
|
||||
"tags": string[], // list of tags relating to the technology for search purpose
|
||||
"versions": {
|
||||
"svg": VersionString[], // list the svgs that you have
|
||||
"font": VersionString[] // list the fonts acceptable versions that you have
|
||||
},
|
||||
"color": string, // the main color of the logo. Only track 1 color
|
||||
"aliases": AliasObj[] // keeps track of the aliases
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
Here is the AliasObj interface:
|
||||
</p>
|
||||
<pre>
|
||||
<code>
|
||||
{
|
||||
"base": VersionString, // the base version
|
||||
"alias": VersionString // the alias version that's similar to the base version
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
Here is what VersionString means:
|
||||
</p>
|
||||
<ol>
|
||||
<li> If you have "html5-original", the version string would be "original" </li>
|
||||
<li> If you have "react-line-wordmark", the version string would be "line-wordmark" </li>
|
||||
<li> See <a href="#iconFormat">Icon Formats and Naming Conventions</a> for more details </li>
|
||||
</ol>
|
||||
|
||||
<hr>
|
||||
<h2 id='example'>Example </h2>
|
||||
<p>
|
||||
As an example, let's assume you have created the svgs for Amazon Web Services and Redhat logos.
|
||||
</p>
|
||||
<p>For the Amazon Web Services svgs, you have the following versions: "original", "original-wordmark", "plain-wordmark". However, the "original" version is simple enough to be a "plain" version as well. Note that we are not using the acronym AWS.</p>
|
||||
<p>For the Redhat svg, you have the "original", "original-wordmark", "plain", "plain-wordmark" versions. </p>
|
||||
<ol>
|
||||
<li>
|
||||
Put the svgs for each logo that you have into its own folders in <code>/icons</code>
|
||||
<ul>
|
||||
<li>This means you would create two folders: one for <code>amazonwebservices</code> and one for <code>redhat</code></li>
|
||||
<li><b>Note</b>: don't do this in the same commits. We want to have each logo in its own PR so don't create these two folders in the same commit</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#updateDevicon">Update the <code>devicon.json</code> to include the icon (or variations)</a>
|
||||
<ul>
|
||||
<li>For the <code>amazonwebservices</code>, you would do this
|
||||
<pre>
|
||||
<code>
|
||||
{
|
||||
"name": "amazonwebservices",
|
||||
"tags": [
|
||||
"cloud",
|
||||
"hosting",
|
||||
"server"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [ // here are the versions that are available in svgs
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [ // here are the versions that will be used to create icons
|
||||
"original", // original is simple enough to be used as plain
|
||||
"plain-wordmark",
|
||||
]
|
||||
},
|
||||
"color": "#F7A80D", // note the '#' character
|
||||
"aliases": [
|
||||
{
|
||||
"base": "original", // here is the base version aka the one that we will upload to Icomoon
|
||||
"alias": "plain" // this is its alias. Our script will create a reference so we can search using "original" or "plain"
|
||||
}
|
||||
]
|
||||
}
|
||||
</code>
|
||||
</pre>
|
||||
</li>
|
||||
<li>For the <code>redhat</code>, you would do this
|
||||
<pre>
|
||||
<code>
|
||||
{
|
||||
"name": "redhat",
|
||||
"tags": [
|
||||
"server",
|
||||
"linux"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#e93442",
|
||||
"aliases": [] // no aliases
|
||||
},
|
||||
</code>
|
||||
</pre>
|
||||
</li>
|
||||
<li><b>Note</b>: again, don't do this in the same commits. We want to have each logo in its own PR so don't create two folders in the same commit</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Create a separated pull request (PR) for each icon (no matter how many variations).
|
||||
<ul>
|
||||
<li>This means you would have to create two PRs</li>
|
||||
<li>For Amazon Web Services, the branch name would be icons/amazonwebservices. </li>
|
||||
<li>For Redhat, the branch name would be icons/redhat. </li>
|
||||
<li> </li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
Include the name of the icon in the pull request. Follow this format: "new icon: {{logoName}} ({{versions}})"
|
||||
<ul>
|
||||
<li>For Amazon Web Services, your PR title should be "new icon: amazonwebservices (original, original-wordmark, plain-wordmark)"</li>
|
||||
<li>For Redhat, your PR title should be "new icon: redhat (original, original-wordmark, plain, plain-wordmark)"</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>For the rest of the steps, you can follow <a href="#overview">Overview on Submitting Icon</a></li>
|
||||
</ol>
|
||||
|
||||
<hr>
|
||||
<h2 id='requestingIcon'>Requesting an Icon</h2>
|
||||
<p>When you want to request a new icon please feel free to create a issue following some simple guidelines:</p>
|
||||
<ul>
|
||||
<li>Search for other issues already requesting the icon</li>
|
||||
<li>Create an issue naming it "Icon request: <i>name-of-the-icon</i>"; please create separated issues for each icon</li>
|
||||
<li>If an issue doesn't exist, create an issue naming it "Icon request: <i>name-of-the-icon</i>". </li>
|
||||
<li>Please create separated issues for each icon</li>
|
||||
<li>optional: Include links where the icon can be found</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<h2 id='buildScript'>Regarding The Build Script</h2>
|
||||
<p>To make adding icons easier for repo maintainers, we rely on GitHub Actions, Python, Selenium, and Gulp to automate our tasks.</p>
|
||||
<p>So far, the tasks that we have automated are:</p>
|
||||
<ul>
|
||||
<li>Upload svgs to <a href="https://icomoon.io/app/#/select">icomoon.io</a> and get the icons back. For details, see <a href="https://github.com/devicons/devicon/issues/252"> the original disscussion</a>, <a href="https://github.com/devicons/devicon/pull/268">this PR that introduce the feature</a> and <a href="https://github.com/devicons/devicon/issues/300">the final changes to it.</a></li>
|
||||
<li>Build, combine, and minify CSS files. For details, see <a href="https://github.com/devicons/devicon/pull/290">this</a></li>
|
||||
<li>Ensure code quality is up to standard</li>
|
||||
</ul>
|
14
README.md
14
README.md
@ -5,7 +5,7 @@
|
||||
Devicon aims to gather all logos representing development languages and tools.
|
||||
Each icon comes in several versions: font/svg, original/plain/line, colored/not colored, wordmark/no wordmark.
|
||||
|
||||
Devicon it's 80+ icons and 200+ versions. And it's growing!
|
||||
Devicon has 80+ icons and 200+ versions. And it's growing!
|
||||
|
||||
See all available icons on the [new website](https://devicons.github.io/devicon/).
|
||||
|
||||
@ -43,13 +43,11 @@ _2 ways of using devicon:_
|
||||
|
||||
#### Icons font
|
||||
|
||||
- Upload devicon.css and font files to your project
|
||||
- Upload devicon.min.css and font files to your project
|
||||
- Note: the `devicon.css` file is not the same as the `devicon.min.css`. It doesn't contain any colors or aliases.
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="devicon.css">
|
||||
|
||||
<!-- if you want colored versions -->
|
||||
<link rel="stylesheet" href="devicon-colors.css">
|
||||
<link rel="stylesheet" href="devicon.min.css">
|
||||
```
|
||||
|
||||
- Add icon using `<i>` tag
|
||||
@ -104,10 +102,10 @@ if you like to restore the settings stored in the configuration file.
|
||||
|
||||
The next step is to click on **Generate font** and download the resulting archive. Extract it
|
||||
contents and you will find a [fonts](./fonts) directory next to a `style.css`. Replace the content of the `fonts` folder,
|
||||
merge the `style.css` with [devicon.css](./devicon.css) and follow the next step to build the final stylesheet.
|
||||
rename the `style.css` to [devicon.css](./devicon.css) and follow the next step to build the final stylesheet.
|
||||
|
||||
### Build and minify stylesheet
|
||||
Run the following command to build the resulting file `devicon.min.css`
|
||||
```bash
|
||||
gulp default
|
||||
npm run build-css
|
||||
```
|
||||
|
25
devicon.css
25
devicon.css
@ -1,10 +1,10 @@
|
||||
@font-face {
|
||||
font-family: 'devicon';
|
||||
src: url('fonts/devicon.eot?yl3aib');
|
||||
src: url('fonts/devicon.eot?yl3aib#iefix') format('embedded-opentype'),
|
||||
url('fonts/devicon.ttf?yl3aib') format('truetype'),
|
||||
url('fonts/devicon.woff?yl3aib') format('woff'),
|
||||
url('fonts/devicon.svg?yl3aib#devicon') format('svg');
|
||||
src: url('fonts/devicon.eot?6szfnm');
|
||||
src: url('fonts/devicon.eot?6szfnm#iefix') format('embedded-opentype'),
|
||||
url('fonts/devicon.ttf?6szfnm') format('truetype'),
|
||||
url('fonts/devicon.woff?6szfnm') format('woff'),
|
||||
url('fonts/devicon.svg?6szfnm#devicon') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: block;
|
||||
@ -25,6 +25,21 @@
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.devicon-yunohost-plain:before {
|
||||
content: "\e963";
|
||||
}
|
||||
.devicon-redux-original:before {
|
||||
content: "\e964";
|
||||
}
|
||||
.devicon-clojurescript-plain:before {
|
||||
content: "\e965";
|
||||
}
|
||||
.devicon-clojure-line:before {
|
||||
content: "\e962";
|
||||
}
|
||||
.devicon-mocha-plain:before {
|
||||
content: "\e961";
|
||||
}
|
||||
.devicon-haskell-plain:before {
|
||||
content: "\e95f";
|
||||
}
|
||||
|
42
devicon.json
42
devicon.json
@ -387,12 +387,20 @@
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"line"
|
||||
],
|
||||
"font": [
|
||||
"line",
|
||||
"plain"
|
||||
],
|
||||
"font": []
|
||||
]
|
||||
},
|
||||
"aliases": []
|
||||
"color": "#5881d8",
|
||||
"aliases": [
|
||||
{
|
||||
"base": "line",
|
||||
"alias": "plain"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "clojurescript",
|
||||
@ -404,8 +412,11 @@
|
||||
"original",
|
||||
"plain"
|
||||
],
|
||||
"font": []
|
||||
"font": [
|
||||
"plain"
|
||||
]
|
||||
},
|
||||
"color": "#96ca4b",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
@ -1641,7 +1652,9 @@
|
||||
"svg": [
|
||||
"plain"
|
||||
],
|
||||
"font": []
|
||||
"font": [
|
||||
"plain"
|
||||
]
|
||||
},
|
||||
"color": "#8d6748",
|
||||
"aliases": []
|
||||
@ -2053,9 +2066,16 @@
|
||||
"svg": [
|
||||
"original"
|
||||
],
|
||||
"font": []
|
||||
"font": [
|
||||
"original"
|
||||
]
|
||||
},
|
||||
"aliases": []
|
||||
"aliases": [
|
||||
{
|
||||
"base": "original",
|
||||
"alias": "plain"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ruby",
|
||||
@ -2680,10 +2700,14 @@
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original"
|
||||
"original",
|
||||
"plain"
|
||||
],
|
||||
"font": []
|
||||
"font": [
|
||||
"plain"
|
||||
]
|
||||
},
|
||||
"color": "#ffffff",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
|
2
devicon.min.css
vendored
2
devicon.min.css
vendored
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 825 KiB After Width: | Height: | Size: 879 KiB |
Binary file not shown.
Binary file not shown.
@ -100,14 +100,14 @@ function createColorsCSS(deviconJson) {
|
||||
versions: {
|
||||
font: fonts
|
||||
},
|
||||
color
|
||||
color,
|
||||
} = fontObj;
|
||||
|
||||
if (fonts.length === 0 || typeof(color) !== "string") {
|
||||
console.log(`This object doesn't have a font or a color: ${name}`);
|
||||
return "";
|
||||
}
|
||||
let cssClasses = fonts.map(font => `.devicon-${name}-${font}`);
|
||||
let cssClasses = fonts.map(font => `.devicon-${name}-${font}.colored`);
|
||||
return `${cssClasses.join(",")}{color: ${color}}`;
|
||||
}).join(" ");
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="M64 0C28.712 0 0 28.6 0 63.751c0 35.155 28.712 63.753 64 63.753s64-28.598 64-63.753C128 28.6 99.288 0 64 0" fill="#FFF"/><path d="M61.659 64.898a265.825 265.825 0 0 0-1.867 4.12c-2.322 5.241-4.894 11.62-5.834 15.706-.337 1.455-.546 3.258-.542 5.258 0 .79.043 1.622.11 2.469a30.74 30.74 0 0 0 10.533 1.87 30.796 30.796 0 0 0 9.642-1.566 18.09 18.09 0 0 1-2.011-2.12c-4.11-5.221-6.403-12.872-10.031-25.737M46.485 38.96c-7.85 5.51-12.986 14.6-13.005 24.9.019 10.145 5.001 19.116 12.653 24.65 1.877-7.789 6.582-14.92 13.637-29.214a114.691 114.691 0 0 0-1.43-3.72c-1.955-4.884-4.776-10.556-7.294-13.124-1.283-1.342-2.84-2.502-4.561-3.492" fill="#5881D8"/><path d="M90.697 98.798c-4.05-.506-7.392-1.116-10.317-2.144a36.708 36.708 0 0 1-16.32 3.807c-20.293 0-36.742-16.383-36.745-36.602 0-10.97 4.852-20.805 12.528-27.512-2.053-.495-4.194-.783-6.38-.779-10.782.101-22.162 6.044-26.9 22.095-.443 2.337-.337 4.103-.337 6.197 0 31.818 25.895 57.613 57.835 57.613 19.561 0 36.841-9.682 47.305-24.489-5.66 1.405-11.103 2.077-15.763 2.091-1.747 0-3.387-.093-4.906-.277" fill="#5881D8"/><path d="M79.829 87.634c.357.176 1.167.464 2.293.783 7.579-5.542 12.504-14.469 12.523-24.558h-.003c-.028-16.82-13.693-30.43-30.582-30.462a30.765 30.765 0 0 0-9.602 1.554c6.21 7.05 9.196 17.127 12.084 28.148l.005.013c.005.009.924 3.06 2.501 7.11 1.566 4.042 3.797 9.048 6.23 12.696 1.597 2.444 3.354 4.2 4.551 4.716" fill="#5881D8"/><path d="M64.061 6.246c-19.372 0-36.508 9.5-47.004 24.065 5.463-3.408 11.04-4.637 15.908-4.593 6.722.02 12.008 2.096 14.544 3.516.612.352 1.194.73 1.764 1.12a36.714 36.714 0 0 1 14.786-3.096c20.295.003 36.747 16.386 36.75 36.601h-.003c0 10.192-4.185 19.408-10.931 26.044a45.3 45.3 0 0 0 5.225.29c6.406.004 13.329-1.404 18.52-5.753 3.384-2.84 6.22-6.998 7.792-13.233.307-2.408.484-4.856.484-7.347 0-31.817-25.892-57.614-57.835-57.614" fill="#5881D8"/></g></svg>
|
Before Width: | Height: | Size: 1.9 KiB |
322
icons/yunohost/yunohost-plain.svg
Normal file
322
icons/yunohost/yunohost-plain.svg
Normal file
@ -0,0 +1,322 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="454.000000pt" height="454.000000pt" viewBox="0 0 454.000000 454.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
|
||||
<g transform="translate(0.000000,454.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M2910 4081 c-14 -14 -24 -29 -22 -33 1 -5 -3 -8 -9 -8 -5 0 -7 -5 -4
|
||||
-10 3 -6 -1 -13 -9 -16 -9 -3 -14 -10 -11 -14 3 -5 1 -11 -5 -15 -6 -4 -8 -11
|
||||
-5 -16 4 -5 1 -9 -5 -9 -7 0 -10 -6 -7 -14 3 -8 3 -17 -1 -21 -4 -4 -8 -21 -9
|
||||
-38 -4 -55 -13 -246 -18 -387 -6 -146 -10 -219 -15 -235 -1 -5 -2 -13 -1 -17
|
||||
2 -13 -8 -9 -28 11 -11 11 -17 22 -14 25 4 3 1 6 -6 6 -7 0 -9 5 -6 10 3 6 2
|
||||
10 -2 10 -9 0 -37 59 -34 73 0 4 -4 7 -10 7 -5 0 -7 5 -4 10 3 6 1 10 -5 10
|
||||
-6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -8 5 -5
|
||||
10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 3 6 1 10
|
||||
-5 10 -6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -9
|
||||
4 -6 9 3 5 -1 12 -10 15 -9 4 -14 9 -11 13 4 3 -1 12 -11 20 -11 9 -12 12 -2
|
||||
8 8 -4 2 5 -15 20 -16 14 -23 23 -15 19 8 -4 -14 21 -50 56 -36 35 -68 63 -72
|
||||
62 -5 -1 -8 3 -8 9 0 5 -4 7 -10 4 -5 -3 -10 -3 -10 2 0 4 -11 9 -25 9 -14 1
|
||||
-25 -3 -25 -8 0 -6 -7 -8 -15 -4 -8 3 -15 1 -15 -5 0 -6 -4 -8 -9 -5 -5 3 -12
|
||||
-1 -15 -10 -3 -8 -10 -13 -14 -10 -28 17 -64 -101 -40 -131 6 -7 7 -24 4 -38
|
||||
-4 -14 -3 -31 1 -38 4 -7 9 -30 10 -52 4 -77 3 -380 -2 -430 -3 -27 -6 -63 -8
|
||||
-80 -1 -16 -6 -36 -10 -43 -5 -7 -6 -21 -2 -31 3 -11 1 -22 -5 -26 -6 -4 -8
|
||||
-15 -5 -25 3 -10 1 -21 -5 -25 -6 -4 -8 -15 -5 -26 4 -11 2 -19 -5 -19 -7 0
|
||||
-9 -7 -6 -16 3 -9 3 -21 -1 -27 -11 -17 -10 -97 1 -97 5 0 6 -3 3 -7 -4 -3 1
|
||||
-12 11 -20 10 -9 11 -12 2 -7 -10 5 -9 0 4 -14 21 -24 30 -29 21 -9 -4 6 1 3
|
||||
10 -8 9 -11 21 -19 26 -18 5 2 9 -2 9 -8 0 -5 5 -7 10 -4 6 3 10 1 10 -5 0 -6
|
||||
5 -8 10 -5 6 3 10 1 10 -5 0 -6 5 -8 10 -5 6 3 10 1 10 -5 0 -6 5 -8 10 -5 6
|
||||
3 10 1 10 -5 0 -6 5 -8 10 -5 6 3 10 2 10 -4 0 -6 7 -8 15 -5 8 4 15 1 15 -5
|
||||
0 -20 38 -12 63 13 14 14 22 27 19 30 -3 3 0 6 7 6 7 0 10 4 6 9 -3 5 -1 12 5
|
||||
16 6 4 8 11 5 16 -4 5 -2 9 4 9 6 0 8 7 5 15 -4 8 -1 15 6 15 7 0 10 7 6 15
|
||||
-3 8 -1 15 5 15 6 0 9 7 5 15 -3 8 -1 15 5 15 6 0 9 7 5 15 -3 8 -1 15 5 15 6
|
||||
0 8 4 4 9 -3 5 -1 12 5 16 6 4 8 11 5 16 -4 5 -1 9 4 9 6 0 10 5 8 12 -3 17
|
||||
26 16 41 -2 12 -13 13 -13 7 0 -4 8 10 -3 30 -25 20 -22 34 -33 30 -25 -4 8
|
||||
19 -12 50 -45 31 -33 54 -53 50 -45 -4 8 3 4 15 -10 12 -14 26 -25 31 -25 6 0
|
||||
14 -7 19 -15 5 -8 10 -10 10 -5 0 6 5 2 11 -8 6 -9 14 -15 20 -12 5 4 9 1 9
|
||||
-5 0 -6 5 -8 10 -5 6 3 10 2 10 -4 0 -6 7 -8 15 -5 8 4 15 2 15 -3 0 -10 42
|
||||
-16 86 -11 15 1 71 49 66 56 -1 1 -1 3 -1 5 7 13 10 150 12 681 2 609 2 620
|
||||
-18 639 -11 10 -20 23 -20 28 0 5 -7 14 -15 19 -8 5 -10 10 -5 10 6 0 -1 10
|
||||
-15 21 -14 11 -18 18 -10 14 8 -4 6 1 -5 10 -11 9 -20 20 -20 24 0 12 -57 65
|
||||
-70 66 -5 1 -21 -10 -35 -24z"/>
|
||||
<path d="M290 4068 c0 -5 -4 -7 -9 -4 -5 3 -12 -1 -15 -10 -3 -8 -10 -13 -15
|
||||
-10 -11 7 -33 -18 -24 -27 3 -4 1 -7 -5 -7 -7 0 -11 -3 -10 -7 0 -5 -2 -16 -6
|
||||
-25 -4 -9 -5 -48 -2 -85 3 -37 6 -84 7 -103 0 -19 5 -40 10 -47 6 -6 8 -21 4
|
||||
-32 -3 -10 -1 -22 5 -26 7 -4 9 -18 6 -30 -3 -13 -1 -27 4 -30 6 -4 8 -15 5
|
||||
-25 -3 -10 -1 -21 5 -25 6 -4 8 -15 5 -25 -3 -10 -1 -21 5 -25 6 -4 8 -15 5
|
||||
-25 -3 -10 -1 -21 5 -25 6 -4 8 -15 5 -25 -3 -10 -1 -21 5 -25 6 -4 8 -15 5
|
||||
-26 -4 -11 -2 -19 5 -19 6 0 10 -6 9 -12 -2 -16 226 -253 243 -253 9 0 12 -58
|
||||
13 -241 1 -132 5 -246 8 -251 4 -6 4 -18 1 -27 -3 -9 -1 -16 6 -16 6 0 9 -4 5
|
||||
-9 -3 -5 -1 -12 5 -16 6 -4 8 -11 5 -16 -4 -5 -1 -9 5 -9 6 0 8 -4 5 -10 -3
|
||||
-5 -1 -10 5 -10 6 0 8 -4 5 -10 -3 -5 -1 -10 5 -10 6 0 9 -4 6 -9 -3 -5 1 -12
|
||||
9 -15 8 -3 14 -10 13 -15 -2 -5 6 -17 17 -26 11 -9 13 -13 5 -9 -8 4 3 -12 24
|
||||
-34 22 -23 43 -39 48 -36 4 3 11 -2 14 -10 3 -9 10 -13 15 -10 5 3 9 0 9 -6 0
|
||||
-6 4 -8 10 -5 6 3 10 1 10 -5 0 -6 4 -8 10 -5 5 3 10 2 10 -3 0 -5 15 -8 33
|
||||
-7 17 2 31 8 29 14 -1 6 2 11 7 11 5 0 9 17 10 38 0 36 5 100 16 212 8 86 15
|
||||
170 30 370 10 133 12 150 25 165 7 8 9 15 5 15 -4 0 3 9 16 21 13 11 17 17 9
|
||||
13 -8 -4 -2 7 14 24 16 17 32 29 36 27 4 -3 16 5 26 18 19 22 19 22 -2 7 -11
|
||||
-8 -2 2 20 24 23 21 41 42 41 47 0 4 9 15 20 23 11 9 16 16 11 16 -6 0 -1 7
|
||||
10 16 10 8 12 13 4 9 -10 -4 -9 -2 2 8 10 8 15 17 11 20 -3 4 -1 7 6 7 7 0 9
|
||||
5 6 10 -3 6 -1 10 4 10 6 0 10 3 10 8 -1 4 0 9 1 12 7 15 6 71 -1 75 -4 3 -6
|
||||
12 -2 20 3 8 0 15 -7 15 -6 0 -8 5 -5 10 3 6 1 10 -6 10 -7 0 -10 2 -7 5 6 7
|
||||
-74 90 -84 87 -5 -1 -8 3 -8 9 0 5 -4 8 -9 5 -5 -3 -12 1 -15 10 -3 8 -10 12
|
||||
-16 9 -5 -3 -10 -1 -10 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -5 8 -10 5
|
||||
-6 -3 -10 -1 -10 4 0 6 -4 11 -10 11 -12 0 -54 -40 -42 -40 4 0 -4 -10 -18
|
||||
-21 -14 -11 -18 -18 -10 -14 8 4 -1 -7 -20 -24 -19 -18 -28 -29 -20 -25 8 4
|
||||
-9 -18 -39 -49 -30 -31 -58 -54 -63 -51 -4 3 -11 -2 -14 -10 -3 -9 -10 -13
|
||||
-15 -10 -5 3 -9 1 -9 -4 0 -11 -60 -10 -78 1 -7 5 -10 13 -7 18 4 5 1 9 -5 9
|
||||
-6 0 -9 4 -5 9 3 5 1 12 -5 16 -6 4 -8 11 -5 16 4 5 3 15 -2 22 -8 13 -13 51
|
||||
-14 107 0 19 -5 40 -10 46 -5 7 -7 24 -3 38 4 17 2 26 -6 26 -7 0 -9 8 -5 20
|
||||
4 12 2 20 -5 20 -6 0 -9 4 -5 9 3 5 1 12 -5 16 -6 4 -8 11 -5 16 4 5 1 9 -5 9
|
||||
-6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 3 6 -1 13 -9 16 -9 3 -14 10
|
||||
-11 15 3 4 -4 13 -15 19 -11 6 -18 15 -16 19 3 4 -10 23 -29 41 -19 19 -35 30
|
||||
-35 24 0 -5 -5 -2 -10 6 -5 8 -14 16 -20 16 -5 1 -11 2 -12 4 -10 7 -108 5
|
||||
-108 -2z"/>
|
||||
<path d="M3624 3988 c-3 -4 -11 -5 -19 -1 -8 3 -15 0 -15 -7 0 -6 -4 -8 -10
|
||||
-5 -5 3 -10 1 -10 -5 0 -6 -4 -9 -9 -5 -5 3 -17 -2 -25 -11 -9 -8 -16 -12 -16
|
||||
-8 0 4 -7 -1 -15 -12 -8 -10 -15 -15 -15 -10 0 4 -9 -2 -21 -15 -11 -13 -17
|
||||
-17 -13 -9 4 8 -9 0 -29 -19 -20 -19 -33 -39 -30 -47 3 -8 0 -14 -7 -14 -6 0
|
||||
-8 -4 -5 -10 3 -5 1 -10 -5 -10 -6 0 -8 -5 -5 -10 3 -6 -1 -13 -9 -16 -9 -3
|
||||
-14 -10 -11 -15 3 -4 -4 -13 -15 -19 -11 -6 -18 -15 -15 -21 4 -5 1 -9 -5 -9
|
||||
-6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10 -6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10 -6
|
||||
0 -8 -4 -5 -10 3 -5 2 -10 -4 -10 -6 0 -8 -7 -5 -15 4 -8 1 -15 -5 -15 -6 0
|
||||
-8 -7 -5 -15 4 -8 1 -15 -6 -15 -6 0 -9 -4 -5 -9 3 -5 1 -12 -4 -16 -6 -3 -8
|
||||
-12 -4 -20 3 -8 0 -15 -7 -15 -7 0 -9 -8 -5 -20 4 -12 2 -20 -5 -20 -7 0 -9
|
||||
-8 -5 -20 4 -12 2 -20 -5 -20 -8 0 -10 -9 -6 -25 4 -16 2 -25 -5 -25 -7 0 -9
|
||||
-9 -5 -25 4 -14 3 -31 -1 -38 -11 -17 -11 -230 0 -244 5 -7 6 -17 2 -23 -4 -6
|
||||
-1 -17 5 -25 6 -8 9 -19 5 -25 -3 -5 -1 -10 5 -10 7 0 10 -7 6 -15 -3 -8 -1
|
||||
-15 5 -15 6 0 7 -4 4 -10 -3 -5 -1 -10 5 -10 6 0 8 -4 5 -10 -3 -5 -1 -10 4
|
||||
-10 6 0 10 -4 8 -9 -1 -5 7 -17 18 -26 11 -9 13 -13 5 -9 -8 4 3 -12 24 -34
|
||||
22 -23 43 -39 47 -36 4 2 13 -5 19 -16 6 -11 15 -18 21 -15 5 4 12 -1 15 -9 3
|
||||
-9 10 -14 14 -11 4 3 11 -2 14 -11 3 -8 10 -12 16 -9 5 3 10 1 10 -5 0 -6 5
|
||||
-8 10 -5 6 3 10 1 10 -5 0 -6 5 -8 10 -5 6 3 10 1 10 -5 0 -7 8 -9 19 -5 11 3
|
||||
22 1 26 -5 8 -13 142 -13 151 1 3 6 17 8 30 5 14 -4 24 -2 24 4 0 6 5 8 10 5
|
||||
6 -3 10 -1 10 5 0 6 4 9 10 5 5 -3 17 6 26 20 9 13 20 22 25 19 5 -3 9 0 9 6
|
||||
0 6 5 8 10 5 6 -3 10 -1 10 6 0 7 2 10 5 7 7 -7 81 63 77 74 -1 5 5 11 13 14
|
||||
8 3 12 10 9 15 -3 5 2 12 10 15 9 3 13 10 10 15 -3 5 0 9 6 9 6 0 8 5 5 10 -3
|
||||
6 -1 10 5 10 6 0 8 5 5 10 -3 6 -2 10 4 10 6 0 8 7 5 15 -4 8 -1 15 6 15 7 0
|
||||
9 8 5 19 -3 11 -2 22 2 24 14 9 4 518 -11 550 -4 9 -5 24 -2 33 4 9 1 23 -5
|
||||
30 -6 8 -9 20 -6 29 4 8 2 17 -4 21 -6 3 -8 12 -5 20 3 8 1 14 -5 14 -6 0 -9
|
||||
7 -5 15 3 8 1 15 -5 15 -6 0 -7 5 -4 10 3 6 1 10 -4 10 -6 0 -10 4 -8 9 1 5
|
||||
-7 17 -18 26 -11 9 -13 13 -5 9 8 -4 2 7 -14 24 -32 34 -41 40 -31 20 4 -7 -5
|
||||
1 -19 17 -14 17 -26 26 -26 20 0 -5 -5 -2 -11 8 -6 9 -14 15 -20 12 -5 -4 -9
|
||||
-1 -9 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4 9 -9 5 -5 -3 -12 -1 -16 4
|
||||
-3 6 -12 8 -20 4 -8 -3 -15 -1 -15 4 0 10 -109 12 -116 1z m86 -471 c0 -5 3
|
||||
-6 8 -4 4 2 15 -4 25 -15 9 -10 14 -18 10 -18 -4 0 -2 -5 5 -12 15 -15 16 -55
|
||||
2 -63 -6 -4 -8 -15 -5 -26 4 -10 2 -19 -4 -19 -6 0 -8 -7 -5 -15 4 -8 1 -15
|
||||
-6 -15 -6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10 -6 0 -9 -4 -5 -9 3 -5 1 -12 -5
|
||||
-16 -6 -4 -8 -11 -5 -16 4 -5 -1 -12 -9 -15 -9 -3 -13 -10 -10 -15 3 -5 0 -9
|
||||
-6 -9 -6 0 -9 -4 -6 -9 3 -5 -1 -12 -9 -15 -8 -3 -14 -9 -13 -13 4 -11 -39
|
||||
-53 -46 -45 -3 3 -6 0 -6 -6 0 -18 -21 -14 -37 6 -8 9 -11 11 -7 3 5 -9 3 -12
|
||||
-5 -7 -6 4 -9 11 -6 16 3 4 -2 13 -10 20 -17 14 -20 76 -5 85 6 4 8 15 5 26
|
||||
-4 10 -2 19 4 19 6 0 8 7 5 15 -4 8 -1 15 6 15 7 0 10 7 6 15 -3 8 -1 15 5 15
|
||||
6 0 8 4 4 9 -3 5 -1 12 5 16 6 4 8 11 5 16 -4 5 -1 9 5 9 6 0 8 5 5 10 -3 6
|
||||
-1 10 4 10 6 0 10 3 10 8 -1 4 0 10 1 15 1 4 3 10 4 15 0 4 10 16 21 27 19 19
|
||||
75 28 75 12z"/>
|
||||
<path d="M1869 3763 c-1 -2 -2 -8 -3 -13 0 -6 -7 -15 -15 -19 -7 -5 -11 -13
|
||||
-7 -19 3 -6 2 -14 -4 -17 -6 -4 -8 -16 -5 -26 4 -11 1 -26 -5 -34 -8 -10 -10
|
||||
-33 -5 -74 4 -40 3 -61 -5 -66 -6 -4 -8 -15 -5 -25 3 -10 1 -21 -5 -25 -6 -4
|
||||
-8 -15 -5 -25 3 -10 1 -21 -5 -25 -6 -4 -8 -15 -5 -26 4 -11 2 -19 -5 -19 -7
|
||||
0 -10 -7 -7 -15 4 -8 2 -17 -3 -20 -5 -3 -7 -12 -3 -20 3 -8 0 -15 -7 -15 -7
|
||||
0 -10 -7 -6 -15 3 -8 1 -15 -5 -15 -6 0 -9 -7 -6 -15 4 -8 2 -17 -3 -20 -5 -3
|
||||
-7 -12 -3 -20 3 -8 0 -15 -7 -15 -7 0 -10 -7 -7 -15 4 -8 2 -17 -4 -20 -5 -4
|
||||
-7 -11 -3 -16 3 -5 0 -16 -6 -24 -6 -8 -9 -19 -5 -25 4 -6 1 -17 -5 -25 -6 -8
|
||||
-9 -19 -5 -25 3 -5 1 -10 -5 -10 -6 0 -9 -4 -6 -9 3 -5 -1 -12 -10 -15 -9 -3
|
||||
-12 -11 -8 -18 4 -7 4 -10 0 -6 -5 4 -18 3 -30 -2 -24 -9 -60 5 -51 21 4 5 1
|
||||
9 -5 9 -6 0 -8 5 -5 10 3 6 3 16 -2 23 -4 6 -9 53 -10 102 -3 97 -12 288 -16
|
||||
345 -1 19 -6 41 -10 48 -5 6 -5 17 -2 22 3 6 1 10 -6 10 -7 0 -10 3 -6 6 3 3
|
||||
-6 17 -21 31 -15 14 -18 19 -7 12 18 -13 19 -13 6 3 -7 10 -17 15 -22 13 -4
|
||||
-3 -16 6 -25 20 -9 13 -20 22 -25 20 -4 -3 -13 4 -19 15 -6 11 -15 18 -21 15
|
||||
-5 -4 -9 -1 -9 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4 8 -10 5 -5 -3 -10
|
||||
-2 -10 4 0 10 -14 9 -42 -4 -10 -4 -15 -11 -12 -16 3 -5 1 -9 -5 -9 -6 0 -8
|
||||
-7 -5 -15 4 -8 1 -15 -6 -15 -7 0 -10 -6 -7 -14 3 -8 3 -17 -1 -21 -4 -4 -8
|
||||
-19 -9 -33 -12 -138 -14 -204 -14 -382 0 -242 3 -311 14 -327 5 -7 5 -18 2
|
||||
-23 -4 -6 -1 -17 5 -25 7 -8 9 -15 5 -15 -4 0 -2 -6 4 -13 6 -8 8 -17 4 -20
|
||||
-3 -4 -1 -7 6 -7 7 0 9 -4 6 -10 -3 -5 -1 -10 5 -10 6 0 9 -4 6 -9 -3 -5 1
|
||||
-12 10 -15 8 -3 12 -10 9 -16 -3 -5 -1 -10 5 -10 6 0 9 -4 5 -9 -3 -6 4 -15
|
||||
15 -21 11 -6 18 -15 16 -19 -3 -4 8 -18 25 -30 16 -12 27 -26 25 -30 -3 -5 4
|
||||
-17 17 -27 l22 -19 -19 25 c-11 14 -2 7 20 -15 21 -22 42 -39 47 -37 4 1 10
|
||||
-5 13 -13 3 -8 10 -12 15 -9 5 3 9 1 9 -5 0 -6 7 -8 15 -5 8 4 15 1 15 -5 0
|
||||
-6 7 -8 15 -5 8 4 15 2 15 -2 0 -8 120 -11 128 -4 1 1 7 4 12 5 6 1 13 4 18 5
|
||||
4 1 10 2 15 1 4 0 7 4 7 10 0 5 4 8 9 5 5 -3 12 1 15 10 3 8 10 12 16 9 5 -3
|
||||
10 -1 10 4 0 6 4 10 9 8 5 -1 17 7 26 18 9 11 13 13 9 5 -4 -8 7 -2 24 14 34
|
||||
32 40 41 20 31 -7 -4 -3 2 9 13 12 11 19 22 16 26 -4 3 -1 6 6 6 7 0 9 5 6 10
|
||||
-3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -1 10 5 10 7
|
||||
0 10 7 6 15 -3 8 -1 15 5 15 6 0 9 7 6 15 -4 8 -2 17 3 20 5 3 7 12 4 19 -3 8
|
||||
-1 17 5 20 6 4 8 13 5 20 -3 8 0 17 5 21 6 3 9 11 5 16 -3 5 -1 16 5 23 6 7 9
|
||||
20 5 29 -3 8 0 18 6 22 6 4 8 15 5 26 -4 11 -2 19 5 19 6 0 8 10 4 25 -4 16
|
||||
-2 25 6 25 8 0 10 9 6 24 -3 14 -1 28 4 31 6 4 8 15 5 26 -4 10 -3 24 2 31 4
|
||||
7 9 27 10 43 2 17 5 59 8 95 10 108 6 224 -8 247 -4 6 -4 18 -1 27 4 9 1 16
|
||||
-6 16 -7 0 -10 7 -6 15 3 8 1 15 -5 15 -6 0 -7 5 -4 10 3 6 1 10 -5 10 -6 0
|
||||
-8 5 -5 10 3 6 1 10 -5 10 -6 0 -10 3 -8 8 2 4 -16 26 -39 48 -24 23 -43 39
|
||||
-43 35 0 -3 -4 0 -9 7 -7 12 -78 24 -82 15z"/>
|
||||
<path d="M2005 3710 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23
|
||||
20 -3 0 3 -9 13 -20z"/>
|
||||
<path d="M1140 3636 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21
|
||||
13z"/>
|
||||
<path d="M3590 2347 c0 -6 -3 -7 -7 -4 -9 9 -44 -23 -37 -34 3 -5 0 -9 -6 -9
|
||||
-6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10 -6 0 -9 -4 -5 -9 3 -5 1 -12 -4 -16 -6
|
||||
-3 -8 -12 -4 -20 3 -8 0 -15 -6 -15 -7 0 -9 -9 -5 -24 3 -13 1 -27 -5 -31 -6
|
||||
-3 -8 -17 -5 -31 3 -13 1 -31 -6 -39 -8 -9 -9 -28 -5 -55 4 -27 3 -46 -5 -55
|
||||
-8 -9 -10 -28 -5 -51 4 -24 3 -34 -4 -29 -6 3 -11 1 -11 -5 0 -7 -8 -9 -19 -5
|
||||
-11 3 -22 1 -26 -5 -4 -6 -15 -8 -26 -5 -11 4 -19 2 -19 -5 0 -7 -8 -9 -19 -5
|
||||
-11 3 -22 1 -26 -5 -4 -6 -15 -8 -25 -5 -10 3 -21 1 -25 -5 -3 -6 -11 -8 -16
|
||||
-4 -5 3 -16 1 -23 -5 -7 -6 -21 -9 -30 -5 -9 4 -16 1 -16 -6 0 -7 -7 -10 -15
|
||||
-7 -8 4 -17 2 -20 -4 -4 -5 -10 -7 -15 -4 -5 3 -20 -6 -34 -20 -20 -20 -24
|
||||
-31 -19 -58 4 -26 1 -36 -11 -40 -9 -4 -16 -2 -16 4 0 6 -4 8 -9 5 -5 -3 -12
|
||||
1 -15 10 -3 8 -10 13 -15 10 -5 -3 -15 2 -22 11 -12 14 -12 16 1 9 9 -4 8 -2
|
||||
-2 7 -10 8 -15 17 -11 20 3 4 1 7 -5 7 -19 0 -14 38 7 59 11 11 22 17 25 13 3
|
||||
-3 6 -1 6 4 0 8 25 12 125 17 27 1 46 9 58 24 19 23 23 53 7 53 -5 0 -10 9
|
||||
-10 20 0 11 -5 20 -10 20 -6 0 -9 3 -8 8 3 8 -83 97 -94 97 -4 0 -14 9 -23 20
|
||||
-9 11 -14 13 -10 5 4 -10 2 -9 -8 2 -8 10 -17 15 -20 11 -4 -3 -7 -1 -7 6 0 7
|
||||
-4 9 -10 6 -5 -3 -10 -1 -10 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4 9 -9
|
||||
5 -5 -3 -12 -1 -16 4 -3 6 -12 8 -20 4 -8 -3 -15 -1 -15 3 0 5 -20 9 -45 9
|
||||
-25 0 -45 -3 -45 -7 0 -4 -7 -5 -15 -2 -8 4 -15 1 -15 -6 0 -6 -4 -8 -10 -5
|
||||
-5 3 -10 1 -10 -5 0 -6 -4 -8 -10 -5 -5 3 -10 1 -10 -5 0 -6 -4 -8 -10 -5 -5
|
||||
3 -10 1 -10 -5 0 -6 -4 -8 -10 -5 -5 3 -10 1 -10 -5 0 -6 -4 -8 -10 -5 -5 3
|
||||
-10 1 -10 -5 0 -6 -4 -8 -10 -5 -5 3 -10 1 -10 -5 0 -6 -4 -9 -9 -6 -5 3 -12
|
||||
-1 -15 -10 -4 -9 -9 -14 -13 -10 -3 3 -13 -3 -20 -14 -8 -11 -19 -17 -25 -14
|
||||
-6 4 -8 2 -4 -4 3 -6 -3 -17 -14 -25 -11 -7 -17 -17 -13 -20 3 -4 1 -7 -6 -7
|
||||
-7 0 -9 -4 -6 -10 3 -5 1 -10 -5 -10 -7 0 -10 -6 -7 -14 3 -8 3 -17 0 -20 -5
|
||||
-5 -7 -161 -2 -176 1 -3 1 -8 0 -12 0 -5 4 -8 9 -8 5 0 9 -4 7 -8 -1 -5 12
|
||||
-21 28 -36 17 -15 23 -25 15 -21 -8 3 41 -49 110 -116 69 -68 118 -119 110
|
||||
-115 -8 4 -1 -5 15 -20 17 -15 30 -31 30 -36 0 -5 7 -13 15 -18 8 -5 11 -10 5
|
||||
-10 -5 0 -1 -7 9 -15 11 -8 16 -15 12 -15 -4 0 0 -7 8 -16 9 -8 14 -20 11 -25
|
||||
-4 -5 -2 -9 4 -9 6 0 8 -6 5 -14 -3 -8 0 -17 6 -21 8 -5 8 -11 -1 -21 -6 -8
|
||||
-8 -14 -4 -14 4 0 -5 -10 -20 -22 -25 -20 -92 -31 -98 -16 -1 3 -8 8 -16 10
|
||||
-18 4 -68 51 -63 61 2 4 -2 7 -8 7 -6 0 -8 5 -5 10 3 5 1 10 -5 10 -7 0 -9 7
|
||||
-6 15 3 9 -1 18 -10 22 -21 8 -64 -16 -57 -33 3 -8 0 -14 -7 -14 -6 0 -8 -4
|
||||
-5 -10 3 -5 3 -16 -1 -22 -11 -17 -11 -188 -1 -195 4 -2 5 -13 2 -24 -4 -11
|
||||
-2 -19 5 -19 6 0 8 -4 5 -10 -3 -5 -1 -10 4 -10 6 0 10 -4 8 -9 -1 -5 7 -17
|
||||
18 -26 11 -9 13 -14 5 -10 -8 4 1 -8 20 -25 19 -17 28 -28 20 -24 -8 4 10 -18
|
||||
40 -49 57 -59 66 -66 55 -44 -4 6 0 4 8 -5 8 -10 17 -15 20 -11 4 3 7 1 7 -5
|
||||
0 -6 7 -9 15 -6 8 4 15 1 15 -5 0 -6 16 -11 35 -11 19 0 35 5 35 11 0 6 7 9
|
||||
15 6 8 -4 17 -2 20 4 4 5 11 7 16 4 5 -4 9 -1 9 5 0 6 5 8 10 5 6 -3 10 -1 10
|
||||
5 0 6 5 8 10 5 6 -3 10 -1 10 5 0 6 5 8 10 5 6 -3 13 1 16 9 3 9 10 14 15 11
|
||||
4 -3 13 4 19 15 6 11 14 19 19 17 5 -1 18 9 30 23 13 14 19 18 15 10 -4 -8 15
|
||||
8 42 35 27 28 48 53 46 58 -2 4 2 7 8 7 6 0 8 5 5 10 -3 6 -1 10 5 10 6 0 8 5
|
||||
5 10 -3 6 -3 15 1 22 19 30 20 238 2 238 -6 0 -8 7 -5 15 4 8 2 17 -4 20 -5 4
|
||||
-7 10 -4 15 3 5 1 11 -5 15 -6 4 -8 10 -5 15 3 5 1 11 -5 15 -6 4 -8 11 -5 16
|
||||
4 5 1 9 -4 9 -6 0 -11 4 -11 9 0 4 21 8 48 9 26 0 71 4 100 7 33 5 52 3 52 -3
|
||||
0 -6 9 -14 20 -17 11 -4 18 -10 15 -15 -3 -5 0 -12 6 -15 6 -5 8 -17 3 -34
|
||||
-10 -35 -11 -251 -1 -251 5 0 5 -9 2 -20 -4 -11 -2 -20 4 -20 6 0 11 -3 10 -7
|
||||
-2 -17 14 -53 24 -53 6 0 8 -3 4 -6 -3 -4 4 -15 16 -26 12 -11 15 -16 7 -12
|
||||
-8 4 5 -14 29 -39 25 -26 47 -44 49 -42 3 3 11 0 19 -7 18 -15 61 -19 69 -7 3
|
||||
5 10 7 15 4 5 -4 9 -1 9 5 0 7 6 10 14 7 8 -3 17 1 20 9 3 9 10 13 15 10 5 -3
|
||||
14 1 21 9 7 8 9 15 4 15 -5 0 0 7 10 15 11 8 16 15 12 15 -5 0 -3 7 4 15 6 8
|
||||
9 19 5 25 -4 6 -1 17 5 25 9 10 10 36 6 82 -12 117 -16 167 -19 208 -2 22 -5
|
||||
45 -7 50 -2 6 -4 30 -6 55 -1 25 -5 59 -9 76 -5 23 -2 37 11 52 10 12 21 19
|
||||
26 16 4 -3 8 0 8 6 0 6 5 8 10 5 6 -3 10 -1 10 5 0 6 4 9 9 5 5 -3 12 -1 16 5
|
||||
4 6 11 8 16 5 5 -4 9 -1 9 5 0 7 7 10 15 6 8 -3 15 -1 15 5 0 6 7 9 15 5 8 -3
|
||||
15 -1 15 5 0 6 7 9 15 5 8 -3 15 -1 15 5 0 6 7 9 15 5 8 -3 15 -1 15 5 0 6 7
|
||||
9 15 5 8 -3 15 -1 15 5 0 6 7 9 15 5 8 -3 15 -1 15 4 0 5 7 7 15 4 8 -4 15 -1
|
||||
15 6 0 6 5 8 10 5 6 -3 10 -1 10 5 0 7 7 10 15 6 8 -3 15 -1 15 5 0 6 4 8 9 4
|
||||
5 -3 12 -1 16 5 4 6 11 8 16 5 5 -4 9 -1 9 5 0 6 5 8 10 5 6 -3 10 -1 10 5 0
|
||||
6 5 8 10 5 6 -3 10 -1 10 5 0 6 5 8 10 5 6 -3 10 -1 10 5 0 6 5 8 10 5 6 -3
|
||||
10 -1 10 4 0 6 3 10 8 9 4 -2 20 10 35 26 23 23 29 38 30 82 2 30 -1 54 -6 54
|
||||
-4 0 -5 5 -2 11 4 6 -1 17 -11 24 -11 8 -16 15 -13 15 4 0 -12 19 -35 42 -22
|
||||
23 -44 41 -48 40 -5 -1 -8 3 -8 9 0 5 -4 7 -10 4 -5 -3 -10 -3 -10 2 0 4 -80
|
||||
8 -178 8 -159 0 -179 2 -195 18 -13 13 -17 28 -14 45 3 17 -1 31 -11 40 -12 9
|
||||
-12 11 -2 6 8 -5 -19 25 -60 65 -41 41 -79 73 -83 73 -4 -1 -10 5 -13 13 -3 8
|
||||
-10 12 -15 9 -5 -3 -9 0 -9 6 0 6 -4 9 -9 5 -5 -3 -12 -1 -15 4 -8 12 -56 11
|
||||
-56 -2z"/>
|
||||
<path d="M3780 2255 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25 -13 14 -26 25
|
||||
-28 25 -3 0 5 -11 18 -25z"/>
|
||||
<path d="M1205 2039 c-4 -6 -13 -8 -21 -5 -8 3 -14 1 -14 -5 0 -6 -4 -8 -9 -5
|
||||
-4 3 -19 -6 -31 -19 -13 -14 -19 -25 -14 -25 5 0 1 -5 -9 -11 -9 -6 -15 -14
|
||||
-12 -19 3 -5 1 -11 -5 -15 -6 -4 -8 -11 -5 -16 4 -5 1 -9 -5 -9 -7 0 -10 -7
|
||||
-7 -15 4 -8 2 -17 -4 -20 -5 -4 -7 -11 -3 -16 3 -5 0 -16 -6 -24 -6 -8 -9 -19
|
||||
-5 -25 4 -6 3 -19 -1 -28 -10 -20 -13 -64 -19 -237 -2 -71 -5 -147 -6 -167 0
|
||||
-21 -6 -38 -11 -38 -6 0 -8 -6 -6 -12 5 -14 -27 -50 -36 -40 -3 3 -6 1 -6 -4
|
||||
0 -5 -26 -9 -57 -9 -41 0 -63 5 -75 18 -20 19 -24 72 -8 82 6 4 8 15 5 26 -4
|
||||
11 -2 19 5 19 7 0 9 8 5 20 -4 12 -2 20 5 20 7 0 9 8 5 19 -3 11 -1 22 4 25
|
||||
13 8 12 124 0 132 -5 3 -7 14 -4 25 4 10 2 19 -4 19 -6 0 -8 7 -5 15 4 8 1 15
|
||||
-6 15 -6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -8 5 -5 10 3 6 1 10 -5 10 -6 0 -9
|
||||
4 -6 9 3 5 -1 12 -10 15 -8 3 -13 10 -10 14 7 11 -48 65 -57 56 -4 -4 -9 1
|
||||
-13 10 -3 9 -10 13 -15 10 -5 -3 -9 0 -9 5 0 6 -3 10 -7 10 -5 -1 -10 0 -13 1
|
||||
-27 11 -103 15 -144 8 -23 -4 -64 -40 -59 -50 2 -5 0 -8 -6 -8 -6 0 -8 -6 -5
|
||||
-14 3 -8 1 -17 -5 -21 -6 -3 -8 -17 -5 -30 3 -13 2 -30 -3 -37 -4 -7 -9 -71
|
||||
-10 -143 -4 -217 -9 -310 -17 -323 -4 -6 -5 -16 -1 -22 7 -11 -30 -51 -39 -42
|
||||
-3 3 -6 0 -6 -7 0 -8 -7 -11 -15 -7 -8 3 -15 1 -15 -5 0 -6 -7 -9 -15 -5 -8 3
|
||||
-15 1 -15 -5 0 -6 -7 -9 -15 -6 -8 4 -17 2 -20 -3 -3 -5 -12 -7 -20 -3 -8 3
|
||||
-15 0 -15 -7 0 -6 -4 -9 -9 -5 -5 3 -12 1 -16 -5 -4 -6 -11 -8 -16 -5 -5 4 -9
|
||||
1 -9 -6 0 -7 -3 -10 -6 -7 -3 3 -15 -4 -27 -16 -16 -16 -22 -34 -22 -69 0 -26
|
||||
3 -47 7 -47 4 0 5 -7 2 -15 -4 -8 -1 -15 6 -15 6 0 8 -5 5 -10 -3 -6 -1 -10 4
|
||||
-10 6 0 10 -3 9 -7 -2 -5 10 -20 25 -35 15 -15 27 -24 27 -20 0 4 7 -2 16 -13
|
||||
8 -11 18 -20 22 -21 9 0 146 -137 146 -146 1 -4 10 -14 21 -23 11 -9 13 -14 5
|
||||
-10 -8 4 -6 -1 4 -9 11 -9 16 -16 10 -16 -5 0 -1 -5 9 -11 9 -6 15 -14 12 -20
|
||||
-4 -5 -1 -9 4 -9 6 0 10 -4 8 -9 -1 -4 9 -18 23 -30 14 -13 18 -19 10 -15 -8
|
||||
4 -2 -7 14 -24 16 -17 33 -29 38 -26 4 3 11 -2 14 -10 3 -9 10 -13 15 -10 5 3
|
||||
12 -2 15 -10 3 -9 10 -13 15 -10 5 3 9 0 9 -6 0 -7 7 -10 15 -6 8 3 15 2 15
|
||||
-3 0 -5 18 -8 40 -7 22 0 40 5 40 10 0 5 3 7 6 4 7 -8 51 35 47 45 -2 4 -1 7
|
||||
4 7 10 0 10 141 0 158 -5 7 -6 21 -2 31 3 11 1 22 -5 26 -7 4 -9 18 -6 30 3
|
||||
13 2 27 -4 30 -26 16 9 87 38 77 7 -2 12 2 12 8 0 7 8 9 20 5 12 -4 20 -2 20
|
||||
5 0 7 7 10 15 6 8 -3 15 -1 15 5 0 6 7 9 15 5 8 -3 15 -1 15 5 0 6 4 7 10 4 5
|
||||
-3 19 5 30 18 33 38 75 30 130 -24 24 -24 44 -47 45 -50 0 -4 11 -17 25 -29
|
||||
14 -12 18 -18 10 -14 -10 5 -9 1 4 -14 10 -12 23 -19 27 -16 5 3 9 0 9 -6 0
|
||||
-6 5 -8 10 -5 6 3 10 1 10 -4 0 -6 4 -10 9 -8 4 1 18 -9 30 -23 13 -14 20 -18
|
||||
16 -10 -4 8 1 6 10 -5 9 -11 21 -19 26 -18 5 2 9 -2 9 -8 0 -5 5 -7 10 -4 6 3
|
||||
10 1 10 -5 0 -6 5 -8 10 -5 6 3 10 1 10 -4 0 -22 48 -10 78 19 18 17 32 32 32
|
||||
35 0 3 0 6 1 8 4 18 2 97 -3 97 -4 0 -5 7 -2 15 4 8 1 15 -6 15 -6 0 -8 4 -5
|
||||
10 3 6 1 10 -5 10 -7 0 -10 7 -6 15 3 8 1 15 -5 15 -6 0 -9 7 -6 15 4 8 2 17
|
||||
-4 21 -6 3 -8 12 -5 20 3 7 1 16 -5 20 -6 3 -8 13 -5 21 4 9 1 22 -5 29 -6 7
|
||||
-8 18 -4 24 4 6 1 17 -5 25 -7 8 -9 22 -6 31 3 9 3 21 -1 27 -5 7 -9 26 -10
|
||||
42 -5 58 -12 141 -19 198 -4 37 -2 63 5 71 6 7 9 21 5 30 -4 9 -1 16 6 16 7 0
|
||||
10 7 7 15 -4 8 -2 17 4 20 5 4 7 11 3 16 -3 5 -1 16 5 23 6 7 9 21 5 30 -3 9
|
||||
-1 16 6 16 7 0 9 8 5 20 -4 12 -3 26 2 33 11 15 11 197 0 215 -5 6 -5 12 -1
|
||||
12 3 0 1 7 -6 15 -7 8 -9 15 -4 15 4 0 -1 7 -12 16 -10 8 -12 12 -4 8 8 -4 2
|
||||
7 -14 24 -16 17 -33 29 -38 26 -4 -3 -8 0 -8 6 0 6 -4 8 -10 5 -5 -3 -10 -1
|
||||
-10 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4 9 -9 5 -5 -3 -12 -1 -16 4 -3
|
||||
6 -12 8 -19 5 -8 -3 -17 -1 -21 5 -3 6 -15 11 -25 11 -10 0 -22 -5 -25 -11z
|
||||
m-84 -1146 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m-766
|
||||
-113 c10 -11 16 -20 13 -20 -3 0 -13 9 -23 20 -10 11 -16 20 -13 20 3 0 13 -9
|
||||
23 -20z"/>
|
||||
<path d="M1873 1927 c-3 -5 -11 -6 -19 -3 -8 3 -14 1 -14 -5 0 -6 -7 -9 -15
|
||||
-5 -8 3 -15 1 -15 -5 0 -6 -4 -7 -10 -4 -5 3 -10 1 -10 -5 0 -6 -4 -9 -9 -5
|
||||
-5 3 -16 -1 -24 -9 -8 -8 -17 -12 -21 -9 -3 4 -6 1 -6 -6 0 -7 -4 -10 -9 -7
|
||||
-5 3 -12 -1 -15 -10 -4 -9 -9 -15 -11 -12 -7 7 -91 -75 -87 -84 2 -5 -2 -8 -8
|
||||
-8 -6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10 -6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10
|
||||
-6 0 -8 -4 -5 -10 3 -5 1 -10 -5 -10 -7 0 -10 -7 -6 -15 3 -8 1 -15 -4 -15 -5
|
||||
0 -7 -7 -4 -15 4 -8 1 -15 -6 -15 -7 0 -10 -7 -7 -15 4 -8 2 -17 -4 -20 -5 -4
|
||||
-7 -11 -3 -16 3 -5 1 -16 -5 -23 -6 -7 -9 -20 -5 -29 3 -8 1 -18 -5 -21 -6 -4
|
||||
-8 -20 -5 -35 3 -16 2 -31 -3 -34 -10 -6 -9 -209 1 -226 4 -6 4 -15 1 -21 -3
|
||||
-5 -1 -10 5 -10 6 0 9 -4 5 -9 -3 -5 1 -16 9 -24 8 -8 12 -17 9 -21 -4 -3 -1
|
||||
-6 5 -6 7 0 11 -4 9 -9 -1 -5 7 -17 18 -26 11 -9 13 -13 5 -10 -8 4 -1 -5 15
|
||||
-20 17 -14 23 -24 15 -20 -8 4 2 -9 24 -28 21 -19 54 -52 73 -73 19 -22 32
|
||||
-32 28 -24 -4 8 2 5 13 -7 11 -12 22 -19 26 -16 3 3 8 -2 12 -11 3 -9 10 -13
|
||||
15 -10 5 3 12 -2 15 -10 3 -9 10 -13 15 -10 5 3 9 0 9 -6 0 -6 5 -8 10 -5 6 3
|
||||
10 1 10 -5 0 -6 4 -9 9 -5 5 3 12 1 16 -5 4 -6 10 -8 15 -5 5 3 11 2 13 -3 7
|
||||
-10 128 -9 145 2 7 4 21 4 32 1 12 -4 20 -2 20 5 0 7 7 10 15 7 8 -4 17 -2 20
|
||||
4 4 5 10 7 15 4 5 -3 11 -1 15 5 4 6 11 8 16 5 5 -4 9 -1 9 5 0 6 5 8 10 5 6
|
||||
-3 10 -1 10 5 0 6 5 8 10 5 6 -3 10 -1 10 4 0 6 3 10 8 8 9 -3 58 46 55 55 -2
|
||||
5 2 8 8 8 5 0 7 5 4 10 -3 6 1 13 9 16 9 3 13 10 10 15 -3 5 0 9 6 9 6 0 8 5
|
||||
5 10 -3 6 1 13 9 16 9 3 13 10 10 15 -3 5 0 9 6 9 6 0 8 5 5 10 -3 6 -1 10 5
|
||||
10 6 0 8 5 5 10 -3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -1 10 5 10 6 0 8 5 5 10
|
||||
-3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -1 10 5 10 6
|
||||
0 9 4 5 9 -3 5 -1 12 5 16 6 4 8 11 5 16 -4 5 -1 9 5 9 6 0 8 5 5 10 -3 6 -1
|
||||
10 5 10 6 0 8 5 5 10 -3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -2 10 3 10 5 0 7 17
|
||||
5 38 -2 20 -5 51 -6 67 -1 17 -6 35 -10 42 -4 7 -5 23 -1 36 3 14 1 28 -6 32
|
||||
-6 4 -8 16 -5 26 4 11 1 26 -5 34 -6 8 -9 19 -5 25 4 6 1 17 -5 25 -6 8 -9 19
|
||||
-6 24 4 5 2 12 -4 16 -6 4 -8 11 -5 16 4 5 1 9 -5 9 -6 0 -9 4 -5 9 3 5 -2 17
|
||||
-11 25 -8 9 -12 16 -8 16 4 0 -6 12 -22 27 -16 15 -33 26 -37 25 -4 -1 -10 5
|
||||
-13 13 -3 8 -10 12 -15 9 -5 -3 -9 0 -9 6 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5
|
||||
0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4
|
||||
8 -10 5 -5 -3 -10 -2 -10 4 0 6 -7 8 -15 5 -8 -4 -15 -1 -15 6 0 6 -4 8 -10 5
|
||||
-5 -3 -10 -1 -10 5 0 6 -4 8 -10 5 -5 -3 -10 -1 -10 5 0 6 -4 8 -10 5 -5 -3
|
||||
-10 -1 -10 5 0 7 -7 10 -15 6 -8 -3 -15 -1 -15 5 0 6 -4 7 -10 4 -5 -3 -10 -1
|
||||
-10 5 0 7 -7 10 -15 6 -8 -3 -15 -1 -15 5 0 6 -4 8 -9 4 -5 -3 -12 -1 -16 5
|
||||
-4 6 -10 8 -15 5 -5 -3 -11 -1 -15 4 -3 6 -12 8 -20 4 -8 -3 -15 -1 -15 5 0
|
||||
11 -80 11 -87 -1z m157 -437 c15 -16 25 -32 22 -35 -3 -3 0 -5 7 -5 7 0 9 -4
|
||||
6 -10 -3 -5 -2 -10 2 -10 6 0 10 -82 4 -97 -1 -2 -1 -6 -2 -10 0 -5 -8 -16
|
||||
-16 -25 -9 -10 -13 -18 -10 -18 3 0 -4 -10 -16 -23 -12 -13 -25 -22 -29 -20
|
||||
-5 2 -8 -1 -8 -7 0 -6 -4 -8 -10 -5 -5 3 -10 1 -10 -5 0 -6 -6 -10 -12 -9 -7
|
||||
1 -20 -1 -29 -5 -11 -5 -26 2 -45 22 -24 24 -29 37 -30 80 0 29 4 52 9 52 5 0
|
||||
7 7 3 15 -3 8 -1 15 5 15 6 0 7 5 4 10 -3 6 -1 10 5 10 6 0 8 5 5 10 -3 6 -1
|
||||
10 5 10 6 0 9 4 5 9 -3 6 4 15 15 21 11 6 17 16 14 22 -4 7 -3 8 5 4 6 -4 14
|
||||
0 17 8 3 9 10 13 15 10 5 -3 9 0 9 5 0 21 32 11 60 -19z m-149 -267 c13 -16
|
||||
12 -17 -3 -4 -17 13 -22 21 -14 21 2 0 10 -8 17 -17z"/>
|
||||
<path d="M1634 1808 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 23 KiB |
BIN
new_icons.png
Normal file
BIN
new_icons.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 71 KiB |
Loading…
x
Reference in New Issue
Block a user