Fixed naming
@@ -1,9 +1,11 @@
|
||||
import React from 'react';
|
||||
import Layout from './HUD/Layout/Layout';
|
||||
import { port, isDev } from './api/api';
|
||||
import api, { port, isDev } from './api/api';
|
||||
import ActionManager, { ConfigManager } from './api/actionManager';
|
||||
import { Dota2, DOTA2GSI } from 'dotagsi';
|
||||
import { Dota2, DOTA2GSI, PlayerExtension } from 'dotagsi';
|
||||
import { io } from "socket.io-client";
|
||||
import { loadAvatarURL } from './api/avatars';
|
||||
import { Match } from './api/interfaces';
|
||||
|
||||
const DOTA2 = new DOTA2GSI();
|
||||
const socket = io(isDev ? `localhost:${port}` : '/');
|
||||
@@ -19,25 +21,28 @@ export const hudIdentity = {
|
||||
name: '',
|
||||
isDev: false
|
||||
};
|
||||
/*
|
||||
|
||||
interface DataLoader {
|
||||
match: Promise<void> | null
|
||||
}
|
||||
/*
|
||||
|
||||
const dataLoader: DataLoader = {
|
||||
match: null
|
||||
}*/
|
||||
}
|
||||
|
||||
class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
class App extends React.Component<any, { game: Dota2 | null, steamids: string[], match: Match | null, checked: boolean }> {
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
this.state = {
|
||||
game: null
|
||||
game: null,
|
||||
steamids: [],
|
||||
match: null,
|
||||
checked: false
|
||||
}
|
||||
}
|
||||
|
||||
verifyPlayers = async (game: any) => {
|
||||
/*const steamids = game.players.map(player => player.steamid);
|
||||
verifyPlayers = async (game: Dota2) => {
|
||||
const steamids = game.players.map(player => player.steamid);
|
||||
steamids.forEach(steamid => {
|
||||
loadAvatarURL(steamid);
|
||||
})
|
||||
@@ -46,7 +51,7 @@ class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
return;
|
||||
}
|
||||
|
||||
const loaded = GSI.players.map(player => player.steamid);
|
||||
const loaded = DOTA2.players.map(player => player.steamid);
|
||||
|
||||
const extensioned = await api.players.get();
|
||||
|
||||
@@ -66,13 +71,13 @@ class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
})
|
||||
);
|
||||
|
||||
const gsiLoaded = GSI.players;
|
||||
const gsiLoaded = DOTA2.players;
|
||||
|
||||
gsiLoaded.push(...players);
|
||||
|
||||
GSI.players = gsiLoaded;
|
||||
DOTA2.players = gsiLoaded;
|
||||
|
||||
this.setState({ steamids });*/
|
||||
this.setState({ steamids });
|
||||
}
|
||||
|
||||
|
||||
@@ -120,7 +125,7 @@ class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
}
|
||||
|
||||
loadMatch = async (force = false) => {
|
||||
/*if (!dataLoader.match || force) {
|
||||
if (!dataLoader.match || force) {
|
||||
dataLoader.match = new Promise((resolve) => {
|
||||
api.match.getCurrent().then(match => {
|
||||
if (!match) {
|
||||
@@ -130,8 +135,8 @@ class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
this.setState({ match });
|
||||
|
||||
let isReversed = false;
|
||||
if (GSI.last) {
|
||||
const mapName = GSI.last.map.name.substring(GSI.last.map.name.lastIndexOf('/') + 1);
|
||||
if (DOTA2.last) {
|
||||
const mapName = DOTA2.last.map.name.substring(DOTA2.last.map.name.lastIndexOf('/') + 1);
|
||||
const current = match.vetos.filter(veto => veto.mapName === mapName)[0];
|
||||
if (current && current.reverseSide) {
|
||||
isReversed = true;
|
||||
@@ -143,17 +148,17 @@ class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
const gsiTeamData = { id: left._id, name: left.name, country: left.country, logo: left.logo, map_score: match.left.wins, extra: left.extra };
|
||||
|
||||
if (!isReversed) {
|
||||
GSI.teams.left = gsiTeamData;
|
||||
DOTA2.teams.radiant = gsiTeamData;
|
||||
}
|
||||
else GSI.teams.right = gsiTeamData;
|
||||
else DOTA2.teams.dire = gsiTeamData;
|
||||
});
|
||||
}
|
||||
if (match.right.id) {
|
||||
api.teams.getOne(match.right.id).then(right => {
|
||||
const gsiTeamData = { id: right._id, name: right.name, country: right.country, logo: right.logo, map_score: match.right.wins, extra: right.extra };
|
||||
|
||||
if (!isReversed) GSI.teams.right = gsiTeamData;
|
||||
else GSI.teams.left = gsiTeamData;
|
||||
if (!isReversed) DOTA2.teams.dire = gsiTeamData;
|
||||
else DOTA2.teams.radiant = gsiTeamData;
|
||||
});
|
||||
}
|
||||
|
||||
@@ -163,12 +168,12 @@ class App extends React.Component<any, { game: Dota2 | null }> {
|
||||
dataLoader.match = null;
|
||||
});
|
||||
});
|
||||
}*/
|
||||
}
|
||||
}
|
||||
render() {
|
||||
if (!this.state.game) return '';
|
||||
return (
|
||||
<Layout game={this.state.game} />
|
||||
<Layout game={this.state.game} match={this.state.match} />
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -2,8 +2,9 @@ import React from 'react';
|
||||
import './abilities.scss';
|
||||
|
||||
const Ability = ({ name, cooldown, available, level } : { name: string, cooldown: number, available: boolean, level: number | string }) => {
|
||||
if(name.startsWith("plus_")) return null;
|
||||
return (
|
||||
<div className={`skill-container ${cooldown ? 'cooldown':''} ${!available ? 'unavailable':''}`} style={{backgroundImage: `url('./abilities/${name}_lg.png')`}}>
|
||||
<div className={`skill-container ${cooldown ? 'cooldown':''} ${!available ? 'unavailable':''}`} style={{backgroundImage: `url('./abilities/${name}.png')`}}>
|
||||
{ cooldown ? <div className="cooldown-container">{cooldown}</div> : null}
|
||||
<div className="level-container">{level}</div>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
import { Dota2 } from "dotagsi";
|
||||
import React from "react";
|
||||
import { Match } from "../../api/interfaces";
|
||||
import MatchBar from "../MatchBar/MatchBar";
|
||||
import SeriesBox from "../MatchBar/SeriesBox";
|
||||
import Observed from "./../Players/Observed";
|
||||
|
||||
|
||||
@@ -7,6 +10,7 @@ import Observed from "./../Players/Observed";
|
||||
|
||||
interface Props {
|
||||
game: Dota2,
|
||||
match: Match | null
|
||||
}
|
||||
|
||||
export default class Layout extends React.Component<Props> {
|
||||
@@ -18,12 +22,13 @@ export default class Layout extends React.Component<Props> {
|
||||
|
||||
|
||||
render() {
|
||||
const { game } = this.props;
|
||||
const { game, match } = this.props;
|
||||
|
||||
|
||||
return (
|
||||
<div className="layout">
|
||||
|
||||
<MatchBar map={game.map} match={match} time={game.map.clock_time} players={game.players} />
|
||||
<SeriesBox map={game.map} match={match} />
|
||||
<Observed player={game.player}/>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -1,62 +0,0 @@
|
||||
import React from "react";
|
||||
import * as I from "csgogsi-socket";
|
||||
import { Match, Veto } from '../../api/interfaces';
|
||||
import TeamLogo from "../MatchBar/TeamLogo";
|
||||
import "./mapseries.scss";
|
||||
|
||||
interface IProps {
|
||||
match: Match | null;
|
||||
teams: I.Team[];
|
||||
isFreezetime: boolean;
|
||||
map: I.Map
|
||||
}
|
||||
|
||||
interface IVetoProps {
|
||||
veto: Veto;
|
||||
teams: I.Team[];
|
||||
active: boolean;
|
||||
}
|
||||
|
||||
class VetoEntry extends React.Component<IVetoProps> {
|
||||
render(){
|
||||
const { veto, teams, active } = this.props;
|
||||
return <div className={`veto_container ${active ? 'active' : ''}`}>
|
||||
<div className="veto_map_name">
|
||||
{veto.mapName}
|
||||
</div>
|
||||
<div className="veto_picker">
|
||||
<TeamLogo team={teams.filter(team => team.id === veto.teamId)[0]} />
|
||||
</div>
|
||||
<div className="veto_winner">
|
||||
<TeamLogo team={teams.filter(team => team.id === veto.winner)[0]} />
|
||||
</div>
|
||||
<div className="veto_score">
|
||||
{Object.values((veto.score || ['-','-'])).sort().join(":")}
|
||||
</div>
|
||||
<div className='active_container'>
|
||||
<div className='active'>Currently playing</div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
export default class MapSeries extends React.Component<IProps> {
|
||||
|
||||
render() {
|
||||
const { match, teams, isFreezetime, map } = this.props;
|
||||
if (!match || !match.vetos.length) return null;
|
||||
return (
|
||||
<div className={`map_series_container ${isFreezetime ? 'show': 'hide'}`}>
|
||||
<div className="title_bar">
|
||||
<div className="picked">Picked</div>
|
||||
<div className="winner">Winner</div>
|
||||
<div className="score">Score</div>
|
||||
</div>
|
||||
{match.vetos.filter(veto => veto.type !== "ban").map(veto => {
|
||||
if(!veto.mapName) return null;
|
||||
return <VetoEntry key={`${match.id}${veto.mapName}${veto.teamId}${veto.side}`} veto={veto} teams={teams} active={map.name.includes(veto.mapName)}/>
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,153 +0,0 @@
|
||||
.map_series_container {
|
||||
position: fixed;
|
||||
top: 100px;
|
||||
right: 20px;
|
||||
width: 347px;
|
||||
display: flex;
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s;
|
||||
flex-direction: column;
|
||||
font-size: 13px;
|
||||
.veto_container {
|
||||
display: flex;
|
||||
background-color: rgba(0,0,0,0.8);
|
||||
color: white;
|
||||
align-items: center;
|
||||
height: 40px;
|
||||
&.active {
|
||||
.veto_winner {
|
||||
display: none;
|
||||
}
|
||||
.veto_score {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.veto_map_name {
|
||||
width: 116px;
|
||||
text-transform: uppercase;
|
||||
background-color: rgba(255,255,255,1);
|
||||
color: black;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
font-family: Montserrat;
|
||||
font-weight: 700;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
div {
|
||||
img {
|
||||
max-height: 30px;
|
||||
max-width: 30px;
|
||||
}
|
||||
}
|
||||
.veto_picker {
|
||||
width: 77px;
|
||||
text-align: center;
|
||||
}
|
||||
.veto_winner {
|
||||
width: 77px;
|
||||
text-align: center;
|
||||
}
|
||||
.active_container {
|
||||
width: 154px;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.active {
|
||||
background: white;
|
||||
color: black;
|
||||
width: 117px;
|
||||
height: 25px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 9px;
|
||||
font-weight: 700;
|
||||
font-family: Montserrat;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
&:not(.active) {
|
||||
.active_container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.veto_score {
|
||||
width: 77px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
}
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
.title_bar {
|
||||
display: flex;
|
||||
background-color: rgba(0,0,0,0.64);
|
||||
height: 25px;
|
||||
color: white;
|
||||
border-radius: 6px 6px 0 0;
|
||||
font-family: Montserrat;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 2px;
|
||||
div {
|
||||
width: 77px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.picked {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
&.show {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#timeout {
|
||||
text-transform: uppercase;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
top: 150px;
|
||||
background-color: var(--sub-panel-color);
|
||||
width: 600px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100px;
|
||||
font-size: 35px;
|
||||
transition: opacity 1.5s;
|
||||
opacity: 0;
|
||||
}
|
||||
#pause {
|
||||
text-transform: uppercase;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
top: 150px;
|
||||
background-color: var(--sub-panel-color);
|
||||
width: 600px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100px;
|
||||
font-size: 35px;
|
||||
transition: opacity 1.5s;
|
||||
opacity: 0;
|
||||
color: white;
|
||||
}
|
||||
#timeout.show, #pause.show {
|
||||
opacity: 1;
|
||||
}
|
||||
#timeout.t {
|
||||
color: var(--color-new-t);
|
||||
}
|
||||
#timeout.ct {
|
||||
color: var(--color-new-ct);
|
||||
}
|
||||
@@ -1,10 +1,7 @@
|
||||
import React from "react";
|
||||
import * as I from "csgogsi-socket";
|
||||
import * as I from "dotagsi";
|
||||
import "./matchbar.scss";
|
||||
import TeamScore from "./TeamScore";
|
||||
import Bomb from "./../Timers/BombTimer";
|
||||
import Countdown from "./../Timers/Countdown";
|
||||
import { GSI } from "../../App";
|
||||
import { Match } from "../../api/interfaces";
|
||||
|
||||
function stringToClock(time: string | number, pad = true) {
|
||||
@@ -23,179 +20,31 @@ function stringToClock(time: string | number, pad = true) {
|
||||
interface IProps {
|
||||
match: Match | null;
|
||||
map: I.Map;
|
||||
phase: I.PhaseRaw,
|
||||
bomb: I.Bomb | null,
|
||||
players: I.Player[];
|
||||
time: number;
|
||||
}
|
||||
|
||||
export interface Timer {
|
||||
width: number;
|
||||
active: boolean;
|
||||
countdown: number;
|
||||
side: "left"|"right";
|
||||
type: "defusing" | "planting";
|
||||
player: I.Player | null;
|
||||
}
|
||||
|
||||
interface IState {
|
||||
defusing: Timer,
|
||||
planting: Timer,
|
||||
winState: {
|
||||
side: "left"|"right",
|
||||
show: boolean
|
||||
}
|
||||
}
|
||||
|
||||
export default class TeamBox extends React.Component<IProps, IState> {
|
||||
constructor(props: IProps){
|
||||
super(props);
|
||||
this.state = {
|
||||
defusing: {
|
||||
width: 0,
|
||||
active: false,
|
||||
countdown: 10,
|
||||
side: "left",
|
||||
type: "defusing",
|
||||
player: null
|
||||
},
|
||||
planting: {
|
||||
width: 0,
|
||||
active: false,
|
||||
countdown: 10, // Fake
|
||||
side: "right",
|
||||
type: "planting",
|
||||
player: null
|
||||
},
|
||||
winState: {
|
||||
side: 'left',
|
||||
show: false
|
||||
}
|
||||
}
|
||||
}
|
||||
plantStop = () => this.setState(state => {
|
||||
state.planting.active = false;
|
||||
return state;
|
||||
});
|
||||
|
||||
setWidth = (type: 'defusing' | 'planting', width: number) => {
|
||||
this.setState(state => {
|
||||
state[type].width = width;
|
||||
return state;
|
||||
})
|
||||
}
|
||||
|
||||
initPlantTimer = () => {
|
||||
const bomb = new Countdown(time => {
|
||||
let width = time * 100;
|
||||
this.setWidth("planting", width/3);
|
||||
});
|
||||
GSI.on("bombPlantStart", player => {
|
||||
if(!player || !player.team) return;
|
||||
this.setState(state => {
|
||||
state.planting.active = true;
|
||||
state.planting.side = player.team.orientation;
|
||||
state.planting.player = player;
|
||||
})
|
||||
})
|
||||
GSI.on("data", data => {
|
||||
if(!data.bomb || !data.bomb.countdown || data.bomb.state !== "planting") return this.plantStop();
|
||||
this.setState(state => {
|
||||
state.planting.active = true;
|
||||
})
|
||||
return bomb.go(data.bomb.countdown);
|
||||
});
|
||||
}
|
||||
|
||||
defuseStop = () => this.setState(state => {
|
||||
state.defusing.active = false;
|
||||
state.defusing.countdown = 10;
|
||||
return state;
|
||||
});
|
||||
|
||||
initDefuseTimer = () => {
|
||||
const bomb = new Countdown(time => {
|
||||
let width = time > this.state.defusing.countdown ? this.state.defusing.countdown*100 : time * 100;
|
||||
this.setWidth("defusing", width/this.state.defusing.countdown);
|
||||
});
|
||||
GSI.on("defuseStart", player => {
|
||||
if(!player || !player.team) return;
|
||||
this.setState(state => {
|
||||
state.defusing.active = true;
|
||||
state.defusing.countdown = !Boolean(player.state.defusekit) ? 10 : 5;
|
||||
state.defusing.side = player.team.orientation;
|
||||
state.defusing.player = player;
|
||||
return state;
|
||||
})
|
||||
})
|
||||
GSI.on("data", data => {
|
||||
if(!data.bomb || !data.bomb.countdown || data.bomb.state !== "defusing") return this.defuseStop();
|
||||
this.setState(state => {
|
||||
state.defusing.active = true;
|
||||
return state;
|
||||
})
|
||||
return bomb.go(data.bomb.countdown);
|
||||
});
|
||||
}
|
||||
|
||||
resetWin = () => {
|
||||
setTimeout(() => {
|
||||
this.setState(state => {
|
||||
state.winState.show = false;
|
||||
return state;
|
||||
})
|
||||
}, 6000);
|
||||
}
|
||||
|
||||
componentDidMount(){
|
||||
this.initDefuseTimer();
|
||||
this.initPlantTimer();
|
||||
GSI.on("roundEnd", score => {
|
||||
this.setState(state => {
|
||||
state.winState.show = true;
|
||||
state.winState.side = score.winner.orientation;
|
||||
return state;
|
||||
}, this.resetWin);
|
||||
});
|
||||
}
|
||||
getRoundLabel = () => {
|
||||
const { map } = this.props;
|
||||
const round = map.round + 1;
|
||||
if (round <= 30) {
|
||||
return `Round ${round}/30`;
|
||||
}
|
||||
const additionalRounds = round - 30;
|
||||
const OT = Math.ceil(additionalRounds/6);
|
||||
return `OT ${OT} (${additionalRounds - (OT - 1)*6}/6)`;
|
||||
}
|
||||
export default class TeamBox extends React.Component<IProps> {
|
||||
render() {
|
||||
const { defusing, planting, winState } = this.state;
|
||||
const { bomb, match, map, phase } = this.props;
|
||||
const time = stringToClock(phase.phase_ends_in);
|
||||
const left = map.team_ct.orientation === "left" ? map.team_ct : map.team_t;
|
||||
const right = map.team_ct.orientation === "left" ? map.team_t : map.team_ct;
|
||||
const isPlanted = bomb && (bomb.state === "defusing" || bomb.state === "planted");
|
||||
const { match, map, players, time } = this.props;
|
||||
const left = map.radiant;
|
||||
const right = map.dire;
|
||||
const bo = (match && Number(match.matchType.substr(-1))) || 0;
|
||||
let leftTimer: Timer | null = null, rightTimer: Timer | null = null;
|
||||
if(defusing.active || planting.active){
|
||||
if(defusing.active){
|
||||
if(defusing.side === "left") leftTimer = defusing;
|
||||
else rightTimer = defusing;
|
||||
} else {
|
||||
if(planting.side === "left") leftTimer = planting;
|
||||
else rightTimer = planting;
|
||||
}
|
||||
}
|
||||
|
||||
const leftScore = players.filter(player => player.team_name === 'radiant').map(player => player.kills).reduce((a, b) => a + b, 0);
|
||||
const rightScore = players.filter(player => player.team_name === 'dire').map(player => player.kills).reduce((a, b) => a + b, 0);
|
||||
|
||||
return (
|
||||
<>
|
||||
<div id={`matchbar`}>
|
||||
<TeamScore team={left} orientation={"left"} timer={leftTimer} showWin={winState.show && winState.side === "left"} />
|
||||
<div className={`score left ${left.side}`}>{left.score}</div>
|
||||
<TeamScore team={left} orientation={"left"} type={'radiant'} />
|
||||
<div className={`score left radiant`}>{leftScore}</div>
|
||||
<div id="timer" className={bo === 0 ? 'no-bo' : ''}>
|
||||
<div id={`round_timer_text`} className={isPlanted ? "hide":""}>{time}</div>
|
||||
<div id="round_now" className={isPlanted ? "hide":""}>{this.getRoundLabel()}</div>
|
||||
<Bomb />
|
||||
</div>
|
||||
<div className={`score right ${right.side}`}>{right.score}</div>
|
||||
<TeamScore team={right} orientation={"right"} timer={rightTimer} showWin={winState.show && winState.side === "right"} />
|
||||
<div id={`round_timer_text`}>{stringToClock(time)}</div>
|
||||
</div>
|
||||
<div className={`score right dire`}>{rightScore}</div>
|
||||
<TeamScore team={right} orientation={"right"} type={'dire'} />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
import React from "react";
|
||||
import * as I from "csgogsi-socket";
|
||||
import * as I from "dotagsi";
|
||||
import { Match } from "../../api/interfaces";
|
||||
|
||||
interface Props {
|
||||
map: I.Map;
|
||||
phase: I.PhaseRaw;
|
||||
match: Match | null;
|
||||
}
|
||||
|
||||
@@ -13,15 +12,15 @@ export default class SeriesBox extends React.Component<Props> {
|
||||
const { match, map } = this.props;
|
||||
const amountOfMaps = (match && Math.floor(Number(match.matchType.substr(-1)) / 2) + 1) || 0;
|
||||
const bo = (match && Number(match.matchType.substr(-1))) || 0;
|
||||
const left = map.team_ct.orientation === "left" ? map.team_ct : map.team_t;
|
||||
const right = map.team_ct.orientation === "left" ? map.team_t : map.team_ct;
|
||||
const left = map.radiant;
|
||||
const right = map.dire;
|
||||
return (
|
||||
<div id="encapsulator">
|
||||
<div className="container left">
|
||||
<div className={`series_wins left `}>
|
||||
<div className={`wins_box_container`}>
|
||||
{new Array(amountOfMaps).fill(0).map((_, i) => (
|
||||
<div key={i} className={`wins_box ${left.matches_won_this_series > i ? "win" : ""} ${left.side}`} />
|
||||
<div key={i} className={`wins_box ${left.map_score > i ? "win" : ""} radiant`} />
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
@@ -33,7 +32,7 @@ export default class SeriesBox extends React.Component<Props> {
|
||||
<div className={`series_wins right `}>
|
||||
<div className={`wins_box_container`}>
|
||||
{new Array(amountOfMaps).fill(0).map((_, i) => (
|
||||
<div key={i} className={`wins_box ${right.matches_won_this_series > i ? "win" : ""} ${right.side}`} />
|
||||
<div key={i} className={`wins_box ${right.map_score > i ? "win" : ""} dire`} />
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import React from 'react';
|
||||
import { Team } from 'csgogsi-socket';
|
||||
import { Team } from 'dotagsi';
|
||||
import * as I from '../../api/interfaces';
|
||||
import { apiUrl } from './../../api/api';
|
||||
|
||||
|
||||
@@ -1,29 +1,22 @@
|
||||
import React from "react";
|
||||
import * as I from "csgogsi-socket";
|
||||
import WinIndicator from "./WinIndicator";
|
||||
import { Timer } from "./MatchBar";
|
||||
import * as I from "dotagsi";
|
||||
import TeamLogo from './TeamLogo';
|
||||
import PlantDefuse from "../Timers/PlantDefuse"
|
||||
|
||||
interface IProps {
|
||||
team: I.Team;
|
||||
orientation: "left" | "right";
|
||||
timer: Timer | null;
|
||||
showWin: boolean;
|
||||
type: I.Faction
|
||||
}
|
||||
|
||||
export default class TeamScore extends React.Component<IProps> {
|
||||
render() {
|
||||
const { orientation, timer, team, showWin } = this.props;
|
||||
const { orientation, team, type } = this.props;
|
||||
return (
|
||||
<>
|
||||
<div className={`team ${orientation} ${team.side}`}>
|
||||
<div className={`team ${orientation} ${type}`}>
|
||||
<div className="team-name">{team.name}</div>
|
||||
<TeamLogo team={team} />
|
||||
<div className="round-thingy"><div className="inner"></div></div>
|
||||
</div>
|
||||
<PlantDefuse timer={timer} side={orientation} />
|
||||
<WinIndicator team={team} show={showWin}/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
import React from 'react';
|
||||
import { Team } from 'csgogsi-socket';
|
||||
|
||||
export default class WinAnnouncement extends React.Component<{ team: Team | null, show: boolean }> {
|
||||
render() {
|
||||
const { team, show } = this.props;
|
||||
if(!team) return null;
|
||||
return <div className={`win_text ${show ? 'show' : ''} ${team.orientation} ${team.side}`}>
|
||||
WINS THE ROUND!
|
||||
</div>
|
||||
}
|
||||
}
|
||||
@@ -24,36 +24,18 @@
|
||||
width: 1148px;
|
||||
height: 70px;
|
||||
top: 10px;
|
||||
color: white;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
.CT {
|
||||
color: var(--color-new-ct);
|
||||
.round-thingy {
|
||||
.inner {
|
||||
background-color: #28abff;
|
||||
}
|
||||
background-color: #28abff80;
|
||||
}
|
||||
}
|
||||
.T {
|
||||
color: var(--color-new-t);
|
||||
.round-thingy {
|
||||
.inner {
|
||||
background-color: #ffc600;
|
||||
}
|
||||
background-color: #ffc60080;
|
||||
}
|
||||
}
|
||||
|
||||
#timer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
width: 126px;
|
||||
height: 115px;
|
||||
margin-left: 8px;
|
||||
margin-right: 8px;
|
||||
background-color: var(--sub-panel-color);
|
||||
top: -10px;
|
||||
&.no-bo {
|
||||
height: 87px;
|
||||
}
|
||||
@@ -200,84 +182,10 @@
|
||||
flex-direction: row;
|
||||
width: 10px;
|
||||
height: 70px;
|
||||
&.CT {
|
||||
background-color: var(--color-new-ct);
|
||||
}
|
||||
&.T {
|
||||
background-color: var(--color-new-t);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.win_text {
|
||||
position: fixed;
|
||||
display: none;
|
||||
opacity: 1;
|
||||
width: 503px;
|
||||
height: 50px;
|
||||
top: 70px;
|
||||
align-items: center;
|
||||
color: black;
|
||||
justify-content: center;
|
||||
background-color: white;
|
||||
font-size: 20px;
|
||||
font-family: Montserrat;
|
||||
font-weight: 600;
|
||||
&.show {
|
||||
display: flex;
|
||||
animation: ShowWinCycle 5s linear 1;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
&.right {
|
||||
left: calc(50% + 71px);
|
||||
}
|
||||
&.left {
|
||||
right: calc(50% + 71px);
|
||||
}
|
||||
}
|
||||
|
||||
.defuse_plant_container {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
opacity: 1;
|
||||
width: 503px;
|
||||
height: 49px;
|
||||
top: 70px;
|
||||
align-items: center;
|
||||
color: white;
|
||||
justify-content: center;
|
||||
background-color: rgba(0,0,0,0.65);
|
||||
.defuse_plant_bar {
|
||||
height: 49px;
|
||||
background-color: #3c3c3c;
|
||||
position: absolute;
|
||||
width: 0%;
|
||||
}
|
||||
.defuse_plant_caption {
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
text-transform: uppercase;
|
||||
align-items: flex-end;
|
||||
svg {
|
||||
margin-right: 13px;
|
||||
}
|
||||
}
|
||||
&.right {
|
||||
left: calc(50% + 71px);
|
||||
.defuse_plant_bar {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
&.left {
|
||||
right: calc(50% + 71px);
|
||||
.defuse_plant_bar {
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
&.hide {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
#encapsulator {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
@@ -289,31 +197,16 @@
|
||||
height: 50px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
.CT {
|
||||
color: var(--color-new-ct);
|
||||
}
|
||||
.T {
|
||||
color: var(--color-new-t);
|
||||
}
|
||||
|
||||
.wins_bar {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 10px;
|
||||
height: 30px;
|
||||
}
|
||||
.wins_bar.CT {
|
||||
background-color: var(--color-new-ct);
|
||||
}
|
||||
.wins_bar.T {
|
||||
background-color: var(--color-new-t);
|
||||
}
|
||||
}
|
||||
.alert_bar.CT {
|
||||
background-color: var(--color-new-ct);
|
||||
}
|
||||
.alert_bar.T {
|
||||
background-color: var(--color-new-t);
|
||||
|
||||
}
|
||||
|
||||
#series_container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@@ -376,16 +269,8 @@
|
||||
margin-left: 2px;
|
||||
margin-right: 2px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wins_box.CT {
|
||||
background-color: rgba(0,0,0,0.6);
|
||||
}
|
||||
.wins_box.CT.win {
|
||||
background-color: var(--color-new-ct);
|
||||
}
|
||||
.wins_box.T {
|
||||
background-color: rgba(0,0,0,0.6);
|
||||
}
|
||||
.wins_box.T.win {
|
||||
background-color: var(--color-new-t);
|
||||
background-color:rgba(0,0,0,0.25);
|
||||
&.win {
|
||||
background-color: rgba(255,255,255,1);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,52 +0,0 @@
|
||||
import React from 'react';
|
||||
import { isDev, port } from '../../api/api';
|
||||
import { actions } from '../../App';
|
||||
|
||||
import { avatars } from './../../api/avatars';
|
||||
|
||||
import { Skull } from './../../assets/Icons';
|
||||
|
||||
interface IProps {
|
||||
steamid: string,
|
||||
slot?: number,
|
||||
height?: number,
|
||||
width?: number,
|
||||
showSkull?: boolean,
|
||||
showCam?: boolean
|
||||
}
|
||||
interface IState {
|
||||
enableCams: boolean
|
||||
}
|
||||
export default class Avatar extends React.Component<IProps, IState> {
|
||||
state = {
|
||||
enableCams: !!this.props.showCam
|
||||
}
|
||||
componentDidMount(){
|
||||
actions.on("toggleCams", () => {
|
||||
this.setState({enableCams: !this.state.enableCams})
|
||||
});
|
||||
}
|
||||
render(){
|
||||
const { enableCams } = this.state;
|
||||
//const url = avatars.filter(avatar => avatar.steamid === this.props.steamid)[0];
|
||||
const avatarData = avatars[this.props.steamid];
|
||||
if(!avatarData || !avatarData.url){
|
||||
return '';
|
||||
}
|
||||
const slot = this.props.slot === 0 ? 10 : this.props.slot || 1;
|
||||
const leftPosition = - 150*((slot-1)%5);
|
||||
const topPosition = slot > 5 ? -150 : 0;
|
||||
return (
|
||||
<div className={`avatar`}>
|
||||
{
|
||||
this.props.showCam ? <div id="cameraFeed" style={{ display: enableCams ? 'block' : 'none'}}><iframe style={{top: `${topPosition}px`, left: `${leftPosition}px`}} src={isDev ? `http://localhost:${port}/rmtp.html` : '/rmtp.html'} title="Camera feed" /></div> : null
|
||||
}
|
||||
{
|
||||
this.props.showSkull ? <Skull height={this.props.height} width={this.props.width} /> : <img src={avatarData.url} height={this.props.height} width={this.props.width} alt={'Avatar'} />
|
||||
}
|
||||
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -16,7 +16,7 @@ export default class Observed extends React.Component<{ player: Player | null }>
|
||||
|
||||
<div className={`avatar`}>
|
||||
|
||||
<img src={`./heroes/${player.hero.name.replace('npc_dota_hero_', '')}_full.png`} width={140} alt={'Avatar'} />
|
||||
<img src={`./heroes/${player.hero.name.replace('npc_dota_hero_', '')}.png`} width={140} alt={'Avatar'} />
|
||||
|
||||
</div>
|
||||
<div className="username_container">
|
||||
@@ -35,7 +35,7 @@ export default class Observed extends React.Component<{ player: Player | null }>
|
||||
</div>
|
||||
<div className="statistics">
|
||||
{
|
||||
player.items.filter(item => item.type === "slot").map(item => item.name !== "empty" ? <img src={`./items/${item.name.replace('item_', '')}_lg.png`} height={43} /> : null)
|
||||
player.items.filter(item => item.type === "slot").map(item => item.name !== "empty" ? <img src={`./items/${item.name.replace('item_', '')}.png`} height={43} /> : null)
|
||||
}
|
||||
</div>
|
||||
<div className="bar-container">
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
import React from "react";
|
||||
import { Player, WeaponRaw } from "csgogsi-socket";
|
||||
import Weapon from "./../Weapon/Weapon";
|
||||
import Avatar from "./Avatar";
|
||||
import Armor from "./../Indicators/Armor";
|
||||
import Bomb from "./../Indicators/Bomb";
|
||||
import Defuse from "./../Indicators/Defuse";
|
||||
|
||||
interface IProps {
|
||||
player: Player,
|
||||
isObserved: boolean,
|
||||
isFreezetime: boolean,
|
||||
}
|
||||
export default class PlayerBox extends React.Component<IProps> {
|
||||
render() {
|
||||
const { player } = this.props;
|
||||
const weapons: WeaponRaw[] = Object.values(player.weapons).map(weapon => ({ ...weapon, name: weapon.name.replace("weapon_", "") }));
|
||||
const primary = weapons.filter(weapon => !['C4', 'Pistol', 'Knife', 'Grenade', undefined].includes(weapon.type))[0] || null;
|
||||
const secondary = weapons.filter(weapon => weapon.type === "Pistol")[0] || null;
|
||||
const grenades = weapons.filter(weapon => weapon.type === "Grenade");
|
||||
const isLeft = player.team.orientation === "left";
|
||||
return (
|
||||
<div className={`player ${player.state.health === 0 ? "dead" : ""} ${this.props.isObserved ? 'active' : ''}`}>
|
||||
<div className="player_data">
|
||||
<Avatar steamid={player.steamid} height={57} width={57} showSkull={false}/>
|
||||
<div className="dead-stats">
|
||||
<div className="labels">
|
||||
<div className="stat-label">K</div>
|
||||
<div className="stat-label">A</div>
|
||||
<div className="stat-label">D</div>
|
||||
</div>
|
||||
<div className="values">
|
||||
<div className="stat-value">{player.stats.kills}</div>
|
||||
<div className="stat-value">{player.stats.assists}</div>
|
||||
<div className="stat-value">{player.stats.deaths}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="player_stats">
|
||||
<div className="row">
|
||||
<div className="health">
|
||||
{player.state.health}
|
||||
</div>
|
||||
<div className="username">
|
||||
<div>{isLeft ? <span>{player.observer_slot}</span> : null} {player.name} {!isLeft ? <span>{player.observer_slot}</span> : null}</div>
|
||||
{primary || secondary ? <Weapon weapon={primary ? primary.name : secondary.name} active={primary ? primary.state === "active" : secondary.state === "active"} /> : ""}
|
||||
{player.state.round_kills ? <div className="roundkills-container">{player.state.round_kills}</div> : null}
|
||||
</div>
|
||||
</div>
|
||||
<div className={`hp_bar ${player.state.health <= 20 ? 'low':''}`} style={{ width: `${player.state.health}%` }}></div>
|
||||
<div className="row">
|
||||
<div className="armor_and_utility">
|
||||
<Bomb player={player} />
|
||||
<Armor player={player} />
|
||||
<Defuse player={player} />
|
||||
</div>
|
||||
<div className="money">${player.state.money}</div>
|
||||
<div className="grenades">
|
||||
{grenades.map(grenade => (
|
||||
[
|
||||
<Weapon key={`${grenade.name}-${grenade.state}`} weapon={grenade.name} active={grenade.state === "active"} isGrenade />,
|
||||
grenade.ammo_reserve === 2 ? <Weapon key={`${grenade.name}-${grenade.state}-double`} weapon={grenade.name} active={grenade.state === "active"} isGrenade /> : null,
|
||||
]
|
||||
))}
|
||||
</div>
|
||||
<div className="secondary_weapon">{primary && secondary ? <Weapon weapon={secondary.name} active={secondary.state === "active"} /> : ""}</div>
|
||||
</div>
|
||||
<div className="active_border"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
import React from 'react';
|
||||
import Player from './Player'
|
||||
import * as I from 'csgogsi-socket';
|
||||
import './players.scss';
|
||||
|
||||
interface Props {
|
||||
players: I.Player[],
|
||||
team: I.Team,
|
||||
side: 'right' | 'left',
|
||||
current: I.Player | null,
|
||||
isFreezetime: boolean,
|
||||
}
|
||||
|
||||
export default class TeamBox extends React.Component<Props> {
|
||||
render() {
|
||||
return (
|
||||
<div className={`teambox ${this.props.team.side} ${this.props.side}`}>
|
||||
{this.props.players.map(player => <Player
|
||||
key={player.steamid}
|
||||
player={player}
|
||||
isObserved={!!(this.props.current && this.props.current.steamid === player.steamid)}
|
||||
isFreezetime={this.props.isFreezetime}
|
||||
/>)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,358 +0,0 @@
|
||||
.teambox {
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
opacity: 1;
|
||||
transition: opacity 0.75s;
|
||||
&.CT {
|
||||
.player .hp_bar {
|
||||
background-color: var(--color-new-ct);
|
||||
}
|
||||
}
|
||||
&.T {
|
||||
.player .hp_bar {
|
||||
background-color: var(--color-new-t);
|
||||
}
|
||||
}
|
||||
&.hide {
|
||||
opacity: 0;
|
||||
}
|
||||
&.left {
|
||||
left: 10px;
|
||||
.player {
|
||||
.row {
|
||||
flex-direction: row;
|
||||
.grenades {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.armor_and_utility {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.money {
|
||||
margin-right: auto;
|
||||
}
|
||||
.username .roundkills-container {
|
||||
right: 115px;
|
||||
}
|
||||
.secondary_weapon {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
.dead-stats {
|
||||
right: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.right {
|
||||
right: 10px;
|
||||
.player {
|
||||
flex-direction: row-reverse;
|
||||
.dead-stats {
|
||||
left: 8px;
|
||||
}
|
||||
.player_data {
|
||||
flex-direction: row-reverse;
|
||||
.hp_bar {
|
||||
align-self: flex-end;
|
||||
}
|
||||
.row {
|
||||
flex-direction: row-reverse;
|
||||
.grenades {
|
||||
padding-left: 5px;
|
||||
}
|
||||
.username {
|
||||
flex-direction: row-reverse;
|
||||
.roundkills-container {
|
||||
left: 115px;
|
||||
}
|
||||
}
|
||||
.secondary_weapon {
|
||||
padding-left: 10px;
|
||||
}
|
||||
.armor_and_utility {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.money {
|
||||
margin-left: auto;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.weapon {
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
}
|
||||
.avatar {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.player {
|
||||
width: 645px;
|
||||
height: 70px;
|
||||
margin-bottom: 4px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
&.active {
|
||||
.player_data {
|
||||
border: 2px solid white;
|
||||
}
|
||||
}
|
||||
&.dead {
|
||||
opacity: 0.7;
|
||||
.player_side_bar {
|
||||
background-color: var(--main-panel-color) !important;
|
||||
}
|
||||
.player_data {
|
||||
.avatar {
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
.dead-stats {
|
||||
display: flex;
|
||||
}
|
||||
.row {
|
||||
.hp_background_2 {
|
||||
opacity: 0;
|
||||
}
|
||||
.health {
|
||||
color: #b2b2b2;
|
||||
overflow: hidden;
|
||||
}
|
||||
.username {
|
||||
color: #b2b2b2;
|
||||
}
|
||||
.armor_and_utility {
|
||||
width: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.money {
|
||||
color: #466722;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&:last-child .player_data {
|
||||
border-radius: 0 0 20px 20px;
|
||||
}
|
||||
.player_side_bar {
|
||||
width: 10px;
|
||||
height: 70px;
|
||||
&.CT {
|
||||
background-color: var(--color-new-ct);
|
||||
}
|
||||
&.T {
|
||||
background-color: var(--color-new-t);
|
||||
}
|
||||
}
|
||||
.dead-stats {
|
||||
position: absolute;
|
||||
height: 85%;
|
||||
width: 60px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
font-weight: 600;
|
||||
color: white;
|
||||
opacity: 0.75;
|
||||
top: 10%;
|
||||
.labels, .values {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
.stat-label, .stat-value {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.player_data {
|
||||
background-color: var(--sub-panel-color);
|
||||
width: 415px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
.player_stats {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
.hp_bar {
|
||||
height: 2px;
|
||||
&.low {
|
||||
background-color: red;
|
||||
}
|
||||
}
|
||||
.row {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
position: relative;
|
||||
svg.weapon {
|
||||
filter: invert(45%);
|
||||
&.active {
|
||||
filter: invert(0);
|
||||
}
|
||||
}
|
||||
.hp_background, .hp_background_2 {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 0;
|
||||
}
|
||||
.hp_background_2 {
|
||||
background-color: var(--color-bomb);
|
||||
transition: width 0.75s 1.5s;
|
||||
}
|
||||
.armor_and_utility {
|
||||
width: 39px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
.armor_indicator, .bomb_indicator, .defuse_indicator {
|
||||
svg {
|
||||
max-height: 20px;
|
||||
fill: white;
|
||||
}
|
||||
}
|
||||
div {
|
||||
display: flex;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
.username {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
max-width: calc(100% - 49px);
|
||||
justify-content: space-between;
|
||||
overflow: hidden;
|
||||
font-size: 18px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
.roundkills-container {
|
||||
position: absolute;
|
||||
background-image: url('./../../assets/images/icon_skull_default.svg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 10px;
|
||||
background-position: left 2px;
|
||||
padding-left: 16px;
|
||||
font-size: 13px;
|
||||
}
|
||||
div span {
|
||||
opacity: 0.6;
|
||||
font-size:15px;
|
||||
}
|
||||
svg.weapon {
|
||||
max-height: 30px;
|
||||
width: auto;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
max-width: 100px;
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
.money {
|
||||
width: 60px;
|
||||
color: var(--color-moneys);
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.grenades {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
svg.grenade {
|
||||
max-height: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
.health {
|
||||
width: 49px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
font-size:18px;
|
||||
}
|
||||
.secondary_weapon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
svg {
|
||||
max-height: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.avatar {
|
||||
width: 70px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
img {
|
||||
border-radius:50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.players_alive {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 180px;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
position: fixed;
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
opacity: 1;
|
||||
transition: opacity 1s;
|
||||
.counter_container {
|
||||
display: flex;
|
||||
height: 45px;
|
||||
> div {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size:30px;
|
||||
color: white;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
.team_counter {
|
||||
background-color: rgba(0,0,0,0.75);
|
||||
}
|
||||
.CT {
|
||||
color: var(--color-new-ct);
|
||||
}
|
||||
.T {
|
||||
color: var(--color-new-t);
|
||||
}
|
||||
}
|
||||
.title_container {
|
||||
color: white;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
height:20px;
|
||||
font-size:14px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: rgba(0,0,0,0.75);
|
||||
}
|
||||
&.hide {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@@ -1,49 +0,0 @@
|
||||
import { ReactComponent as ArmorFull } from './../assets/images/icon_armor_full_default.svg';
|
||||
import { ReactComponent as ArmorHalf } from './../assets/images/icon_armor_half_default.svg';
|
||||
import { ReactComponent as ArmorHalfHelmet } from './../assets/images/icon_armor_half_helmet_default.svg';
|
||||
import { ReactComponent as ArmorHelmet } from './../assets/images/icon_armor_helmet_default.svg';
|
||||
import { ReactComponent as ArmorNone } from './../assets/images/icon_armor_none_default.svg';
|
||||
import { ReactComponent as Blind } from './../assets/images/icon_blind.svg';
|
||||
import { ReactComponent as Bomb } from './../assets/images/icon_bomb_default.svg';
|
||||
import { ReactComponent as BombExplosion } from './../assets/images/icon_bomb_explosion_default.svg';
|
||||
import { ReactComponent as Bullets } from './../assets/images/icon_bullets_default.svg';
|
||||
import { ReactComponent as Burning } from './../assets/images/icon_burning.svg';
|
||||
import { ReactComponent as C4 } from './../assets/images/icon_c4_default.svg';
|
||||
import { ReactComponent as Defuse } from './../assets/images/icon_defuse_default.svg';
|
||||
import { ReactComponent as Health } from './../assets/images/icon_health_default.svg';
|
||||
import { ReactComponent as HealthFull } from './../assets/images/icon_health_full_default.svg';
|
||||
import { ReactComponent as Hourglass } from './../assets/images/icon_hourglass_default.svg';
|
||||
import { ReactComponent as Microphone } from './../assets/images/icon_microphone.svg';
|
||||
import { ReactComponent as Pause } from './../assets/images/icon_pause_default.svg';
|
||||
import { ReactComponent as Skull } from './../assets/images/icon_skull_default.svg';
|
||||
import { ReactComponent as Timer } from './../assets/images/icon_timer_default.svg';
|
||||
import LogoCT from './../assets/images/logo_CT_default.png';
|
||||
import LogoT from './../assets/images/logo_T_default.png';
|
||||
import { ReactComponent as SmallBomb } from "./../assets/images/bomb.svg";
|
||||
|
||||
|
||||
export {
|
||||
SmallBomb,
|
||||
ArmorFull,
|
||||
ArmorHalf,
|
||||
ArmorHalfHelmet,
|
||||
ArmorHelmet,
|
||||
ArmorNone,
|
||||
Blind,
|
||||
Bomb,
|
||||
BombExplosion,
|
||||
Bullets,
|
||||
Burning,
|
||||
C4,
|
||||
Defuse,
|
||||
Health,
|
||||
HealthFull,
|
||||
Hourglass,
|
||||
Microphone,
|
||||
Pause,
|
||||
Skull,
|
||||
Timer,
|
||||
LogoCT,
|
||||
LogoT,
|
||||
}
|
||||
|
||||
@@ -1,142 +0,0 @@
|
||||
import { ReactComponent as ak47 } from './weapons/ak47.svg';
|
||||
import { ReactComponent as aug } from './weapons/aug.svg';
|
||||
import { ReactComponent as awp } from './weapons/awp.svg';
|
||||
import { ReactComponent as bayonet } from './weapons/bayonet.svg';
|
||||
import { ReactComponent as bizon } from './weapons/bizon.svg';
|
||||
import { ReactComponent as c4 } from './weapons/c4.svg';
|
||||
import { ReactComponent as cz75a } from './weapons/cz75a.svg';
|
||||
import { ReactComponent as deagle } from './weapons/deagle.svg';
|
||||
import { ReactComponent as decoy } from './weapons/decoy.svg';
|
||||
import { ReactComponent as elite } from './weapons/elite.svg';
|
||||
import { ReactComponent as famas } from './weapons/famas.svg';
|
||||
import { ReactComponent as fiveseven } from './weapons/fiveseven.svg';
|
||||
import { ReactComponent as flashbang } from './weapons/flashbang.svg';
|
||||
import { ReactComponent as g3sg1 } from './weapons/g3sg1.svg';
|
||||
import { ReactComponent as galilar } from './weapons/galilar.svg';
|
||||
import { ReactComponent as glock } from './weapons/glock.svg';
|
||||
import { ReactComponent as hegrenade } from './weapons/hegrenade.svg';
|
||||
import { ReactComponent as hkp2000 } from './weapons/hkp2000.svg';
|
||||
import { ReactComponent as incgrenade } from './weapons/incgrenade.svg';
|
||||
import { ReactComponent as inferno } from './weapons/inferno.svg';
|
||||
import { ReactComponent as knife } from './weapons/knife.svg';
|
||||
import { ReactComponent as knife_bayonet } from './weapons/knife_bayonet.svg';
|
||||
import { ReactComponent as knife_butterfly } from './weapons/knife_butterfly.svg';
|
||||
import { ReactComponent as knife_canis } from './weapons/knife_canis.svg';
|
||||
import { ReactComponent as knife_cord } from './weapons/knife_cord.svg';
|
||||
import { ReactComponent as knife_css } from './weapons/knife_css.svg';
|
||||
import { ReactComponent as knife_falchion } from './weapons/knife_falchion.svg';
|
||||
import { ReactComponent as knife_flip } from './weapons/knife_flip.svg';
|
||||
import { ReactComponent as knife_gut } from './weapons/knife_gut.svg';
|
||||
import { ReactComponent as knife_gypsy_jackknife } from './weapons/knife_gypsy_jackknife.svg';
|
||||
import { ReactComponent as knife_karambit } from './weapons/knife_karambit.svg';
|
||||
import { ReactComponent as knife_m9_bayonet } from './weapons/knife_m9_bayonet.svg';
|
||||
import { ReactComponent as knife_outdoor } from './weapons/knife_outdoor.svg';
|
||||
import { ReactComponent as knife_push } from './weapons/knife_push.svg';
|
||||
import { ReactComponent as knife_skeleton } from './weapons/knife_skeleton.svg';
|
||||
import { ReactComponent as knife_stiletto } from './weapons/knife_stiletto.svg';
|
||||
import { ReactComponent as knife_survival_bowie } from './weapons/knife_survival_bowie.svg';
|
||||
import { ReactComponent as knife_t } from './weapons/knife_t.svg';
|
||||
import { ReactComponent as knife_tactical } from './weapons/knife_tactical.svg';
|
||||
import { ReactComponent as knife_ursus } from './weapons/knife_ursus.svg';
|
||||
import { ReactComponent as knife_widowmaker } from './weapons/knife_widowmaker.svg';
|
||||
import { ReactComponent as m249 } from './weapons/m249.svg';
|
||||
import { ReactComponent as m4a1 } from './weapons/m4a1.svg';
|
||||
import { ReactComponent as m4a1_silencer } from './weapons/m4a1_silencer.svg';
|
||||
import { ReactComponent as m4a1_silencer_off } from './weapons/m4a1_silencer_off.svg';
|
||||
import { ReactComponent as mac10 } from './weapons/mac10.svg';
|
||||
import { ReactComponent as mag7 } from './weapons/mag7.svg';
|
||||
import { ReactComponent as molotov } from './weapons/molotov.svg';
|
||||
import { ReactComponent as mp5sd } from './weapons/mp5sd.svg';
|
||||
import { ReactComponent as mp7 } from './weapons/mp7.svg';
|
||||
import { ReactComponent as mp9 } from './weapons/mp9.svg';
|
||||
import { ReactComponent as negev } from './weapons/negev.svg';
|
||||
import { ReactComponent as nova } from './weapons/nova.svg';
|
||||
import { ReactComponent as out } from './weapons/out.svg';
|
||||
import { ReactComponent as p250 } from './weapons/p250.svg';
|
||||
import { ReactComponent as p90 } from './weapons/p90.svg';
|
||||
import { ReactComponent as revolver } from './weapons/revolver.svg';
|
||||
import { ReactComponent as sawedoff } from './weapons/sawedoff.svg';
|
||||
import { ReactComponent as scar20 } from './weapons/scar20.svg';
|
||||
import { ReactComponent as sg556 } from './weapons/sg556.svg';
|
||||
import { ReactComponent as smokegrenade } from './weapons/smokegrenade.svg';
|
||||
import { ReactComponent as ssg08 } from './weapons/ssg08.svg';
|
||||
import { ReactComponent as taser } from './weapons/taser.svg';
|
||||
import { ReactComponent as tec9 } from './weapons/tec9.svg';
|
||||
import { ReactComponent as trigger_hurt } from './weapons/trigger_hurt.svg';
|
||||
import { ReactComponent as ump45 } from './weapons/ump45.svg';
|
||||
import { ReactComponent as usp_silencer } from './weapons/usp_silencer.svg';
|
||||
import { ReactComponent as usp_silencer_off } from './weapons/usp_silencer_off.svg';
|
||||
import { ReactComponent as world } from './weapons/world.svg';
|
||||
import { ReactComponent as xm1014 } from './weapons/xm1014.svg';
|
||||
export {
|
||||
ak47,
|
||||
aug,
|
||||
awp,
|
||||
bayonet,
|
||||
bizon,
|
||||
c4,
|
||||
cz75a,
|
||||
deagle,
|
||||
decoy,
|
||||
elite,
|
||||
famas,
|
||||
fiveseven,
|
||||
flashbang,
|
||||
g3sg1,
|
||||
galilar,
|
||||
glock,
|
||||
hegrenade,
|
||||
hkp2000,
|
||||
incgrenade,
|
||||
inferno,
|
||||
knife,
|
||||
knife_bayonet,
|
||||
knife_butterfly,
|
||||
knife_canis,
|
||||
knife_cord,
|
||||
knife_css,
|
||||
knife_falchion,
|
||||
knife_flip,
|
||||
knife_gut,
|
||||
knife_gypsy_jackknife,
|
||||
knife_karambit,
|
||||
knife_m9_bayonet,
|
||||
knife_outdoor,
|
||||
knife_push,
|
||||
knife_skeleton,
|
||||
knife_stiletto,
|
||||
knife_survival_bowie,
|
||||
knife_t,
|
||||
knife_tactical,
|
||||
knife_ursus,
|
||||
knife_widowmaker,
|
||||
m249,
|
||||
m4a1,
|
||||
m4a1_silencer,
|
||||
m4a1_silencer_off,
|
||||
mac10,
|
||||
mag7,
|
||||
molotov,
|
||||
mp5sd,
|
||||
mp7,
|
||||
mp9,
|
||||
negev,
|
||||
nova,
|
||||
out,
|
||||
p250,
|
||||
p90,
|
||||
revolver,
|
||||
sawedoff,
|
||||
scar20,
|
||||
sg556,
|
||||
smokegrenade,
|
||||
ssg08,
|
||||
taser,
|
||||
tec9,
|
||||
trigger_hurt,
|
||||
ump45,
|
||||
usp_silencer,
|
||||
usp_silencer_off,
|
||||
world,
|
||||
xm1014,
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 774 B |
|
Before Width: | Height: | Size: 34 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="22" viewBox="0 0 16 22" version="1.1">
|
||||
<path d="M 7.086 3.250 C 6.611 4.488, 5.047 6.761, 3.611 8.302 C -2.996 15.391, 4.886 24.971, 12.777 19.443 C 15.890 17.263, 15.760 11.435, 12.516 7.750 C 11.185 6.237, 9.594 5, 8.981 5 C 8.320 5, 8.124 4.184, 8.500 3 C 9.373 0.251, 8.156 0.466, 7.086 3.250" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 401 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 123.069 4.399 C 112.951 19.105, 85.364 28.877, 49.042 30.620 C 41.594 30.978, 34.938 31.714, 34.250 32.257 C 32.316 33.785, 32.490 162.931, 34.438 172.122 C 39.928 198.022, 69.640 226.782, 114.549 249.668 L 127.956 256.500 141.228 249.807 C 185.758 227.351, 216.068 198.040, 221.562 172.122 C 223.510 162.931, 223.684 33.785, 221.750 32.257 C 221.063 31.714, 214.406 30.978, 206.958 30.620 C 170.880 28.888, 143.761 19.416, 133.335 4.903 C 131.289 2.055, 129.033 -0, 127.954 -0 C 126.884 -0, 124.813 1.865, 123.069 4.399 M 121.645 33.568 C 111.669 44.784, 91.883 50.736, 59.500 52.264 L 54.500 52.500 54.500 108.500 L 54.500 164.500 57.610 171 C 66.494 189.568, 87.388 207.863, 116.750 222.783 L 128 228.500 139.250 222.783 C 160.025 212.227, 179.247 197.890, 189.303 185.450 C 191.948 182.178, 195.775 176.149, 197.806 172.053 L 201.500 164.606 201.500 108.553 L 201.500 52.500 190.310 51.851 C 165.626 50.418, 149.074 45.847, 138.007 37.408 C 135.442 35.451, 132.565 32.534, 131.615 30.925 C 130.665 29.316, 129.125 28.025, 128.193 28.055 C 127.262 28.086, 124.315 30.566, 121.645 33.568 M 123 55.240 C 115.991 63.391, 100.434 68.647, 79.768 69.846 L 68.500 70.500 68.500 116.500 L 68.500 162.500 71.494 168.500 C 75.496 176.522, 90.800 191.911, 102.082 199.259 C 106.803 202.333, 114.565 206.783, 119.332 209.147 L 128 213.446 136.668 209.147 C 141.435 206.783, 149.197 202.333, 153.918 199.259 C 165.200 191.911, 180.504 176.522, 184.506 168.500 L 187.500 162.500 187.500 116.500 L 187.500 70.500 176.232 69.846 C 155.603 68.650, 140.242 63.459, 132.753 55.155 C 130.692 52.870, 128.442 51.038, 127.753 51.085 C 127.064 51.131, 124.925 53.001, 123 55.240" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 123.069 4.399 C 112.951 19.105, 85.364 28.877, 49.042 30.620 C 41.594 30.978, 34.938 31.714, 34.250 32.257 C 32.316 33.785, 32.490 162.931, 34.438 172.122 C 39.928 198.022, 69.640 226.782, 114.549 249.668 L 127.956 256.500 141.228 249.807 C 185.758 227.351, 216.068 198.040, 221.562 172.122 C 223.510 162.931, 223.684 33.785, 221.750 32.257 C 221.063 31.714, 214.406 30.978, 206.958 30.620 C 170.880 28.888, 143.761 19.416, 133.335 4.903 C 131.289 2.055, 129.033 -0, 127.954 -0 C 126.884 -0, 124.813 1.865, 123.069 4.399 M 121.645 33.568 C 111.669 44.784, 91.883 50.736, 59.500 52.264 L 54.500 52.500 54.500 108.500 L 54.500 164.500 57.610 171 C 66.494 189.568, 87.388 207.863, 116.750 222.783 L 128 228.500 139.250 222.783 C 160.025 212.227, 179.247 197.890, 189.303 185.450 C 191.948 182.178, 195.775 176.149, 197.806 172.053 L 201.500 164.606 201.500 108.553 L 201.500 52.500 190.310 51.851 C 165.626 50.418, 149.074 45.847, 138.007 37.408 C 135.442 35.451, 132.565 32.534, 131.615 30.925 C 130.665 29.316, 129.125 28.025, 128.193 28.055 C 127.262 28.086, 124.315 30.566, 121.645 33.568 M 128 132 C 128 176.550, 128.235 213, 128.522 213 C 130.015 213, 146.594 204.020, 154 199.201 C 165.197 191.914, 180.516 176.497, 184.506 168.500 L 187.500 162.500 187.500 116.500 L 187.500 70.500 176.232 69.846 C 155.603 68.650, 140.242 63.459, 132.753 55.155 C 130.692 52.870, 128.779 51, 128.503 51 C 128.226 51, 128 87.450, 128 132" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 123.069 4.399 C 112.951 19.105, 85.364 28.877, 49.042 30.620 C 41.594 30.978, 34.938 31.714, 34.250 32.257 C 32.316 33.785, 32.490 162.931, 34.438 172.122 C 39.928 198.022, 69.640 226.782, 114.549 249.668 L 127.956 256.500 141.228 249.807 C 185.758 227.351, 216.068 198.040, 221.562 172.122 C 223.510 162.931, 223.684 33.785, 221.750 32.257 C 221.063 31.714, 214.406 30.978, 206.958 30.620 C 170.880 28.888, 143.761 19.416, 133.335 4.903 C 131.289 2.055, 129.033 -0, 127.954 -0 C 126.884 -0, 124.813 1.865, 123.069 4.399 M 121.645 33.568 C 111.808 44.627, 90.822 51.042, 60.500 52.259 L 54.500 52.500 54.500 108.500 L 54.500 164.500 57.610 171 C 66.494 189.568, 87.388 207.863, 116.750 222.783 L 128 228.500 139.250 222.783 C 160.025 212.227, 179.247 197.890, 189.303 185.450 C 191.948 182.178, 195.775 176.149, 197.806 172.053 L 201.500 164.606 201.500 108.553 L 201.500 52.500 190.310 51.851 C 165.626 50.418, 149.074 45.847, 138.007 37.408 C 135.442 35.451, 132.565 32.534, 131.615 30.925 C 130.665 29.316, 129.125 28.025, 128.193 28.055 C 127.262 28.086, 124.315 30.566, 121.645 33.568 M 128.226 68.250 L 128.500 85.500 134.356 85.803 L 140.211 86.106 139.774 89.084 C 139.370 91.841, 139.776 92.296, 145.245 95.211 C 155.554 100.706, 162.686 111.444, 163.739 123.059 C 164.231 128.484, 164.483 129, 166.639 129 C 168.837 129, 169 129.384, 169 134.551 C 169 139.950, 168.904 140.142, 165.500 141.564 C 163.311 142.479, 162 143.711, 162 144.854 C 162 148.274, 155.940 158.821, 151.853 162.514 C 146.822 167.059, 139.030 170.773, 132.750 171.618 L 128 172.258 128 192.629 C 128 203.833, 128.235 213, 128.522 213 C 130.023 213, 146.604 204.013, 154 199.190 C 165.301 191.822, 180.616 176.429, 184.535 168.500 L 187.500 162.500 187.500 116.500 L 187.500 70.500 176.232 69.846 C 155.603 68.650, 140.242 63.459, 132.753 55.155 C 130.692 52.870, 128.768 51, 128.479 51 C 128.190 51, 128.076 58.763, 128.226 68.250 M 128 105 C 128 116.778, 128.238 119, 129.500 119 C 130.325 119, 131 118.564, 131 118.030 C 131 116.638, 133.965 95.929, 134.548 93.250 C 134.984 91.250, 134.647 91, 131.519 91 L 128 91 128 105 M 146 146.641 C 145.175 146.866, 140.900 147.377, 136.500 147.775 L 128.500 148.500 128.201 155.389 L 127.902 162.278 131.656 161.668 C 137.560 160.710, 144.189 156.774, 147.741 152.118 C 149.533 149.767, 151 147.430, 151 146.922 C 151 145.998, 148.809 145.875, 146 146.641" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 123.069 4.399 C 112.951 19.105, 85.364 28.877, 49.042 30.620 C 41.594 30.978, 34.938 31.714, 34.250 32.257 C 32.316 33.785, 32.490 162.931, 34.438 172.122 C 39.928 198.022, 69.640 226.782, 114.549 249.668 L 127.956 256.500 141.228 249.807 C 185.758 227.351, 216.068 198.040, 221.562 172.122 C 223.510 162.931, 223.684 33.785, 221.750 32.257 C 221.063 31.714, 214.406 30.978, 206.958 30.620 C 170.880 28.888, 143.761 19.416, 133.335 4.903 C 131.289 2.055, 129.033 -0, 127.954 -0 C 126.884 -0, 124.813 1.865, 123.069 4.399 M 121.645 33.568 C 111.669 44.784, 91.883 50.736, 59.500 52.264 L 54.500 52.500 54.500 108.500 L 54.500 164.500 57.610 171 C 66.494 189.568, 87.388 207.863, 116.750 222.783 L 128 228.500 139.250 222.783 C 160.025 212.227, 179.247 197.890, 189.303 185.450 C 191.948 182.178, 195.775 176.149, 197.806 172.053 L 201.500 164.606 201.500 108.553 L 201.500 52.500 190.310 51.851 C 165.626 50.418, 149.074 45.847, 138.007 37.408 C 135.442 35.451, 132.565 32.534, 131.615 30.925 C 130.665 29.316, 129.125 28.025, 128.193 28.055 C 127.262 28.086, 124.315 30.566, 121.645 33.568 M 123 55.240 C 115.991 63.391, 100.434 68.647, 79.768 69.846 L 68.500 70.500 68.500 116.500 L 68.500 162.500 71.494 168.500 C 75.496 176.522, 90.800 191.911, 102.082 199.259 C 106.803 202.333, 114.565 206.783, 119.332 209.147 L 128 213.446 136.668 209.147 C 141.435 206.783, 149.197 202.333, 153.918 199.259 C 165.200 191.911, 180.504 176.522, 184.506 168.500 L 187.500 162.500 187.500 116.500 L 187.500 70.500 176.232 69.846 C 155.603 68.650, 140.242 63.459, 132.753 55.155 C 130.692 52.870, 128.442 51.038, 127.753 51.085 C 127.064 51.131, 124.925 53.001, 123 55.240 M 116.218 89.031 C 116.632 91.854, 116.257 92.279, 110.755 95.211 C 100.446 100.706, 93.314 111.444, 92.261 123.059 C 91.769 128.484, 91.517 129, 89.361 129 C 87.163 129, 87 129.384, 87 134.551 C 87 139.950, 87.096 140.142, 90.500 141.564 C 92.689 142.479, 94 143.711, 94 144.854 C 94 148.281, 100.064 158.825, 104.166 162.531 C 111.202 168.887, 118.144 171.500, 128 171.500 C 137.856 171.500, 144.798 168.887, 151.834 162.531 C 155.936 158.825, 162 148.281, 162 144.854 C 162 143.711, 163.311 142.479, 165.500 141.564 C 168.904 140.142, 169 139.950, 169 134.551 C 169 129.384, 168.837 129, 166.639 129 C 164.483 129, 164.231 128.484, 163.739 123.059 C 162.686 111.444, 155.554 100.706, 145.245 95.211 C 139.743 92.279, 139.368 91.854, 139.782 89.031 L 140.227 86 128 86 L 115.773 86 116.218 89.031 M 121.452 93.250 C 122.035 95.929, 125 116.638, 125 118.030 C 125 118.564, 126.350 119, 128 119 C 129.650 119, 131 118.564, 131 118.030 C 131 116.638, 133.965 95.929, 134.548 93.250 C 135.020 91.083, 134.777 91, 128 91 C 121.223 91, 120.980 91.083, 121.452 93.250 M 105 146.888 C 105 147.414, 106.467 149.767, 108.259 152.118 C 115.316 161.369, 128.999 164.358, 139.517 158.945 C 144.012 156.632, 151 149.294, 151 146.888 C 151 146.301, 148.972 146.234, 145.750 146.716 C 142.863 147.147, 134.875 147.500, 128 147.500 C 121.125 147.500, 113.138 147.147, 110.250 146.716 C 107.028 146.234, 105 146.301, 105 146.888" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 123.069 4.399 C 112.951 19.105, 85.364 28.877, 49.042 30.620 C 41.594 30.978, 34.938 31.714, 34.250 32.257 C 32.316 33.785, 32.490 162.931, 34.438 172.122 C 39.928 198.022, 69.640 226.782, 114.549 249.668 L 127.956 256.500 141.228 249.807 C 185.758 227.351, 216.068 198.040, 221.562 172.122 C 223.510 162.931, 223.684 33.785, 221.750 32.257 C 221.063 31.714, 214.406 30.978, 206.958 30.620 C 170.880 28.888, 143.761 19.416, 133.335 4.903 C 131.289 2.055, 129.033 -0, 127.954 -0 C 126.884 -0, 124.813 1.865, 123.069 4.399 M 121.645 33.568 C 111.808 44.627, 90.822 51.042, 60.500 52.259 L 54.500 52.500 54.500 108.500 L 54.500 164.500 57.610 171 C 66.494 189.568, 87.388 207.863, 116.750 222.783 L 128 228.500 139.250 222.783 C 160.025 212.227, 179.247 197.890, 189.303 185.450 C 191.948 182.178, 195.775 176.149, 197.806 172.053 L 201.500 164.606 201.500 108.553 L 201.500 52.500 190.310 51.851 C 165.626 50.418, 149.074 45.847, 138.007 37.408 C 135.442 35.451, 132.565 32.534, 131.615 30.925 C 130.665 29.316, 129.125 28.025, 128.193 28.055 C 127.262 28.086, 124.315 30.566, 121.645 33.568" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 217.500 17.385 C 215.850 18.164, 170.092 63.284, 115.815 117.651 C 8.536 225.108, 14.704 218.276, 16.472 227.701 C 17.395 232.623, 23.377 238.605, 28.299 239.528 C 37.728 241.297, 30.847 247.517, 138.754 139.688 C 211.188 67.307, 238.309 39.595, 239.120 37.136 C 241.341 30.406, 238.871 23.233, 232.763 18.672 C 229.423 16.179, 221.472 15.508, 217.500 17.385 M 108.204 49.109 C 70.605 54.156, 39.237 73.576, 9.811 110.023 C -0.335 122.591, -1.811 126.837, 1.379 134.282 C 3.228 138.598, 17.512 155.531, 27.951 165.783 L 36.402 174.082 58.201 152.299 C 79.423 131.094, 80 130.410, 80 126.469 C 80 115.367, 86.301 101.714, 95.247 93.431 C 104.206 85.137, 116.149 80, 126.473 80 C 130.356 80, 131.125 79.400, 144.841 65.659 L 159.156 51.319 151.828 50.052 C 142.269 48.400, 117.480 47.864, 108.204 49.109 M 197.659 103.841 C 178.751 122.764, 176 125.911, 176 128.622 C 176 145.350, 164.836 163.050, 149.561 170.540 C 142.608 173.950, 134.736 176, 128.601 176 C 125.909 176, 123.479 177.999, 111.137 190.362 L 96.801 204.725 105.150 206.112 C 118.403 208.315, 145.178 207.825, 157.734 205.149 C 191.722 197.907, 219.315 179.333, 246.699 145.261 C 257.955 131.256, 258.697 125.906, 250.785 115.793 C 243.462 106.431, 228.269 89.610, 223.727 85.833 L 219.317 82.166 197.659 103.841" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 68 20.469 C 60.759 22.545, 58.164 23.783, 53.341 27.466 C 43.660 34.858, 37.936 46.035, 36.024 61.278 C 34.701 71.835, 34.711 124.817, 36.040 136.500 C 37.471 149.093, 40.626 158.293, 45.353 163.664 C 50.213 169.185, 53.685 171, 59.385 171 C 61.852 171, 65.024 171.439, 66.435 171.975 L 69 172.950 69 203.023 L 69 233.095 71.646 235.548 L 74.292 238 140.557 238 L 206.822 238 209.411 234.923 L 212 231.847 212 185.923 L 212 140 214.566 140 C 215.977 140, 218.002 139.534, 219.066 138.965 C 220.900 137.983, 221 136.619, 221 112.572 C 221 84.776, 221.280 86, 214.918 86 L 212 86 212 67.455 C 212 49.098, 211.975 48.884, 209.545 46.455 L 207.091 44 167.545 44 L 128 44 128 40.559 C 128 38.666, 127.609 36.876, 127.131 36.581 C 126.654 36.286, 125.980 34.275, 125.634 32.113 C 125.081 28.655, 124.448 27.911, 120.376 25.940 C 108.752 20.313, 79.283 17.234, 68 20.469 M 71.800 23.193 C 61.343 24.519, 50.631 31.751, 45.696 40.817 C 39.705 51.825, 38.749 58.465, 38.260 92.500 C 37.402 152.181, 42.607 167.899, 63.250 167.978 L 69 168 69 108.174 L 69 48.349 71.314 46.174 C 73.556 44.068, 74.372 44, 97.314 44 L 121 44 121 40.700 C 121 38.885, 121.475 36.925, 122.055 36.345 C 123.912 34.488, 122.013 30.234, 118.605 28.617 C 109.654 24.369, 85.030 21.516, 71.800 23.193 M 92.440 64.296 C 92.162 65.019, 92.062 71.211, 92.218 78.055 L 92.500 90.500 139.500 90.500 L 186.500 90.500 186.500 77 L 186.500 63.500 139.722 63.240 C 101.799 63.029, 92.849 63.229, 92.440 64.296 M 112 163 L 112 207 149.500 207 L 187 207 187 163 L 187 119 149.500 119 L 112 119 112 163 M 125 132.843 C 125 138.275, 125.760 139, 131.459 139 C 135.684 139, 137.208 137.098, 136.815 132.320 L 136.500 128.500 130.750 128.200 L 125 127.900 125 132.843 M 145.422 129.342 C 145.117 130.138, 145.009 132.524, 145.183 134.645 C 145.493 138.419, 145.591 138.507, 149.824 138.811 C 155.527 139.221, 157.178 137.748, 156.800 132.586 L 156.500 128.500 151.239 128.197 C 147.361 127.974, 145.832 128.275, 145.422 129.342 M 165.254 129.700 C 164.775 130.690, 164.635 133.075, 164.942 135 C 165.470 138.311, 165.734 138.517, 169.824 138.811 C 175.527 139.221, 177.178 137.748, 176.800 132.586 L 176.500 128.500 171.312 128.200 C 167.118 127.957, 165.957 128.245, 165.254 129.700 M 125.196 152.198 L 125.500 157.500 131 157.500 L 136.500 157.500 136.500 152.500 L 136.500 147.500 130.696 147.198 L 124.892 146.897 125.196 152.198 M 145.422 148.342 C 145.117 149.138, 145.009 151.524, 145.183 153.645 C 145.477 157.222, 145.745 157.523, 148.888 157.824 C 150.752 158.002, 153.364 157.875, 154.692 157.541 C 156.878 156.993, 157.078 156.488, 156.803 152.218 L 156.500 147.500 151.239 147.197 C 147.361 146.974, 145.832 147.275, 145.422 148.342 M 165.408 148.150 C 164.467 149.672, 164.403 154.001, 165.287 156.305 C 165.760 157.537, 167.107 157.996, 170.219 157.985 C 176.237 157.963, 177.186 157.088, 176.815 151.901 L 176.500 147.500 171.339 147.201 C 168.007 147.008, 165.906 147.344, 165.408 148.150 M 125.712 166.622 C 125.320 167.013, 125 169.531, 125 172.217 L 125 177.100 130.750 176.800 L 136.500 176.500 136.500 171.500 L 136.500 166.500 131.462 166.205 C 128.690 166.043, 126.103 166.230, 125.712 166.622 M 145.196 171.198 L 145.500 176.500 151 176.500 L 156.500 176.500 156.500 171.500 L 156.500 166.500 150.696 166.198 L 144.892 165.897 145.196 171.198 M 164.928 166.700 C 164.447 172.017, 164.709 175.346, 165.672 176.144 C 166.317 176.679, 169.017 176.977, 171.672 176.808 L 176.500 176.500 176.500 171.500 L 176.500 166.500 170.750 166.200 C 167.588 166.035, 164.967 166.260, 164.928 166.700 M 126.250 185.662 C 125.485 185.971, 125 188.096, 125 191.133 L 125 196.100 130.750 195.800 L 136.500 195.500 136.815 191.099 C 137.018 188.255, 136.665 186.403, 135.815 185.864 C 134.399 184.967, 128.294 184.837, 126.250 185.662 M 146.185 185.864 C 145.335 186.403, 144.982 188.255, 145.185 191.099 L 145.500 195.500 151 195.500 L 156.500 195.500 156.815 191.680 C 156.988 189.579, 156.595 187.217, 155.942 186.430 C 154.656 184.881, 148.316 184.513, 146.185 185.864 M 166.123 185.903 C 164.940 186.652, 164.520 189.712, 164.902 194.800 C 164.973 195.742, 166.581 196.017, 170.750 195.800 L 176.500 195.500 176.815 191.680 C 176.988 189.579, 176.595 187.217, 175.942 186.430 C 174.639 184.860, 168.306 184.520, 166.123 185.903" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 121.315 58.007 C 120.114 58.491, 118.622 59.838, 118 61 C 117.378 62.161, 113.758 81.424, 109.954 103.806 C 106.150 126.188, 102.917 145.084, 102.769 145.798 C 102.621 146.511, 89.261 134.924, 73.079 120.048 C 47.556 96.582, 43.241 93, 40.504 93 C 36.868 93, 33 96.473, 33 99.738 C 33 100.898, 40.891 122.440, 50.536 147.608 C 60.181 172.777, 67.881 193.869, 67.646 194.479 C 67.412 195.089, 54.684 198.418, 39.360 201.877 C 15.404 207.285, 11.185 208.513, 9.250 210.639 C 6.553 213.603, 6.365 217.047, 8.750 219.794 C 10.219 221.486, 60.267 243.454, 72.286 247.683 C 78.301 249.799, 83 246.690, 83 240.593 C 83 236.849, 79.332 234.636, 58.671 225.919 C 47.765 221.318, 39.348 217.384, 39.967 217.178 C 40.586 216.971, 50.386 214.648, 61.745 212.014 C 83.440 206.984, 86 205.787, 86 200.672 C 86 199.514, 81.084 185.726, 75.075 170.033 C 58.135 125.793, 58.755 127.557, 60.691 129.126 C 61.622 129.882, 71.826 139.162, 83.365 149.750 C 101.300 166.206, 104.800 169, 107.484 169 C 110.188 169, 115 166.052, 115 164.395 C 115 163.616, 123.931 109.979, 124.610 106.678 C 124.929 105.127, 125.370 104.037, 125.590 104.257 C 125.810 104.477, 129.122 117.833, 132.951 133.937 C 136.780 150.041, 140.617 164.293, 141.479 165.608 C 144.844 170.744, 147.466 169.620, 182.671 147.956 C 200.587 136.931, 215.363 128.044, 215.508 128.206 C 215.653 128.367, 207.276 143.800, 196.893 162.500 C 186.244 181.679, 178.012 197.615, 178.008 199.059 C 177.992 204.401, 180.070 205.399, 210.239 214.547 C 215.595 216.171, 219.983 217.745, 219.989 218.045 C 219.995 218.345, 212.463 222.111, 203.250 226.414 C 184.716 235.071, 182 236.964, 182 241.220 C 182 244.472, 185.907 249.003, 188.705 248.995 C 191.578 248.987, 245.320 223.164, 247.250 220.864 C 248.212 219.717, 249 217.753, 249 216.500 C 249 211.564, 246.347 210.203, 222 202.647 C 209.075 198.635, 197.964 195.161, 197.310 194.927 C 196.540 194.651, 197.804 191.500, 200.891 186 C 225.716 141.769, 244 107.734, 244 105.754 C 244 102.588, 240.077 99, 236.614 99 C 234.763 99, 220.492 107.211, 193.204 123.974 C 165.653 140.899, 152.339 148.554, 151.894 147.724 C 151.533 147.051, 149.794 140.425, 148.029 133 C 146.264 125.575, 141.723 106.450, 137.936 90.500 C 131.904 65.089, 130.733 61.222, 128.470 59.250 C 125.686 56.824, 124.684 56.650, 121.315 58.007 M 124.115 169.250 C 122.835 184.787, 121.637 197.661, 121.453 197.857 C 121.269 198.054, 111.979 189.659, 100.809 179.203 C 89.639 168.746, 80.405 160.280, 80.289 160.390 C 80.172 160.500, 85.950 172.191, 93.128 186.372 C 100.306 200.552, 105.975 212.358, 105.725 212.608 C 105.475 212.858, 96.210 214.720, 85.136 216.746 C 74.061 218.773, 65 220.727, 65 221.090 C 65 221.453, 66.463 222.042, 68.250 222.399 C 75.212 223.790, 106 233.315, 106 234.078 C 106 234.523, 103.525 237.804, 100.500 241.369 C 97.475 244.935, 95 248.111, 95 248.426 C 95 248.742, 110.118 249, 128.595 249 L 162.190 249 159.595 244.572 C 158.168 242.136, 157 239.754, 157 239.278 C 157 238.802, 165.546 234.190, 175.991 229.031 C 186.436 223.871, 194.829 219.496, 194.642 219.309 C 194.455 219.122, 185.412 217.428, 174.545 215.545 C 163.679 213.662, 154.630 211.963, 154.436 211.769 C 154.242 211.576, 162.430 198.836, 172.632 183.459 C 194.254 150.866, 192.769 153.206, 190.942 154.600 C 176.738 165.433, 138.819 193.143, 138.573 192.869 C 138.391 192.666, 135.845 180.912, 132.915 166.750 C 129.986 152.588, 127.331 141, 127.016 141 C 126.701 141, 125.395 153.713, 124.115 169.250" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 36.500 28.428 C 29.399 32.706, 21.611 44.996, 18.574 56.716 C 17.679 60.167, 17 66.885, 17 72.276 L 17 81.763 13.500 84.432 L 10 87.102 10 148.527 C 10 208.153, 9.942 210.048, 8.004 213.226 C 5.617 217.140, 5.456 221.047, 7.517 225.033 C 10.483 230.768, 11.941 231, 45 231 C 77.260 231, 78.950 230.764, 82.439 225.783 C 84.900 222.270, 84.445 215.682, 81.500 212.182 L 79 209.211 79 148.136 L 79 87.060 76 84.842 C 73.042 82.655, 73 82.494, 73 73.361 C 73 62.201, 71.712 55.618, 67.855 47.060 C 59.636 28.822, 47.660 21.706, 36.500 28.428 M 119.500 28.428 C 112.399 32.706, 104.611 44.996, 101.574 56.716 C 100.679 60.167, 100 66.885, 100 72.276 L 100 81.763 96.500 84.432 L 93 87.102 93 148.527 C 93 208.153, 92.942 210.048, 91.004 213.226 C 88.617 217.140, 88.456 221.047, 90.517 225.033 C 93.483 230.768, 94.941 231, 128 231 C 160.260 231, 161.950 230.764, 165.439 225.783 C 167.900 222.270, 167.445 215.682, 164.500 212.182 L 162 209.211 162 148.136 L 162 87.060 159 84.842 C 156.042 82.655, 156 82.494, 156 73.361 C 156 62.201, 154.712 55.618, 150.855 47.060 C 142.636 28.822, 130.660 21.706, 119.500 28.428 M 202.500 28.428 C 195.399 32.706, 187.611 44.996, 184.574 56.716 C 183.679 60.167, 183 66.885, 183 72.276 L 183 81.763 179.500 84.432 L 176 87.102 176 148.527 C 176 208.153, 175.942 210.048, 174.004 213.226 C 171.617 217.140, 171.456 221.047, 173.517 225.033 C 176.483 230.768, 177.941 231, 211 231 C 243.260 231, 244.950 230.764, 248.439 225.783 C 250.900 222.270, 250.445 215.682, 247.500 212.182 L 245 209.211 245 148.136 L 245 87.060 242 84.842 C 239.042 82.655, 239 82.494, 239 73.361 C 239 62.201, 237.712 55.618, 233.855 47.060 C 225.636 28.822, 213.660 21.706, 202.500 28.428 M 22.498 96.363 C 21.139 98.436, 20.984 105.474, 21.225 153.944 C 21.491 207.282, 21.566 209.210, 23.441 210.581 C 25.976 212.434, 28.478 212.380, 30.429 210.429 C 31.820 209.037, 32 202.412, 32 152.629 C 32 110.229, 31.705 96.105, 30.800 95.200 C 28.736 93.136, 24.196 93.771, 22.498 96.363 M 105.498 96.363 C 104.139 98.436, 103.984 105.474, 104.225 153.944 C 104.491 207.282, 104.566 209.210, 106.441 210.581 C 108.976 212.434, 111.478 212.380, 113.429 210.429 C 114.820 209.037, 115 202.412, 115 152.629 C 115 110.229, 114.705 96.105, 113.800 95.200 C 111.736 93.136, 107.196 93.771, 105.498 96.363 M 188.498 96.363 C 187.139 98.436, 186.984 105.474, 187.225 153.944 C 187.491 207.282, 187.566 209.210, 189.441 210.581 C 191.976 212.434, 194.478 212.380, 196.429 210.429 C 197.820 209.037, 198 202.412, 198 152.629 C 198 110.229, 197.705 96.105, 196.800 95.200 C 194.736 93.136, 190.196 93.771, 188.498 96.363" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 126.210 11.967 C 122.289 33.248, 113.325 56.354, 102.465 73.173 C 97.364 81.074, 85.321 96, 84.048 96 C 82.356 96, 60.634 117.655, 56.463 123.500 C 46.005 138.155, 42.360 152.317, 43.336 174.500 C 44.291 196.222, 50.439 213.762, 62.726 229.828 C 67.999 236.722, 80.689 248.644, 81.689 247.644 C 81.940 247.393, 81.665 245.458, 81.078 243.344 C 79.546 237.826, 79.754 225.365, 81.489 218.703 C 84.638 206.615, 88.162 201.522, 104.464 185.500 C 123.673 166.622, 129.228 158.557, 130.855 147.185 L 131.509 142.612 134.728 151.056 C 139.181 162.735, 145.494 173.071, 153.931 182.500 C 157.869 186.900, 162.180 192.750, 163.511 195.500 C 170.214 209.349, 168.364 228.413, 158.395 248.208 C 156.514 251.944, 155.240 255, 155.563 255 C 156.870 255, 169.004 245.047, 176.880 237.514 C 192.520 222.558, 203.522 206.373, 209.181 190 C 212.429 180.601, 212.464 180.309, 212.414 162.500 C 212.374 147.805, 211.954 142.572, 210.130 134 C 202.794 99.526, 183.062 59.328, 158.341 28.500 C 149.673 17.689, 135.924 4.046, 131.276 1.643 L 128.388 0.149 126.210 11.967" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 7.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 32.583 20.865 C 31.875 22.012, 35.524 27.305, 50.256 46.500 C 61.896 61.665, 62.731 62.516, 66.268 62.810 C 68.321 62.981, 70 63.596, 70 64.176 C 70 66.427, 62.779 75, 60.883 75 C 58.914 75, 58.605 74.523, 57.620 69.973 C 57.140 67.751, 55.112 66.687, 40.787 61.140 C 9.707 49.106, 10.068 49.215, 8.446 51.418 C 7.354 52.901, 7.300 53.657, 8.208 54.750 C 8.853 55.528, 18.703 63.765, 30.097 73.055 C 47.725 87.429, 51.963 90.403, 58.534 93.013 C 70.146 97.626, 71.305 98.398, 76.063 104.690 C 88.284 120.848, 88.731 122.135, 91.446 148.937 C 92.258 156.947, 93.633 165.865, 94.501 168.756 C 99.529 185.484, 109.758 202.913, 121.130 214.128 C 128.984 221.874, 140.323 230.690, 146.592 233.925 C 150.250 235.813, 151.021 235.895, 153.873 234.696 C 157.940 232.985, 161.217 227.080, 160.805 222.205 C 160.539 219.062, 159.614 217.930, 153.500 213.257 C 143.134 205.334, 136.485 198.454, 130.539 189.500 C 121.417 175.762, 117.281 164.355, 114.523 145.324 C 113.632 139.177, 112.475 132.655, 111.951 130.831 C 111.428 129.006, 111 126.653, 111 125.602 C 111 123.765, 111.077 123.760, 112.963 125.466 C 114.847 127.171, 118 127.001, 118 125.195 C 118 124.718, 115.843 122.590, 113.207 120.466 C 109.116 117.170, 98.749 103.700, 97.805 100.453 C 97.637 99.877, 98.709 97.964, 100.187 96.201 L 102.873 92.997 110.187 95.637 C 117.005 98.098, 118.245 98.233, 128.500 97.631 C 134.550 97.275, 143.775 96.316, 149 95.499 C 176.970 91.126, 196.644 95.711, 226.587 113.578 C 236.949 119.761, 241.180 120.470, 245.506 116.748 C 249.320 113.468, 249.992 107.236, 246.842 104.363 C 242.709 100.593, 222.787 87.398, 213.500 82.280 C 199.005 74.293, 191.809 72.835, 167.044 72.867 C 155.645 72.881, 139.816 73.379, 131.868 73.973 C 117.838 75.020, 117.132 74.978, 107.644 72.512 C 92.311 68.528, 92.069 68.370, 84.022 57.100 C 80.056 51.545, 76.410 47, 75.919 47 C 75.428 47, 66.365 40.925, 55.779 33.500 C 37.712 20.827, 33.893 18.747, 32.583 20.865 M 118.661 103.440 C 117.839 105.583, 121.583 107, 128.065 107 C 136.459 107, 133.582 103.960, 123.801 102.493 C 120.142 101.944, 119.166 102.124, 118.661 103.440 M 114.178 109.687 C 114.623 111.994, 128 115.544, 128 113.354 C 128 111.689, 119.968 108, 116.344 108 C 114.546 108, 113.944 108.469, 114.178 109.687 M 110 113.766 C 110 114.898, 120.536 121, 122.490 121 C 125.406 121, 123.541 118.598, 118.432 115.773 C 113.598 113.101, 110 112.245, 110 113.766" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 66.500 24.022 C 44.194 28.499, 26.161 46.086, 20.381 69 C 17.757 79.403, 19.585 100.520, 24.255 113.750 L 25.402 117 51.372 117 C 73.800 117, 77.584 117.219, 79.115 118.604 C 80.767 120.099, 80.982 119.981, 82.307 116.854 C 83.088 115.009, 87.221 105.175, 91.490 95 C 101.350 71.500, 102.445 69.378, 105.062 68.694 C 108.143 67.888, 111.897 69.589, 112.873 72.232 C 113.334 73.479, 116.583 89.880, 120.094 108.678 C 123.605 127.475, 126.667 142.667, 126.897 142.436 C 127.128 142.205, 128.523 134.816, 129.998 126.015 C 131.873 114.818, 133.223 109.411, 134.494 108.007 C 136.137 106.192, 137.566 106, 149.464 106 C 158.486 106, 163.109 106.393, 164.183 107.250 C 165.044 107.938, 168.097 112.030, 170.967 116.343 L 176.187 124.187 179.478 120.593 L 182.770 117 206.805 117 L 230.839 117 232.371 112.250 C 237.014 97.849, 238.347 78.593, 235.467 67.533 C 232.537 56.287, 228.313 49.088, 219.603 40.500 C 210.436 31.462, 202.139 26.773, 191.217 24.458 C 177.600 21.572, 163.085 23.640, 150.728 30.225 C 144.708 33.433, 134.450 42.549, 130.162 48.500 L 128 51.500 125.838 48.500 C 121.550 42.549, 111.292 33.433, 105.272 30.225 C 93.846 24.136, 78.313 21.651, 66.500 24.022 M 96.045 118.013 C 91.458 128.992, 87.071 138.881, 86.296 139.988 C 84.506 142.543, 78.922 142.697, 76.771 140.250 C 75.925 139.287, 74.271 136.588, 73.096 134.250 L 70.959 130 51.004 130 L 31.050 130 31.923 132.296 C 35.556 141.852, 50.981 163.676, 66.019 180.537 C 83.689 200.349, 122.310 233, 128.074 233 C 130.923 233, 149.154 219.315, 165.490 204.912 C 183.358 189.160, 197.373 173.777, 209.887 156.182 C 215.169 148.755, 225 132.239, 225 130.792 C 225 130.356, 216.728 130, 206.619 130 L 188.237 130 185.747 133.250 C 179.383 141.555, 175.638 143.563, 171.866 140.693 C 170.968 140.009, 167.247 134.848, 163.597 129.225 L 156.962 119 150.712 119 L 144.461 119 139.122 151.250 C 136.185 168.988, 133.371 184.277, 132.868 185.227 C 130.024 190.601, 122.721 189.311, 120.995 183.130 C 120.438 181.134, 116.586 161.287, 112.434 139.027 C 108.283 116.767, 104.774 98.440, 104.635 98.302 C 104.497 98.163, 100.631 107.033, 96.045 118.013" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 66.500 24.022 C 44.194 28.499, 26.161 46.086, 20.381 69 C 18.426 76.750, 18.935 92.463, 21.499 103.500 C 28.045 131.681, 46.232 160.992, 75.333 190.259 C 94.467 209.503, 123.321 232.933, 127.940 232.977 C 132.818 233.023, 168.863 203.506, 185.414 185.912 C 195.330 175.371, 206.039 162.026, 213.429 151 C 219.234 142.340, 229 123.860, 229 121.537 C 229 120.831, 229.908 118.201, 231.018 115.692 C 234.246 108.395, 236.967 93.466, 236.984 82.960 C 237.002 72.118, 235.352 64.645, 230.825 55.073 C 226.597 46.135, 214.154 33.801, 204.711 29.191 C 187.618 20.845, 167.610 21.229, 150.728 30.225 C 144.708 33.433, 134.450 42.549, 130.162 48.500 L 128 51.500 125.838 48.500 C 121.550 42.549, 111.292 33.433, 105.272 30.225 C 93.846 24.136, 78.313 21.651, 66.500 24.022" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 922 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 31.368 19.571 C 27.199 23.991, 27.037 27.422, 30.784 31.910 C 32.738 34.251, 34.731 35.434, 37.472 35.879 L 41.377 36.514 43.052 45.007 C 48.389 72.064, 58.504 92.751, 79.193 118.926 C 82.920 123.642, 85.970 127.950, 85.970 128.500 C 85.970 129.050, 82.841 133.459, 79.017 138.297 C 58.318 164.487, 48.489 184.632, 43.062 211.993 L 41.377 220.486 37.472 221.121 C 34.731 221.566, 32.738 222.749, 30.784 225.090 C 27.037 229.578, 27.199 233.009, 31.368 237.429 L 34.736 241 128.500 241 L 222.264 241 225.632 237.429 C 229.801 233.009, 229.963 229.578, 226.216 225.090 C 224.263 222.750, 222.269 221.566, 219.530 221.121 L 215.628 220.487 213.842 211.255 C 208.974 186.100, 197.809 163.382, 177.983 138.297 C 174.159 133.459, 171.026 129.050, 171.021 128.500 C 171.015 127.950, 173.535 124.350, 176.619 120.500 C 197.225 94.781, 208.880 71.389, 213.827 45.819 L 215.628 36.513 219.530 35.879 C 222.269 35.434, 224.263 34.250, 226.216 31.910 C 229.963 27.422, 229.801 23.991, 225.632 19.571 L 222.264 16 128.500 16 L 34.736 16 31.368 19.571 M 63.311 37.631 C 62.426 39.938, 64.725 50.672, 68.168 60.305 C 73.625 75.574, 83.869 92.284, 98.940 110.500 C 109.645 123.439, 111.557 126.964, 110.113 131.106 C 109.560 132.692, 106.026 137.705, 102.260 142.245 C 79.500 169.683, 68.225 190.061, 63.891 211.592 C 61.799 221.987, 55.019 221, 128.500 221 C 201.874 221, 195.215 221.944, 193.127 211.835 C 188.817 190.970, 178.064 170.842, 158.330 146.697 C 147.164 133.036, 145.466 129.971, 146.855 125.985 C 147.426 124.348, 150.987 119.293, 154.767 114.754 C 177.198 87.820, 188.590 67.129, 193.154 45.034 C 195.210 35.078, 201.811 36, 128.500 36 C 69.724 36, 63.881 36.146, 63.311 37.631 M 99.655 68.829 C 98.745 69.835, 98 71.525, 98 72.586 C 98 75.904, 107.677 94.156, 113.595 102 C 120.119 110.647, 122.947 116.231, 122.978 120.527 C 122.990 122.193, 123.701 124.555, 124.557 125.777 C 127.855 130.487, 133.974 127.092, 134.022 120.527 C 134.053 116.231, 136.881 110.647, 143.405 102 C 149.464 93.968, 159 75.877, 159 72.412 C 159 71.256, 158.177 69.565, 157.171 68.655 C 155.565 67.201, 152.062 67, 128.326 67 C 103.423 67, 101.181 67.143, 99.655 68.829 M 124.557 141.223 C 123.701 142.445, 123 144.717, 123 146.272 C 123 152.333, 118.238 158.676, 107.174 167.351 C 96.367 175.824, 83.418 189.262, 77.250 198.405 C 71.555 206.847, 71.034 208.816, 73.829 211.345 C 75.482 212.841, 80.745 213, 128.674 213 C 178.765 213, 181.781 212.899, 183.345 211.171 C 185.870 208.382, 185.432 206.827, 179.750 198.405 C 173.731 189.484, 160.812 176.016, 150.254 167.657 C 138.569 158.407, 134 152.393, 134 146.262 C 134 142.428, 131.404 139, 128.500 139 C 127.167 139, 125.426 139.982, 124.557 141.223" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 80.398 1.821 C 65.129 6.363, 53.649 17.697, 48.964 32.855 C 47.132 38.783, 47 42.316, 47 85.395 C 47 123.769, 47.261 132.588, 48.542 137.540 C 52.928 154.489, 68.346 168.161, 86.250 170.977 C 108.914 174.541, 131.815 159.496, 137.500 137.307 C 138.846 132.053, 139.032 124.236, 138.787 83.331 C 138.503 35.955, 138.478 35.445, 136.182 29.760 C 131.375 17.858, 120.753 7.297, 109.264 2.997 C 101.150 -0.040, 88.403 -0.559, 80.398 1.821 M 7.121 68.027 C 2.139 71.636, -0.557 76.644, 0.409 80.493 C 0.782 81.980, 3.318 85.335, 6.044 87.949 L 11 92.701 11.013 115.100 C 11.030 143.295, 12.456 151.390, 20.145 166.936 C 24.787 176.321, 26.494 178.622, 35.435 187.553 C 43.770 195.877, 47.047 198.391, 54.500 202.177 C 59.450 204.692, 65.875 207.521, 68.777 208.464 L 74.054 210.179 73.777 224.339 L 73.500 238.500 66.250 238.794 L 59 239.088 59 247.544 L 59 256 93 256 L 127 256 127 247.544 L 127 239.088 119.750 238.794 L 112.500 238.500 112.223 224.389 L 111.947 210.278 119.723 207.557 C 144.861 198.761, 164.294 178.096, 172.141 151.815 C 174.079 145.327, 174.374 141.563, 174.752 118.514 L 175.179 92.529 180.046 87.863 C 182.723 85.296, 185.223 81.960, 185.603 80.448 C 186.532 76.743, 183.591 71.443, 178.600 67.826 C 175.116 65.301, 173.871 65, 166.923 65 L 159.145 65 158.762 103.750 C 158.427 137.548, 158.149 143.203, 156.591 148 C 147.573 175.767, 124.458 194.127, 96.549 195.692 C 70.244 197.166, 45.036 182.139, 33.770 158.268 C 27.810 145.641, 27.705 144.754, 27.262 103.250 L 26.853 65 19.077 65 C 12.007 65, 10.920 65.275, 7.121 68.027" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 44.256 25.617 C 42.472 26.512, 40.110 28.705, 39.006 30.490 C 37.035 33.679, 37 35.384, 37 127.500 C 37 219.763, 37.032 221.316, 39.016 224.526 C 42.804 230.656, 45.272 231.141, 70.947 230.802 L 93.873 230.500 96.943 227.557 C 98.631 225.938, 100.457 223.013, 101.001 221.057 C 102.342 216.227, 102.342 38.773, 101.001 33.943 C 100.457 31.987, 98.631 29.062, 96.943 27.443 L 93.873 24.500 70.686 24.245 C 50.922 24.028, 47.021 24.231, 44.256 25.617 M 161.500 24.954 C 158.427 26.225, 155.057 30.314, 153.976 34.083 C 152.646 38.723, 152.668 216.263, 153.999 221.057 C 154.543 223.013, 156.369 225.938, 158.057 227.557 L 161.127 230.500 184.053 230.802 C 209.728 231.141, 212.196 230.656, 215.984 224.526 C 217.968 221.316, 218 219.763, 218 127.500 C 218 35.237, 217.968 33.684, 215.984 30.474 C 212.307 24.525, 209.761 23.993, 185.349 24.063 C 173.332 24.098, 162.600 24.499, 161.500 24.954" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1" fill="white">
|
||||
<path d="M 82 8.944 C 63.169 12.939, 47.721 21.462, 34.407 35.203 C 20.800 49.247, 12.780 64.850, 9.500 83.659 C 7.438 95.483, 7.432 134.480, 9.490 146.281 C 13.280 168.017, 25.344 189.281, 40.753 201.387 C 46.669 206.035, 46.729 206.134, 47.360 212.289 C 49.180 230.032, 58.411 242.124, 73.855 246.995 C 79.845 248.885, 82.954 249, 127.924 249 C 179.686 249, 181.239 248.859, 190.747 243.297 C 196.060 240.190, 202.142 233.357, 204.992 227.294 C 206.191 224.743, 207.685 218.895, 208.312 214.298 L 209.451 205.940 215.334 201.319 C 226.915 192.220, 237.592 176.392, 242.869 160.500 C 247.460 146.674, 248.259 138.394, 247.755 109.846 C 247.267 82.219, 246.439 77.004, 240.177 62.100 C 231.501 41.451, 211.435 21.958, 190.525 13.866 C 174.461 7.650, 168.607 7.020, 127.500 7.083 C 95.805 7.133, 89.281 7.399, 82 8.944 M 74.806 81.344 C 69.864 82.732, 68.580 83.513, 63.128 88.448 C 55.115 95.699, 52.596 109.295, 57.366 119.538 C 60.509 126.288, 67.792 132.593, 74.800 134.630 C 92.121 139.666, 110 126.140, 110 108 C 110 89.985, 92.156 76.470, 74.806 81.344 M 167.500 80.938 C 158.588 83.117, 150.397 90.450, 147.554 98.795 C 141.817 115.633, 152.884 133.191, 170.726 135.558 C 186.092 137.596, 200.964 124.357, 200.990 108.616 C 201.005 99.564, 199.256 95.221, 193.026 88.841 C 185.607 81.244, 177.065 78.599, 167.500 80.938 M 123.811 155.750 C 122.987 156.713, 119.060 163.234, 115.086 170.241 C 104.679 188.592, 105.032 189.108, 128 189.108 C 151.110 189.108, 151.364 188.706, 140.428 169.470 C 136.192 162.020, 131.918 155.491, 130.929 154.962 C 128.203 153.503, 125.477 153.805, 123.811 155.750" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" version="1.1">
|
||||
<path d="M 97.557 9.223 C 95.448 12.234, 95.584 17.314, 97.829 19.345 C 99.034 20.436, 101.420 21, 104.829 21 L 110 21 110 30.981 L 110 40.962 107.250 41.557 C 70.068 49.605, 39.939 76.422, 28.673 111.500 C 24.486 124.535, 23.546 130.760, 23.612 145 C 23.660 155.209, 24.194 160.614, 25.801 167.172 C 35.572 207.051, 63.332 235.136, 103.969 246.255 C 114.853 249.233, 141.147 249.233, 152.031 246.255 C 165.022 242.700, 175.684 238.064, 185.126 231.864 C 241.653 194.746, 249.073 115.747, 200.419 69.038 C 185.460 54.677, 169.057 45.952, 148.750 41.557 L 146 40.962 146 30.981 L 146 21 151.345 21 C 155.253 21, 157.135 20.508, 158.345 19.171 C 160.429 16.869, 160.476 12.124, 158.443 9.223 C 156.896 7.013, 156.717 7, 128 7 C 99.283 7, 99.104 7.013, 97.557 9.223 M 56.925 37.493 C 51.942 39.089, 45.937 44.288, 43.392 49.209 C 41.309 53.237, 40.499 62.698, 41.923 66.361 L 43.035 69.221 50.595 62.040 C 58.120 54.891, 69.827 46.557, 75.843 44.065 C 77.579 43.346, 79 42.371, 79 41.899 C 79 40.324, 70.922 36.895, 66.182 36.458 C 63.575 36.218, 59.472 36.677, 56.925 37.493 M 116.500 57.943 C 80.907 63.811, 54.693 86.613, 44.349 120.703 C 42.027 128.357, 41.671 131.318, 41.610 143.500 C 41.552 155.066, 41.933 158.951, 43.801 165.845 C 57.648 216.935, 110.803 243.880, 160.209 224.855 C 180.834 216.912, 199.461 198.707, 207.899 178.245 C 213.214 165.356, 214.444 158.762, 214.379 143.500 C 214.328 131.299, 213.977 128.370, 211.651 120.703 C 206.766 104.604, 199.079 91.980, 187.650 81.289 C 175.973 70.366, 164.571 64.011, 149.630 60.097 C 140.834 57.793, 124.033 56.701, 116.500 57.943 M 112.500 71.404 C 90.518 76.432, 71.330 91.467, 61.693 111.213 C 55.819 123.250, 54 131.039, 54 144.154 C 54 176.394, 73.164 203.471, 103.681 214.348 C 151.285 231.315, 202 195.434, 202 144.787 C 202 131.820, 199.881 122.620, 194.218 111 C 190.295 102.950, 188.208 100.124, 180.544 92.482 C 165.028 77.011, 151.512 71.047, 130.500 70.400 C 122.636 70.159, 116.432 70.504, 112.500 71.404 M 115.276 86.511 C 96.519 90.587, 79.156 107.174, 72.894 127 C 69.680 137.174, 69.094 156.298, 71.859 160.771 C 72.438 161.709, 78.285 159.862, 95.067 153.440 C 107.405 148.718, 119.862 143.955, 122.750 142.855 L 128 140.856 128 112.928 L 128 85 124.750 85.079 C 122.963 85.123, 118.699 85.768, 115.276 86.511" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 781 B |
|
Before Width: | Height: | Size: 658 B |
|
Before Width: | Height: | Size: 497 B |
|
Before Width: | Height: | Size: 5.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 454 222" version="1.1" fill="white">
|
||||
<path d="M 226.694 25.064 C 220.750 25.490, 212.754 26.398, 208.924 27.083 C 202.587 28.215, 201.845 28.170, 200.681 26.578 C 198.787 23.989, 193.600 24.799, 193.180 27.750 C 192.870 29.935, 191 31.007, 191 29 C 191 28.450, 189.650 28, 188 28 C 186.350 28, 185 28.494, 185 29.098 C 185 29.807, 182.969 30.072, 179.250 29.848 L 173.500 29.500 173.194 35.458 C 172.686 45.348, 173.064 45.952, 179.364 45.302 C 182.823 44.945, 184.973 45.148, 185.422 45.874 C 186.283 47.267, 191 47.374, 191 46 C 191 44.746, 193.685 44.682, 194.449 45.917 C 194.760 46.421, 195.287 48.814, 195.619 51.234 L 196.222 55.633 189.320 55.683 C 181.951 55.736, 178.400 57.035, 173.698 61.399 L 170.897 64 104.192 64 C 66.129 64, 36.096 64.399, 34.249 64.929 C 29.099 66.406, 22.322 72.590, 20.433 77.535 C 18.870 81.628, 18.870 82.694, 20.424 93.708 C 23.076 112.510, 28.061 139.230, 29.526 142.498 C 32.765 149.725, 34.057 150.468, 44.060 150.854 C 49.106 151.049, 56.049 150.907, 59.487 150.538 C 64.885 149.960, 65.896 149.523, 66.892 147.338 C 67.852 145.231, 67.707 144.262, 66.026 141.542 C 63.088 136.789, 64.616 133.537, 73.045 126.603 C 81.354 119.767, 95.765 112.560, 97.780 114.232 C 98.779 115.062, 100.543 114.305, 105.090 111.099 C 112.449 105.909, 115.362 105.882, 115.800 111 C 115.964 112.925, 117.660 123.557, 119.567 134.627 C 122.275 150.339, 124.458 159.175, 129.518 174.903 C 133.083 185.985, 136 195.989, 136 197.133 C 136 198.380, 136.501 199.027, 137.250 198.748 C 137.938 198.492, 145.813 195.867, 154.750 192.915 C 163.688 189.962, 171 187.116, 171 186.589 C 171 186.062, 170.122 183.802, 169.050 181.566 C 167.977 179.330, 164.621 170.750, 161.592 162.500 C 157.240 150.648, 155.341 143.448, 152.542 128.192 C 150.594 117.572, 149.006 108.122, 149.012 107.192 C 149.019 106.261, 150.666 104.437, 152.671 103.137 C 155.759 101.136, 158.671 100.559, 171.695 99.373 L 187.072 97.973 189.505 100.736 C 193.237 104.978, 192.823 109.382, 188.220 114.388 C 181.323 121.889, 175.376 132.794, 173.525 141.331 C 172.592 145.637, 172.128 149.462, 172.495 149.831 C 172.862 150.199, 182.083 150.638, 192.987 150.807 C 210.927 151.086, 213.462 150.912, 219.656 148.984 L 226.500 146.854 238.500 131.827 C 245.100 123.563, 253.331 113.464, 256.792 109.386 L 263.083 101.972 280.542 102.077 C 297.035 102.176, 301.861 102.993, 294.932 104.515 C 291.079 105.361, 290.495 106.857, 292.318 111.219 C 293.621 114.337, 293.528 115.966, 291.356 128.085 C 290.033 135.463, 289.075 143.975, 289.226 147 L 289.500 152.500 295.500 153.085 C 301.254 153.646, 312.624 152.710, 313.752 151.581 C 314.049 151.284, 313.062 149.181, 311.558 146.908 L 308.822 142.775 309.161 122.887 L 309.500 102.999 305.750 102.999 C 301.551 103, 301.431 102.833, 303.394 99.715 C 304.161 98.497, 305.093 94.912, 305.466 91.750 L 306.144 86 312.822 85.822 C 316.495 85.724, 320.398 85.659, 321.495 85.677 C 322.593 85.696, 324.007 85.005, 324.638 84.142 C 325.656 82.750, 332.033 82.569, 381.143 82.537 L 436.500 82.500 436.500 76.500 L 436.500 70.500 424 70.593 C 417.125 70.644, 405.425 70.834, 398 71.015 C 383.426 71.370, 311.877 69.837, 316 69.258 C 319.332 68.790, 324 66.928, 324 66.067 C 324 64.871, 320.145 61.181, 318.275 60.587 C 317.289 60.274, 316.036 59.002, 315.491 57.759 C 314.875 56.355, 313.554 55.449, 312 55.364 C 310.625 55.289, 308.317 54.759, 306.871 54.185 C 304.920 53.411, 303.760 53.476, 302.371 54.439 C 300.954 55.421, 294.249 55.730, 274.750 55.713 C 251.529 55.692, 249 55.528, 249 54.045 C 249 51.724, 246.997 50, 244.300 50 C 242.922 50, 242 49.399, 242 48.500 C 242 46.814, 248.882 46.325, 250.550 47.893 C 251.073 48.384, 252.963 48.558, 254.750 48.279 L 258 47.773 258 37.387 L 258 27 255.250 26.842 C 253.738 26.754, 251.644 26.761, 250.598 26.857 C 249.551 26.952, 247.655 26.349, 246.383 25.515 C 243.909 23.894, 243.233 23.879, 226.694 25.064 M 224 107.500 L 224 113 220 113 C 217.800 113, 216 113.450, 216 114 C 216 114.550, 214.463 115, 212.584 115 C 209.822 115, 208.610 115.718, 206.252 118.750 C 201.858 124.400, 196.980 133.975, 196.073 138.730 C 195.275 142.912, 195.301 142.965, 198.383 143.432 C 208.850 145.019, 214.349 145.043, 218.819 143.521 C 223.262 142.009, 224.099 141.063, 235.264 124.942 L 247.028 107.955 245.488 104.978 L 243.949 102 233.974 102 L 224 102 224 107.500" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 445 119" version="1.1" fill="white">
|
||||
<path d="M 169.709 14.624 C 169.319 15.014, 169 22.683, 169 31.667 L 169 48 159.700 48 C 153.888 48, 149.957 48.443, 149.220 49.180 C 148.314 50.086, 147.490 50.065, 145.665 49.088 C 144.065 48.232, 141.037 47.998, 136.394 48.372 C 132.602 48.678, 128.713 48.905, 127.750 48.877 C 125.365 48.807, 111.417 48.812, 109.250 48.883 C 108.287 48.915, 104.626 48.686, 101.113 48.375 C 96.848 47.997, 93.935 48.232, 92.343 49.084 C 90.512 50.064, 89.686 50.086, 88.780 49.180 C 87.325 47.725, 74.369 47.594, 73.485 49.025 C 72.672 50.340, 63.905 49.327, 58.220 47.261 C 54.790 46.014, 51.153 45.816, 39.895 46.262 C 32.170 46.567, 25.546 47.121, 25.175 47.491 C 24.257 48.407, 24.315 74.841, 25.241 78.140 C 25.649 79.592, 26.549 80.985, 27.241 81.236 C 29.179 81.939, 58.685 80.265, 66 79.037 C 70.775 78.236, 73.063 78.245, 74.621 79.073 C 75.920 79.763, 79.021 79.969, 82.621 79.604 C 89.917 78.865, 91.083 78.865, 98.379 79.604 C 102.335 80.005, 105.053 79.774, 106.691 78.898 C 108.603 77.875, 109.535 77.853, 111.048 78.798 C 113.537 80.352, 123.463 80.352, 125.952 78.798 C 127.464 77.853, 128.396 77.874, 130.301 78.894 C 131.948 79.775, 134.776 80.004, 139.113 79.607 C 146.541 78.928, 146.489 78.928, 159.250 79.613 L 169 80.137 169 90.569 L 169 101 171.961 101 L 174.922 101 175.211 92.250 L 175.500 83.500 272 82.947 L 368.500 82.395 380.744 79.691 C 392.662 77.059, 402.224 73.957, 409.114 70.486 C 413.288 68.384, 427 58.069, 427 57.032 C 427 56.616, 423.531 55.961, 419.290 55.577 C 415.050 55.193, 395.595 52.431, 376.058 49.439 L 340.536 44 267.327 44 C 219.600 44, 193.903 44.348, 193.500 45 C 193.160 45.550, 189.084 46, 184.441 46 L 176 46 175.882 33.250 C 175.738 17.715, 175.176 14.599, 172.452 14.208 C 171.333 14.047, 170.099 14.235, 169.709 14.624 M 354.200 56.200 C 353.540 56.860, 353 58.345, 353 59.500 C 353 62.819, 355.002 64, 360.629 64 C 367.739 64, 370.383 61.453, 367.965 56.934 C 367.125 55.365, 365.841 55, 361.165 55 C 357.994 55, 354.860 55.540, 354.200 56.200" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" version="1.1" fill="white">
|
||||
<path d="M 68 20.469 C 60.759 22.545, 58.164 23.783, 53.341 27.466 C 43.660 34.858, 37.936 46.035, 36.024 61.278 C 34.701 71.835, 34.711 124.817, 36.040 136.500 C 37.471 149.093, 40.626 158.293, 45.353 163.664 C 50.213 169.185, 53.685 171, 59.385 171 C 61.852 171, 65.024 171.439, 66.435 171.975 L 69 172.950 69 203.023 L 69 233.095 71.646 235.548 L 74.292 238 140.557 238 L 206.822 238 209.411 234.923 L 212 231.847 212 185.923 L 212 140 214.566 140 C 215.977 140, 218.002 139.534, 219.066 138.965 C 220.900 137.983, 221 136.619, 221 112.572 C 221 84.776, 221.280 86, 214.918 86 L 212 86 212 67.455 C 212 49.098, 211.975 48.884, 209.545 46.455 L 207.091 44 167.545 44 L 128 44 128 40.559 C 128 38.666, 127.609 36.876, 127.131 36.581 C 126.654 36.286, 125.980 34.275, 125.634 32.113 C 125.081 28.655, 124.448 27.911, 120.376 25.940 C 108.752 20.313, 79.283 17.234, 68 20.469 M 71.800 23.193 C 61.343 24.519, 50.631 31.751, 45.696 40.817 C 39.705 51.825, 38.749 58.465, 38.260 92.500 C 37.402 152.181, 42.607 167.899, 63.250 167.978 L 69 168 69 108.174 L 69 48.349 71.314 46.174 C 73.556 44.068, 74.372 44, 97.314 44 L 121 44 121 40.700 C 121 38.885, 121.475 36.925, 122.055 36.345 C 123.912 34.488, 122.013 30.234, 118.605 28.617 C 109.654 24.369, 85.030 21.516, 71.800 23.193 M 92.440 64.296 C 92.162 65.019, 92.062 71.211, 92.218 78.055 L 92.500 90.500 139.500 90.500 L 186.500 90.500 186.500 77 L 186.500 63.500 139.722 63.240 C 101.799 63.029, 92.849 63.229, 92.440 64.296 M 112 163 L 112 207 149.500 207 L 187 207 187 163 L 187 119 149.500 119 L 112 119 112 163 M 125 132.843 C 125 138.275, 125.760 139, 131.459 139 C 135.684 139, 137.208 137.098, 136.815 132.320 L 136.500 128.500 130.750 128.200 L 125 127.900 125 132.843 M 145.422 129.342 C 145.117 130.138, 145.009 132.524, 145.183 134.645 C 145.493 138.419, 145.591 138.507, 149.824 138.811 C 155.527 139.221, 157.178 137.748, 156.800 132.586 L 156.500 128.500 151.239 128.197 C 147.361 127.974, 145.832 128.275, 145.422 129.342 M 165.254 129.700 C 164.775 130.690, 164.635 133.075, 164.942 135 C 165.470 138.311, 165.734 138.517, 169.824 138.811 C 175.527 139.221, 177.178 137.748, 176.800 132.586 L 176.500 128.500 171.312 128.200 C 167.118 127.957, 165.957 128.245, 165.254 129.700 M 125.196 152.198 L 125.500 157.500 131 157.500 L 136.500 157.500 136.500 152.500 L 136.500 147.500 130.696 147.198 L 124.892 146.897 125.196 152.198 M 145.422 148.342 C 145.117 149.138, 145.009 151.524, 145.183 153.645 C 145.477 157.222, 145.745 157.523, 148.888 157.824 C 150.752 158.002, 153.364 157.875, 154.692 157.541 C 156.878 156.993, 157.078 156.488, 156.803 152.218 L 156.500 147.500 151.239 147.197 C 147.361 146.974, 145.832 147.275, 145.422 148.342 M 165.408 148.150 C 164.467 149.672, 164.403 154.001, 165.287 156.305 C 165.760 157.537, 167.107 157.996, 170.219 157.985 C 176.237 157.963, 177.186 157.088, 176.815 151.901 L 176.500 147.500 171.339 147.201 C 168.007 147.008, 165.906 147.344, 165.408 148.150 M 125.712 166.622 C 125.320 167.013, 125 169.531, 125 172.217 L 125 177.100 130.750 176.800 L 136.500 176.500 136.500 171.500 L 136.500 166.500 131.462 166.205 C 128.690 166.043, 126.103 166.230, 125.712 166.622 M 145.196 171.198 L 145.500 176.500 151 176.500 L 156.500 176.500 156.500 171.500 L 156.500 166.500 150.696 166.198 L 144.892 165.897 145.196 171.198 M 164.928 166.700 C 164.447 172.017, 164.709 175.346, 165.672 176.144 C 166.317 176.679, 169.017 176.977, 171.672 176.808 L 176.500 176.500 176.500 171.500 L 176.500 166.500 170.750 166.200 C 167.588 166.035, 164.967 166.260, 164.928 166.700 M 126.250 185.662 C 125.485 185.971, 125 188.096, 125 191.133 L 125 196.100 130.750 195.800 L 136.500 195.500 136.815 191.099 C 137.018 188.255, 136.665 186.403, 135.815 185.864 C 134.399 184.967, 128.294 184.837, 126.250 185.662 M 146.185 185.864 C 145.335 186.403, 144.982 188.255, 145.185 191.099 L 145.500 195.500 151 195.500 L 156.500 195.500 156.815 191.680 C 156.988 189.579, 156.595 187.217, 155.942 186.430 C 154.656 184.881, 148.316 184.513, 146.185 185.864 M 166.123 185.903 C 164.940 186.652, 164.520 189.712, 164.902 194.800 C 164.973 195.742, 166.581 196.017, 170.750 195.800 L 176.500 195.500 176.815 191.680 C 176.988 189.579, 176.595 187.217, 175.942 186.430 C 174.639 184.860, 168.306 184.520, 166.123 185.903" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 196 171" version="1.1" fill="white">
|
||||
<path d="M 45 33.793 C 45 34.229, 43.538 35.017, 41.750 35.543 C 39.431 36.226, 37.964 37.597, 36.631 40.327 C 34.781 44.114, 34.749 44.130, 33.606 41.827 C 32.058 38.710, 28.387 38.206, 27.503 40.990 C 26.779 43.271, 28.440 46, 30.551 46 C 31.269 46, 32.561 46.704, 33.421 47.564 C 34.803 48.945, 34.816 49.454, 33.540 51.923 C 32.745 53.460, 30.723 55.286, 29.047 55.980 C 25.576 57.418, 25.111 59.454, 27.911 60.952 C 30.535 62.357, 34 68.204, 34 71.228 C 34 72.599, 32.947 75.273, 31.659 77.170 C 28.433 81.924, 19.335 103.515, 17.319 111.198 C 15.387 118.564, 16.026 123, 19.019 123 C 20.355 123, 21 123.673, 21 125.069 C 21 127.087, 21.389 127.130, 36.799 126.819 C 50.625 126.540, 52.966 126.250, 55.549 124.500 L 58.500 122.500 55.750 122.184 C 53.232 121.894, 53 121.509, 53 117.627 C 53 113.353, 58.469 97.881, 63.352 88.341 C 66.734 81.734, 68.742 80.645, 74.072 82.525 C 79.803 84.547, 85.243 84.303, 93.500 81.652 L 100.500 79.405 100.515 72.238 C 100.533 63.630, 102.282 60.737, 103.906 66.630 C 106.572 76.305, 123.287 136.650, 123.645 137.893 C 124.472 140.761, 144.504 137.455, 145.735 134.248 C 146.079 133.352, 145.826 132.442, 145.174 132.225 C 144.521 132.007, 144.225 131.445, 144.515 130.975 C 144.805 130.506, 142.821 122.557, 140.104 113.311 C 130.621 81.030, 126 65.045, 126 64.524 C 126 64.236, 128.475 64, 131.500 64 C 134.525 64, 137 63.566, 137 63.035 C 137 61.828, 133.442 59.880, 129.500 58.929 C 127.642 58.480, 130.742 58.166, 137.643 58.102 C 149.400 57.994, 150 57.744, 150 52.937 C 150 50.363, 151.997 50.028, 169 49.743 L 183.500 49.500 183.500 45 L 183.500 40.500 168.250 40.224 C 159.211 40.060, 153 39.551, 153 38.974 C 153 38.438, 152.133 38, 151.073 38 C 150.014 38, 149.001 37.284, 148.823 36.408 C 148.532 34.975, 143.479 34.830, 98.335 34.950 C 64.488 35.040, 47.960 34.745, 47.526 34.042 C 46.770 32.819, 45 32.645, 45 33.793 M 29.192 42.075 C 29.389 42.666, 29.977 43.150, 30.500 43.150 C 31.023 43.150, 31.611 42.666, 31.808 42.075 C 32.005 41.484, 31.417 41, 30.500 41 C 29.583 41, 28.995 41.484, 29.192 42.075 M 88.387 62.750 C 88.085 63.712, 87.435 65.510, 86.943 66.745 C 85.620 70.061, 86.919 74.791, 89.766 77.031 C 92.176 78.926, 92.190 79, 90.135 79 C 87.369 79, 84.202 75.795, 83.489 72.275 C 81.754 63.716, 80.202 62.480, 75.663 66.050 C 72.058 68.886, 69.695 73.648, 70.433 76.590 C 72.256 83.852, 92.982 83.508, 96.919 76.151 C 98.917 72.419, 98.238 66.147, 95.545 63.455 C 92.682 60.591, 89.174 60.246, 88.387 62.750" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 262 165" version="1.1" fill="white">
|
||||
<path d="M 223.865 27.767 C 222.564 28.657, 221.268 29.716, 220.984 30.122 C 219.870 31.716, 206.430 32.924, 183.500 33.491 C 170.300 33.818, 159.050 34.104, 158.500 34.128 C 154.442 34.304, 115.453 32.786, 115.106 32.439 C 114.864 32.198, 110.804 32.023, 106.083 32.051 C 98.466 32.097, 93.064 32.629, 79.751 34.643 C 76.553 35.127, 75.485 34.755, 72.467 32.105 C 67.740 27.955, 66 28.062, 66 32.500 C 66 34.841, 65.534 36, 64.593 36 C 63.038 36, 55 45.124, 55 46.889 C 55 48.530, 53.893 48.248, 51.497 45.997 L 49.364 43.993 44.255 50.369 C 38.490 57.564, 38.702 59, 45.533 59 C 47.807 59, 49.951 59.284, 50.298 59.631 C 51.921 61.254, 48.447 63.927, 42.039 65.988 C 38.167 67.232, 35 68.532, 34.999 68.875 C 34.999 69.219, 38.984 69.345, 43.855 69.156 C 51.270 68.868, 53.368 69.147, 56.750 70.872 C 61.085 73.084, 65 79.398, 65 84.178 C 65 87.766, 60.349 109.694, 58.569 114.500 C 57.723 116.784, 57.069 122.039, 57.044 126.750 C 57.001 134.820, 57.053 135, 59.417 135 C 60.746 135, 61.983 135.441, 62.167 135.979 C 62.530 137.047, 98.567 135.767, 99.687 134.646 C 100.036 134.297, 99.727 131.529, 98.999 128.496 C 97.827 123.609, 97.923 121.301, 99.842 108.240 C 102.724 88.624, 101.644 89.534, 122.482 89.167 C 131.222 89.014, 138.708 88.681, 139.118 88.427 C 139.528 88.174, 139.222 86.736, 138.438 85.233 C 136.936 82.353, 136.584 76.332, 137.616 71.169 C 138.378 67.362, 139.923 67.079, 162.220 66.678 C 170.865 66.522, 178.144 66.190, 178.394 65.940 C 178.644 65.689, 185.918 65.533, 194.557 65.592 C 209.048 65.690, 210.304 65.555, 210.750 63.849 C 211.111 62.466, 212.176 62, 214.977 62 C 217.036 62, 220.760 61.721, 223.251 61.379 L 227.782 60.758 230.891 52.815 C 233.307 46.641, 234 43.327, 234 37.936 C 234 31.204, 233.926 31, 231.500 31 C 229.714 31, 229 30.460, 229 29.107 C 229 26.462, 226.666 25.853, 223.865 27.767 M 120.704 67.737 C 116.796 68.044, 115.745 68.541, 115.029 70.424 C 113.986 73.166, 115.152 79.057, 117.423 82.523 C 118.785 84.602, 118.814 85, 117.600 85 C 113.828 85, 107.670 74.961, 109.563 71.897 C 109.868 71.404, 109.714 71, 109.220 71 C 107.885 71, 106 75.679, 106 78.991 C 106 80.588, 107.052 83.111, 108.344 84.613 C 110.654 87.299, 110.840 87.334, 121.561 87.111 C 127.542 86.986, 133.012 86.405, 133.718 85.819 C 134.461 85.202, 135 82.561, 135 79.533 C 135 75.580, 134.514 73.870, 133 72.500 C 131.900 71.505, 131 69.860, 131 68.845 C 131 66.903, 131.137 66.918, 120.704 67.737" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 108 143" version="1.1" fill="white">
|
||||
<path d="M 22 24.520 L 22 29.041 18.052 27.027 L 14.105 25.013 12.552 27.229 C 10.387 30.320, 10.500 30.591, 14.989 33.114 L 18.978 35.356 14.989 37.735 C 12.795 39.043, 11 40.329, 11 40.592 C 11 40.855, 11.729 42.183, 12.620 43.543 L 14.240 46.015 17.488 44.007 C 19.274 42.903, 21.020 42, 21.368 42 C 21.716 42, 22 44.025, 22 46.500 C 22 50.976, 22.019 51, 25.500 51 L 29 51 29 46.070 L 29 41.141 33.300 43.544 L 37.600 45.947 39.334 43.011 L 41.068 40.076 37.034 38.017 C 34.815 36.885, 33 35.772, 33 35.544 C 33 35.315, 34.776 34.130, 36.946 32.910 C 40.839 30.722, 40.873 30.654, 39.420 27.846 C 37.674 24.468, 37.385 24.427, 33.500 27 C 31.850 28.093, 30.163 28.990, 29.750 28.993 C 29.337 28.997, 29 26.975, 29 24.500 C 29 20.024, 28.981 20, 25.500 20 C 22.016 20, 22 20.021, 22 24.520 M 60 32 C 60 34.951, 59.914 35, 54.750 35.014 C 51.862 35.021, 48.519 35.291, 47.319 35.612 C 44.482 36.373, 43.446 39.122, 45.446 40.584 C 48.267 42.647, 47.200 51, 44.116 51 C 38.721 51, 36.045 57.986, 39.868 62.088 C 42.316 64.716, 42.784 70.236, 42.541 93.605 C 42.355 111.437, 42.197 112.914, 40.171 115.760 C 37.269 119.836, 37.376 123.361, 40.465 125.385 C 43.926 127.653, 62.561 127.696, 65.777 125.443 C 68.504 123.533, 68.720 119.028, 66.263 115.279 C 64.740 112.954, 64.525 109.737, 64.513 89.020 C 64.502 68.206, 64.707 65.096, 66.250 62.741 C 68.663 59.059, 68.538 53.817, 66 52.232 C 64.900 51.545, 64 50.213, 64 49.273 C 64 48.129, 65.987 49.529, 70 53.500 L 76 59.437 76 79.744 L 76 100.050 72.979 100.654 C 71.318 100.986, 69.686 101.698, 69.354 102.236 C 68.984 102.836, 69.669 102.948, 71.125 102.528 C 72.431 102.150, 74.287 101.622, 75.250 101.353 C 76.846 100.908, 77 99.009, 77 79.789 L 77 58.713 70 46.568 C 66.039 39.697, 63 33.247, 63 31.712 C 63 29.968, 62.465 29, 61.500 29 C 60.500 29, 60 30, 60 32 M 85 35 C 85 37.968, 82.855 39.193, 81.500 37 C 80.486 35.359, 78.144 35.863, 77.018 37.966 C 76.119 39.645, 76.432 40.172, 79.172 41.589 L 82.377 43.246 79.689 44.655 C 76.895 46.119, 76.415 47.528, 77.906 49.883 C 78.641 51.042, 79.160 51.002, 81.114 49.633 C 84.448 47.298, 85 47.563, 85 51.500 C 85 54.567, 85.310 55, 87.500 55 C 89.694 55, 90 54.568, 90 51.474 L 90 47.949 92.962 49.480 C 95.752 50.923, 95.988 50.891, 97.043 48.920 C 98.300 46.572, 98.380 46.730, 95.056 44.996 L 92.611 43.722 95.543 41.384 C 98.246 39.229, 98.348 38.920, 96.854 37.426 C 95.581 36.153, 94.793 36.040, 93.182 36.902 C 90.239 38.478, 90 38.335, 90 35 C 90 32.467, 89.611 32, 87.500 32 C 85.389 32, 85 32.467, 85 35 M 16 69 C 16 71.968, 13.855 73.193, 12.500 71 C 11.486 69.359, 9.144 69.863, 8.018 71.966 C 7.119 73.645, 7.432 74.172, 10.172 75.589 L 13.377 77.246 10.689 78.655 C 7.895 80.119, 7.415 81.528, 8.906 83.883 C 9.641 85.042, 10.160 85.002, 12.114 83.633 C 15.448 81.298, 16 81.563, 16 85.500 C 16 88.567, 16.310 89, 18.500 89 C 20.694 89, 21 88.568, 21 85.474 L 21 81.949 23.962 83.480 C 26.752 84.923, 26.988 84.891, 28.043 82.920 C 29.300 80.572, 29.380 80.730, 26.056 78.996 L 23.611 77.722 26.543 75.384 C 29.246 73.229, 29.348 72.920, 27.854 71.426 C 26.581 70.153, 25.793 70.040, 24.182 70.902 C 21.239 72.478, 21 72.335, 21 69 C 21 66.467, 20.611 66, 18.500 66 C 16.389 66, 16 66.467, 16 69" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 156" version="1.1" fill="white">
|
||||
<path d="M 66.500 26 C 66.064 27.375, 64.987 28, 63.055 28 C 61.509 28, 59.663 28.702, 58.951 29.559 C 58.008 30.696, 56.667 30.951, 54 30.500 C 48.828 29.626, 47.532 31.421, 49.437 36.821 C 50.707 40.421, 50.702 41.327, 49.397 44.212 C 45.932 51.870, 45.455 52.436, 41.730 53.317 C 36.689 54.509, 36.956 56.656, 42.250 57.508 C 47.898 58.417, 50.868 60.440, 52.584 64.546 C 54.681 69.565, 54.331 73.015, 51.060 79.590 C 43.232 95.323, 37 112.691, 37 118.774 C 37 122.901, 37.432 123.833, 40.682 126.725 C 44.500 130.122, 46.421 130.746, 47.530 128.951 C 47.941 128.287, 48.603 128.247, 49.339 128.844 C 49.978 129.361, 56.556 130.286, 63.959 130.898 C 80.647 132.278, 80.306 132.496, 80.604 120.269 C 80.783 112.939, 81.531 109.367, 85.159 98.500 C 88.940 87.176, 89.866 85.326, 92.338 84.153 C 94.553 83.102, 96.131 83.047, 99.531 83.903 C 107.001 85.785, 117.123 85.244, 125.807 82.501 L 133.718 80.002 134.238 71.661 C 135.058 58.522, 134.394 59, 151.835 59 C 161.986 59, 166.975 58.625, 167.800 57.800 C 168.733 56.867, 169.267 56.867, 170.200 57.800 C 170.883 58.483, 174.154 59, 177.794 59 C 183.346 59, 184.256 58.737, 184.710 57 C 185.159 55.286, 186.074 55, 191.117 55 C 195.115 55, 197.025 54.599, 197.079 53.750 C 197.122 53.063, 197.092 49.718, 197.012 46.318 L 196.867 40.137 200.184 39.818 C 203.432 39.506, 203.506 39.393, 203.802 34.250 L 204.105 29 200.587 29 C 198.101 29, 196.759 28.418, 196.006 27.012 C 195.421 25.918, 193.768 24.729, 192.333 24.369 C 190.296 23.858, 189.327 24.239, 187.914 26.107 L 186.104 28.500 128.802 28.298 C 72.281 28.098, 71.481 28.067, 70.128 26.048 C 68.398 23.466, 67.309 23.451, 66.500 26 M 50.639 31.694 C 49.513 32.820, 49.954 34, 51.500 34 C 52.325 34, 53 33.577, 53 33.059 C 53 31.798, 51.438 30.895, 50.639 31.694 M 110.129 64.500 C 109.920 70.904, 111.822 75.319, 115.655 77.327 C 119.369 79.273, 117.102 80.190, 113.222 78.311 C 109.927 76.715, 103.498 67.621, 104.509 65.985 C 105.257 64.775, 102.833 61, 101.307 61 C 96.835 61, 92 66.952, 92 72.457 C 92 75.921, 96.273 80.466, 100.807 81.824 C 105.718 83.295, 115.263 83.332, 120.421 81.900 C 126.043 80.339, 130 76.054, 130 71.527 C 130 63.439, 124.751 59, 115.186 59 L 110.309 59 110.129 64.500 M 44 127 C 44 127.550, 44.423 128, 44.941 128 C 45.459 128, 46.160 127.550, 46.500 127 C 46.840 126.450, 46.416 126, 45.559 126 C 44.702 126, 44 126.450, 44 127" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 204 160" version="1.1" fill="white">
|
||||
<path d="M 34 27.658 C 34 29.412, 32.955 31.253, 31.008 32.927 C 28.613 34.986, 27.516 37.397, 25.511 45 C 21.558 59.987, 21.882 61.053, 31.728 65.464 C 40.395 69.346, 40.525 70.616, 34.093 88.500 C 27.881 105.771, 23.229 127.213, 24.829 131.200 C 26.627 135.682, 31.208 136.274, 51.506 134.652 C 61.175 133.879, 69.328 133.005, 69.623 132.710 C 69.918 132.415, 69.408 131.026, 68.489 129.623 C 66.913 127.218, 66.945 126.455, 69.056 116.286 C 70.287 110.354, 71.903 104.285, 72.647 102.800 C 73.391 101.314, 74 98.705, 74 97 C 74 95.295, 74.644 92.655, 75.431 91.133 L 76.863 88.365 95.181 87.101 C 112.928 85.877, 113.586 85.753, 116.250 83.150 C 118.095 81.346, 119.673 78.001, 121.048 72.981 C 123.174 65.214, 124.846 63, 128.584 63 C 129.795 63, 131.045 62.325, 131.362 61.500 C 132.110 59.551, 135 59.551, 135 61.500 C 135 63.553, 137.975 63.392, 139.640 61.250 C 140.935 59.583, 141.065 59.583, 142.360 61.250 C 144.025 63.392, 147 63.553, 147 61.500 C 147 59.552, 149.614 59.552, 150.362 61.500 C 151.106 63.439, 153.894 63.439, 154.638 61.500 C 154.955 60.675, 155.841 60, 156.607 60 C 157.373 60, 158 60.675, 158 61.500 C 158 63.553, 160.975 63.392, 162.640 61.250 C 163.931 59.589, 164.073 59.594, 165.433 61.350 C 167.304 63.764, 168.619 62.845, 169.422 58.564 C 170.042 55.260, 170.280 55.093, 174.785 54.803 C 177.617 54.621, 179.500 54.021, 179.500 53.300 C 179.500 52.640, 180.063 51.537, 180.750 50.850 C 182.047 49.553, 182.531 36.547, 181.393 33.582 C 181.059 32.712, 179.698 32, 178.368 32 C 176.747 32, 175.655 31.222, 175.052 29.636 C 174.240 27.502, 172.170 26, 170.040 26 C 169.601 26, 168.654 27.421, 167.935 29.157 L 166.628 32.313 138.151 31.657 C 122.489 31.296, 97.373 31, 82.337 31 C 58.704 31, 55 30.797, 55 29.500 C 55 28.314, 53.578 28, 48.200 28 C 44.460 28, 40.973 27.608, 40.450 27.129 C 39.928 26.650, 38.263 25.967, 36.750 25.610 C 34.270 25.025, 34 25.226, 34 27.658 M 93.769 70.250 C 94.027 74.318, 94.845 77.460, 96.112 79.250 C 98.367 82.434, 97.272 82.846, 93.861 80.098 C 92.193 78.754, 91.198 76.481, 90.471 72.348 C 89.449 66.538, 89.420 66.500, 85.971 66.500 C 82.653 66.500, 82.424 66.737, 80.776 71.882 C 79.087 77.154, 79.095 77.325, 81.158 80.221 L 83.263 83.178 98.105 82.839 C 115.218 82.448, 116.355 81.920, 117.530 73.809 C 118.135 69.632, 117.929 68.838, 115.650 66.559 C 113.251 64.160, 112.476 64, 103.232 64 L 93.372 64 93.769 70.250" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +0,0 @@
|
||||
<svg viewBox="0 0 28.464 33.622">
|
||||
<g transform="translate(-96.017 -134.24)">
|
||||
<path fill-opacity="0.4" d="m107.24 154.21-10.424 5.6127 7.3499-9.889-8.1517-2.5391 8.419-1.4032-5.6795-11.092 10.023 7.4836 2.5391-8.1517 1.4032 8.3522 10.891-5.479-7.2163 9.889 8.0849 2.7395-8.6194 1.2695 5.6795 10.958-11.626-8.8199z"/>
|
||||
<path d="m107.66 167.76c-1.8201-0.45322-2.1832-1.3512-1.125-2.7825 0.57804-0.78184 0.59462-0.98237 0.58861-7.1188-6e-3 -6.1586-0.0207-6.3298-0.5948-6.9409-1.1152-1.1871-0.47918-3.106 1.0295-3.106 0.52844 0 0.76318-0.52693 0.76318-1.7131 0-0.53468-0.15466-0.93545-0.39687-1.0284-0.62569-0.2401-0.46344-0.95045 0.28181-1.2338 0.37327-0.14192 1.3258-0.25803 2.1167-0.25803 1.4214 0 1.438-9e-3 1.438-0.79375 0-0.52917 0.13229-0.79375 0.39687-0.79375 0.21828 0 0.39697 0.20836 0.39709 0.46302 2.9e-4 0.61663 1.2474 3.215 2.6054 5.4286l1.0986 1.7906v5.5423c0 5.2087-0.0308 5.5588-0.51177 5.8162-0.28147 0.15064-0.66843 0.26449-0.8599 0.253-0.19146-0.0115-0.0207-0.14047 0.37949-0.28663l0.7276-0.26575v-10.688l-1.5875-1.5709c-1.0423-1.0314-1.5875-1.418-1.5875-1.1255 0 0.24499 0.23812 0.57287 0.52917 0.72863 0.65368 0.34984 0.71924 1.8452 0.12094 2.7583-0.47385 0.72318-0.7126 3.9855-0.69682 9.5215 9e-3 3.2969 0.0676 3.758 0.55777 4.4211 0.64383 0.87083 0.71426 2.1458 0.14465 2.6185-0.41063 0.34079-4.8041 0.61603-5.8151 0.3643z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 6.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 237 164" version="1.1" fill="white">
|
||||
<path d="M 43.300 32.389 C 42.860 33.152, 41.600 33.944, 40.500 34.149 C 38.699 34.484, 38.440 35.563, 37.893 45.010 C 37.525 51.367, 37.675 55.996, 38.273 56.759 C 38.816 57.451, 41.114 58.311, 43.380 58.670 C 50.800 59.845, 56.902 68.955, 55.624 76.950 C 54.760 82.355, 50.798 90.802, 46.462 96.481 C 41.548 102.919, 37.655 111.489, 38.363 114.310 C 39.046 117.033, 44.454 120.376, 47.071 119.692 C 48.284 119.374, 49 119.696, 49 120.559 C 49 121.856, 53.501 123.436, 79.742 131.348 C 85.796 133.173, 88.183 133.523, 88.732 132.667 C 89.144 132.025, 89.535 127.214, 89.601 121.975 C 89.735 111.466, 90.350 108.464, 92.538 107.624 C 93.629 107.205, 94 105.276, 94 100.022 C 94 89.223, 93.408 89.455, 119.857 89.861 L 141.681 90.196 141.216 79.753 C 140.781 69.977, 140.892 69.179, 142.945 67.266 C 146.155 64.275, 148.854 64, 175.003 64 C 192.791 64, 199.013 63.686, 199.780 62.750 C 200.383 62.016, 200.743 56.148, 200.653 48.529 C 200.509 36.346, 200.370 35.494, 198.357 34.490 C 197.178 33.903, 195.447 32.786, 194.510 32.008 C 193.026 30.777, 192.684 30.814, 191.854 32.297 C 190.970 33.876, 185.731 34, 119.919 34 C 57.747 34, 48.866 33.814, 48.362 32.500 C 47.638 30.614, 44.363 30.542, 43.300 32.389 M 110.977 67.750 C 107.831 71.741, 108.758 77.572, 113.120 81.229 C 117.015 84.495, 116.425 85.625, 111.649 84.049 C 108.155 82.896, 106.086 80.523, 102.887 74 L 101.170 70.500 100.475 73.257 C 100.093 74.773, 100.081 77.619, 100.449 79.582 C 101.451 84.919, 105.472 86.256, 119.253 85.834 C 130.148 85.501, 130.174 85.494, 133.084 82.234 C 136.955 77.899, 137.249 70.522, 133.686 67.174 C 131.659 65.270, 130.238 65, 122.258 65 C 113.509 65, 113.059 65.110, 110.977 67.750" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,7 +0,0 @@
|
||||
<svg viewBox="0 0 14.98 19.683" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(-97.587 -164.03)">
|
||||
<g transform="matrix(.2221 0 0 .2221 93.682 157.43)">
|
||||
<path d="m58 37.881c0 0.484-4.328 1.07-9.618 1.301-8.009 0.35-9.852 0.74-11.014 2.329-1.806 2.471-1.304 3.796 1.706 4.504 2.273 0.534 2.471 1.134 3.146 9.528 0.397 4.926 0.545 9.463 0.33 10.082-0.215 0.618-2.419 1.428-4.897 1.8-9.454 1.417-14.653 7.828-14.653 18.066 0 11.72 3.942 18.866 12.798 23.198 4.647 2.274 6.856 2.711 13.702 2.711 13.721 0 21.708-5.199 25.586-16.654l1.623-4.795 0.689 9.12c0.482 6.392 0.34 9.54-0.477 10.525-0.686 0.825-0.754 1.404-0.166 1.404 2.944 0 3.325-2.896 2.451-18.654l-0.879-15.846-7.62-17c-10.321-23.026-10.045-22.483-11.457-22.492-0.687-4e-3 -1.25 0.388-1.25 0.873m-1.817 25.241c0.301 3.067 0.621 3.3 6.279 4.58 6.431 1.454 10.019 4.057 12.126 8.798 0.734 1.65 1.35 2.325 1.369 1.5s-2.101-5.1-4.711-9.5l-4.746-8-5.317-0.305-5.318-0.304 0.318 3.231" fill-rule="evenodd"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 998 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 198 145" version="1.1" fill="white">
|
||||
<path d="M 48.318 20.893 C 48.035 21.975, 46.619 23.026, 45.012 23.348 C 43.465 23.657, 41.337 25.168, 40.282 26.705 C 36.983 31.513, 33 41.970, 33.002 45.816 C 33.005 49.268, 33.353 49.682, 38.533 52.389 C 45.578 56.070, 48.440 59.900, 47.674 64.622 C 47.363 66.535, 44.893 72.915, 42.185 78.800 C 36.197 91.812, 33.231 101.528, 32.814 109.500 L 32.500 115.500 35.821 115.557 C 37.648 115.588, 39.497 116.187, 39.930 116.887 C 40.614 117.993, 72.459 124.891, 77.250 124.971 C 78.213 124.987, 79 124.325, 79 123.500 C 79 122.675, 78.582 122, 78.071 122 C 73.278 122, 72.451 109.231, 76.614 99.500 C 78.026 96.200, 79.519 91.925, 79.931 90 C 80.343 88.075, 81.519 84.013, 82.542 80.974 L 84.404 75.448 100.452 75.778 C 109.278 75.959, 119.200 75.743, 122.500 75.297 L 128.500 74.486 128.146 66.726 C 127.875 60.791, 128.174 58.383, 129.419 56.483 L 131.046 54 150.420 54 L 169.794 54 170.177 41.250 C 170.629 26.206, 170.332 23.900, 167.858 23.253 C 166.836 22.985, 166 22.144, 166 21.383 C 166 19.571, 161.152 19.568, 159.079 21.379 C 157.341 22.898, 121.607 23.713, 77.367 23.245 C 55.180 23.010, 54.212 22.918, 53.710 21 C 53.027 18.389, 48.994 18.309, 48.318 20.893 M 94.370 56.791 C 88.440 61.924, 89.035 71.370, 95.361 72.523 C 97.088 72.838, 104.350 72.962, 111.500 72.798 L 124.500 72.500 124.795 65.783 C 125.014 60.787, 124.658 58.408, 123.405 56.495 C 121.794 54.037, 121.363 53.936, 113.610 54.212 L 105.500 54.500 105.202 58.554 C 104.864 63.161, 107.841 68, 111.014 68 C 112.041 68, 113.160 68.450, 113.500 69 C 114.802 71.106, 109.017 69.885, 106.111 67.440 C 103.164 64.960, 101.274 59.755, 101.867 55.750 C 102.268 53.041, 98.020 53.631, 94.370 56.791" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 130" version="1.1" fill="white">
|
||||
<path d="M 40.382 24.191 C 40.057 24.717, 40.738 26.156, 41.895 27.388 C 43.551 29.151, 44 30.906, 44 35.614 C 44 38.937, 43.466 42.134, 42.800 42.800 C 42.140 43.460, 39.665 44, 37.300 44 L 33 44 33 69.031 C 33 91.946, 33.148 94.120, 34.750 94.740 C 37.209 95.691, 59.724 95.665, 64.250 94.705 L 68 93.909 68.154 70.205 L 68.309 46.500 69.174 68.500 C 69.650 80.600, 69.896 91.962, 69.720 93.750 C 69.407 96.947, 70.593 98.224, 71.553 95.722 C 71.823 95.020, 71.656 82.757, 71.183 68.472 C 70.691 53.627, 70.698 42.008, 71.199 41.352 C 74.051 37.617, 72.248 30.720, 67.919 28.804 C 66.313 28.093, 65 27.172, 65 26.756 C 65 26.340, 64.373 26, 63.607 26 C 62.841 26, 61.948 25.307, 61.623 24.460 C 61.139 23.199, 59.211 22.948, 51.002 23.077 C 45.486 23.163, 40.707 23.665, 40.382 24.191 M 65 31.378 C 65 32.136, 65.722 34.484, 66.604 36.595 C 68.117 40.216, 68.288 40.326, 69.604 38.526 C 71.390 36.085, 71.361 34.960, 69.443 32.223 C 67.714 29.754, 65 29.238, 65 31.378 M 57.180 40.250 C 57.518 42.623, 61.482 43.796, 64.828 42.513 C 66.254 41.965, 66.137 41.607, 63.993 39.960 C 62.622 38.907, 60.456 38.034, 59.180 38.022 C 57.342 38.005, 56.927 38.467, 57.180 40.250 M 46.802 54.415 C 37.360 63.065, 35.147 80.238, 42.524 87.615 C 45.824 90.915, 47.145 90.598, 45.322 86.945 C 43.628 83.549, 44.141 78.719, 46.532 75.559 C 47.974 73.653, 48 73.655, 48 75.708 C 48 76.858, 49.781 80.169, 51.957 83.065 C 54.133 85.961, 55.681 88.707, 55.398 89.166 C 55.114 89.624, 55.590 90, 56.456 90 C 57.321 90, 58.948 88.537, 60.070 86.750 C 63.361 81.509, 62.350 74.845, 56.981 66.392 C 54.573 62.602, 52.113 57.608, 51.516 55.296 L 50.429 51.092 46.802 54.415 M 33.210 106.426 L 33.500 113.500 50.500 113.500 L 67.500 113.500 67.795 106.196 L 68.090 98.893 64.295 99.511 C 62.208 99.852, 58.441 100.529, 55.925 101.017 C 53.408 101.505, 50.483 101.700, 49.425 101.451 C 48.366 101.202, 44.219 100.628, 40.210 100.175 L 32.919 99.352 33.210 106.426" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 130" version="1.1" fill="white">
|
||||
<path d="M 70.289 25.840 C 69.305 26.852, 67.713 27.963, 66.750 28.309 C 65.787 28.654, 65 29.618, 65 30.449 C 65 31.281, 62.422 35.998, 59.270 40.932 C 54.295 48.722, 52.962 50.125, 49.152 51.580 L 44.764 53.255 32.845 77.818 C 26.290 91.328, 21.060 103.074, 21.223 103.921 C 21.497 105.342, 39.114 114.897, 41.592 114.968 C 42.193 114.986, 48.211 103.637, 54.965 89.750 L 67.246 64.500 66.079 59.938 C 65.010 55.760, 65.168 54.665, 67.961 46.938 C 69.638 42.297, 71.683 37.306, 72.505 35.846 C 73.327 34.386, 74 32.222, 74 31.037 C 74 29.852, 74.450 29.160, 75 29.500 C 77.338 30.945, 75.990 38.983, 72 47.381 C 67.927 55.953, 67.235 59.857, 68.975 64.435 C 70.238 67.755, 74.355 67.930, 76.402 64.750 C 79.702 59.624, 82 50.111, 82 41.579 C 82 33.214, 81.020 29.185, 78.152 25.750 C 76.251 23.474, 72.548 23.516, 70.289 25.840" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 437 131" version="1.1" fill="white">
|
||||
<path d="M 188.539 22.644 C 186.881 31.482, 180.580 39.644, 172.846 42.971 C 167.026 45.475, 161.805 45.679, 138.500 44.318 C 130.800 43.868, 118.425 43.500, 111 43.500 C 97.502 43.500, 69.040 44.857, 67.911 45.555 C 67.582 45.758, 63.194 46.163, 58.159 46.453 C 50.194 46.913, 48.003 46.654, 41.281 44.460 C 29.158 40.503, 26.621 41.875, 20.578 55.662 C 16.495 64.976, 16.499 64.949, 18.416 71 C 19.200 73.475, 20.606 78.187, 21.541 81.471 C 23.808 89.432, 28.657 94.519, 33.128 93.624 C 34.825 93.285, 38.434 91.148, 41.148 88.876 C 47.476 83.578, 49.376 83.384, 74.479 85.478 C 97.660 87.412, 120.864 87.600, 140 86.008 C 160.883 84.271, 167.363 84.442, 171.224 86.833 C 177.486 90.711, 179.805 98.609, 176.537 104.928 L 175.074 107.757 179.650 109.504 C 183.480 110.967, 184.367 111.028, 185.089 109.876 C 186.124 108.226, 193 86.662, 193 85.068 C 193 82.884, 198.056 82.087, 208.055 82.696 C 216.176 83.191, 218.365 83.034, 219.079 81.907 C 219.569 81.133, 219.977 80.950, 219.985 81.500 C 219.994 82.050, 222.251 82.509, 225.001 82.520 C 227.750 82.531, 230 82.166, 230 81.711 C 230 81.255, 230.510 81.197, 231.132 81.582 C 232.718 82.562, 250.021 82.752, 252.750 81.819 C 253.988 81.396, 255 81.436, 255 81.909 C 255 82.860, 263.318 82.539, 264.961 81.524 C 265.533 81.171, 266 81.269, 266 81.741 C 266 82.213, 267.575 82.600, 269.500 82.600 C 271.425 82.600, 273 82.251, 273 81.825 C 273 81.398, 274.154 81.488, 275.565 82.025 C 278.970 83.319, 339.070 83.271, 354.500 81.961 C 370.447 80.607, 387.291 77.574, 395.678 74.546 C 403.129 71.856, 414 66.273, 414 65.136 C 414 64.081, 400.417 57.479, 393.500 55.173 C 384.494 52.170, 364.513 49.163, 346 48.024 C 326.522 46.826, 277 46.655, 277 47.786 C 277 48.218, 276.100 48.571, 275 48.571 C 273.900 48.571, 273 48.330, 273 48.036 C 273 47.741, 271.425 47.500, 269.500 47.500 C 267.575 47.500, 266 47.741, 266 48.036 C 266 48.330, 265.100 48.571, 264 48.571 C 262.900 48.571, 262 48.232, 262 47.817 C 262 47.402, 261.438 47.246, 260.750 47.471 C 257.409 48.562, 251 48.852, 251 47.912 C 251 47.345, 250.505 47.188, 249.899 47.562 C 248.465 48.449, 225.535 48.449, 224.101 47.562 C 223.495 47.188, 223 47.356, 223 47.935 C 223 49.048, 219.534 48.867, 218.359 47.692 C 217.227 46.561, 206.301 46.906, 203.548 48.160 C 201.575 49.059, 200.100 49.023, 197.001 48 C 193.321 46.786, 193 46.392, 193 43.090 C 193 41.115, 194.118 35.900, 195.485 31.500 C 198.590 21.503, 198.587 21.369, 195.250 20.695 C 193.738 20.390, 191.768 19.857, 190.873 19.510 C 189.605 19.020, 189.089 19.713, 188.539 22.644" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 445 119" version="1.1" fill="white">
|
||||
<path d="M 169.709 14.624 C 169.319 15.014, 169 22.683, 169 31.667 L 169 48 159.700 48 C 153.888 48, 149.957 48.443, 149.220 49.180 C 148.314 50.086, 147.490 50.065, 145.665 49.088 C 144.065 48.232, 141.037 47.998, 136.394 48.372 C 132.602 48.678, 128.713 48.905, 127.750 48.877 C 125.365 48.807, 111.417 48.812, 109.250 48.883 C 108.287 48.915, 104.626 48.686, 101.113 48.375 C 96.848 47.997, 93.935 48.232, 92.343 49.084 C 90.512 50.064, 89.686 50.086, 88.780 49.180 C 87.325 47.725, 74.369 47.594, 73.485 49.025 C 72.672 50.340, 63.905 49.327, 58.220 47.261 C 54.790 46.014, 51.153 45.816, 39.895 46.262 C 32.170 46.567, 25.546 47.121, 25.175 47.491 C 24.257 48.407, 24.315 74.841, 25.241 78.140 C 25.649 79.592, 26.549 80.985, 27.241 81.236 C 29.179 81.939, 58.685 80.265, 66 79.037 C 70.775 78.236, 73.063 78.245, 74.621 79.073 C 75.920 79.763, 79.021 79.969, 82.621 79.604 C 89.917 78.865, 91.083 78.865, 98.379 79.604 C 102.335 80.005, 105.053 79.774, 106.691 78.898 C 108.603 77.875, 109.535 77.853, 111.048 78.798 C 113.537 80.352, 123.463 80.352, 125.952 78.798 C 127.464 77.853, 128.396 77.874, 130.301 78.894 C 131.948 79.775, 134.776 80.004, 139.113 79.607 C 146.541 78.928, 146.489 78.928, 159.250 79.613 L 169 80.137 169 90.569 L 169 101 171.961 101 L 174.922 101 175.211 92.250 L 175.500 83.500 272 82.947 L 368.500 82.395 380.744 79.691 C 392.662 77.059, 402.224 73.957, 409.114 70.486 C 413.288 68.384, 427 58.069, 427 57.032 C 427 56.616, 423.531 55.961, 419.290 55.577 C 415.050 55.193, 395.595 52.431, 376.058 49.439 L 340.536 44 267.327 44 C 219.600 44, 193.903 44.348, 193.500 45 C 193.160 45.550, 189.084 46, 184.441 46 L 176 46 175.882 33.250 C 175.738 17.715, 175.176 14.599, 172.452 14.208 C 171.333 14.047, 170.099 14.235, 169.709 14.624 M 354.200 56.200 C 353.540 56.860, 353 58.345, 353 59.500 C 353 62.819, 355.002 64, 360.629 64 C 367.739 64, 370.383 61.453, 367.965 56.934 C 367.125 55.365, 365.841 55, 361.165 55 C 357.994 55, 354.860 55.540, 354.200 56.200" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 441 114" version="1.1" fill="white">
|
||||
<path d="M 130 27.030 C 88.972 31.159, 46.641 45.580, 31.911 60.447 C 29.760 62.618, 28 64.682, 28 65.033 C 28 65.385, 31.050 68.616, 34.778 72.215 C 40.129 77.381, 41.348 79.087, 40.570 80.321 C 39.861 81.444, 40.064 82.413, 41.292 83.770 C 42.231 84.808, 43 85.960, 43 86.329 C 43 86.698, 38.688 87, 33.417 87 C 26.193 87, 23.937 87.308, 24.253 88.250 C 24.562 89.174, 27.345 89.405, 34.921 89.136 C 45.152 88.773, 45.176 88.778, 48.335 91.776 C 53.330 96.516, 55.196 96.624, 59.643 92.429 C 67.545 84.976, 96.984 73.174, 121.745 67.531 C 140.911 63.164, 157.794 61.685, 181 62.340 C 192.275 62.658, 206 63.603, 211.500 64.440 C 217 65.277, 223.663 65.970, 226.306 65.981 C 231.051 66, 231.139 66.059, 233.148 70.602 C 235.332 75.539, 235.155 79.266, 232.495 84.364 C 230.674 87.854, 230.666 88, 232.313 88 C 233.035 88, 234.910 86.660, 236.479 85.022 C 238.722 82.681, 239.430 80.864, 239.790 76.522 C 240.173 71.896, 240.560 71, 242.173 71 C 245.594 71, 249.949 68.041, 252.518 63.972 C 254.868 60.248, 259 58.405, 259 61.079 C 259 61.739, 260.078 61.922, 261.769 61.551 C 263.396 61.193, 265.273 61.479, 266.316 62.242 C 267.681 63.240, 270.110 63.339, 276.797 62.666 C 284.493 61.892, 290.302 62.383, 327 66.905 C 349.825 69.717, 372.035 72.014, 376.356 72.009 C 394.524 71.988, 411.216 63.665, 422.502 48.997 C 425.092 45.632, 427.046 42.713, 426.844 42.511 C 426.643 42.309, 423.333 42.852, 419.489 43.717 C 415.058 44.715, 407.192 45.329, 398 45.395 C 381.291 45.516, 376.339 44.318, 359.833 36.164 L 350.339 31.475 341.920 33.205 C 320.081 37.694, 296.897 37.968, 275 33.996 C 268.675 32.849, 262.088 31.654, 260.362 31.342 C 258.083 30.930, 256.434 31.359, 254.339 32.908 C 252.752 34.081, 249.198 35.308, 246.441 35.634 C 241.678 36.198, 241.248 36.048, 237.814 32.614 C 233.524 28.324, 230.542 28.023, 222.787 31.094 C 219.008 32.590, 215.217 33.196, 209.500 33.215 C 199.222 33.251, 197.156 32.898, 187.500 29.456 C 179.800 26.711, 178.731 26.596, 159 26.390 C 147.725 26.272, 134.675 26.560, 130 27.030 M 156.390 32.426 C 155.480 34.797, 156.767 37.191, 158.747 36.810 C 161.125 36.352, 161.125 31.648, 158.747 31.190 C 157.783 31.004, 156.722 31.560, 156.390 32.426 M 170.667 32.667 C 169.692 33.641, 169.852 36.791, 170.910 37.444 C 172.652 38.521, 175 36.770, 175 34.393 C 175 32.739, 174.434 32, 173.167 32 C 172.158 32, 171.033 32.300, 170.667 32.667 M 166.405 45.091 C 186.588 46.245, 195.682 47.607, 202.840 50.548 C 206.328 51.980, 209.368 52.965, 209.597 52.736 C 209.826 52.507, 209.743 50.966, 209.413 49.313 L 208.811 46.306 198.156 45.151 C 192.295 44.517, 179.625 44.064, 170 44.147 L 152.500 44.296 166.405 45.091 M 301.500 44.998 C 319.111 46.042, 363.886 46.924, 352.500 46.003 C 347.550 45.602, 331.125 45.038, 316 44.750 C 298.120 44.410, 293.048 44.496, 301.500 44.998 M 182.362 52.500 C 181.569 54.564, 182.644 57, 184.346 57 C 186.393 57, 188.135 54.514, 187.410 52.627 C 186.626 50.584, 183.131 50.496, 182.362 52.500 M 195.152 52.871 C 192.920 54.308, 194.204 57.500, 197.014 57.500 C 198.995 57.500, 199.500 56.995, 199.500 55.014 C 199.500 52.388, 197.461 51.383, 195.152 52.871 M 57.147 56.323 C 55.719 58.044, 56.662 61, 58.638 61 C 60.752 61, 61.490 58.062, 59.801 56.372 C 58.529 55.101, 58.167 55.094, 57.147 56.323 M 43.394 61.417 C 42.566 63.574, 43.717 66.261, 45.251 65.750 C 45.938 65.521, 46.500 64.283, 46.500 63 C 46.500 60.259, 44.273 59.124, 43.394 61.417 M 80.175 69.662 C 80.587 73.264, 83.500 73.572, 83.500 70.014 C 83.500 68.402, 82.858 67.404, 81.675 67.176 C 80.200 66.892, 79.912 67.368, 80.175 69.662 M 68.695 73.354 C 67.854 75.543, 70.563 78.797, 72.026 77.356 C 72.665 76.727, 73.028 75.382, 72.832 74.368 C 72.394 72.092, 69.455 71.372, 68.695 73.354" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 434 109" version="1.1" fill="white">
|
||||
<path d="M 198.185 21.684 C 197.462 21.973, 196.453 23.308, 195.943 24.650 C 195.432 25.993, 194.449 27.017, 193.757 26.927 C 191.169 26.589, 190.220 27.052, 189.740 28.885 C 189.368 30.309, 188.606 30.647, 186.624 30.268 C 184.612 29.884, 184 30.169, 184 31.492 C 184 32.853, 183.448 33.078, 181.382 32.560 C 179.564 32.104, 178.145 32.452, 176.736 33.701 C 175.259 35.012, 174.589 35.161, 174.271 34.250 C 173.733 32.714, 170.786 32.614, 169.318 34.082 C 168.542 34.858, 167.660 34.805, 166.199 33.892 C 164.544 32.859, 163.866 32.866, 162.581 33.933 C 161.353 34.952, 160.681 34.980, 159.568 34.056 C 158.780 33.402, 155.517 32.466, 152.318 31.976 C 149.118 31.485, 143.350 30.557, 139.500 29.912 C 130.459 28.399, 90.642 29.366, 75.500 31.468 C 52.930 34.600, 32.199 39.783, 28.152 43.305 C 27.243 44.096, 24.206 45.489, 21.403 46.401 C 14.559 48.627, 13.171 51.173, 14.926 58.275 C 15.637 61.149, 17.008 64.885, 17.974 66.579 C 18.940 68.272, 20.061 72.747, 20.466 76.524 C 21.190 83.288, 23.316 87.907, 25.734 87.969 C 26.413 87.986, 36.398 85.321, 47.922 82.046 C 59.446 78.771, 72.840 75.561, 77.687 74.912 C 90.945 73.138, 107.122 74.295, 120.775 77.993 L 132.049 81.048 142.775 77.355 C 155.908 72.834, 165.223 72.482, 176.500 76.081 C 180.350 77.309, 184.688 78.240, 186.140 78.150 C 187.737 78.050, 189.019 78.608, 189.385 79.561 C 189.799 80.639, 190.653 80.927, 192.084 80.473 C 193.569 80.002, 194.596 80.406, 195.616 81.863 C 196.513 83.142, 197.664 83.682, 198.672 83.296 C 199.637 82.925, 200.817 83.396, 201.597 84.463 C 202.340 85.480, 203.568 85.996, 204.445 85.660 C 205.324 85.322, 206.809 85.952, 207.902 87.125 C 210.614 90.036, 213.200 89.173, 214.272 84.998 C 216.176 77.583, 220.259 76.105, 225.199 81.045 C 227.977 83.823, 228.393 83.954, 229.950 82.545 C 230.889 81.695, 232.372 81, 233.245 81 C 234.119 81, 234.990 80.531, 235.181 79.958 C 235.372 79.385, 236.872 78.762, 238.514 78.572 C 240.156 78.383, 241.500 78.124, 241.500 77.997 C 241.500 77.460, 256.587 77.347, 257.500 77.877 C 258.050 78.196, 261.055 78.497, 264.178 78.546 C 267.441 78.598, 270.571 79.229, 271.537 80.030 C 272.880 81.145, 278.565 81.430, 299.859 81.448 C 328.824 81.473, 335.117 80.775, 357.088 75.102 C 378.736 69.512, 376.876 70.672, 398.015 49.572 C 408.444 39.162, 416.828 30.494, 416.645 30.311 C 414.678 28.344, 329.990 22.237, 329.998 24.063 C 329.999 24.373, 331.350 25.919, 333 27.500 C 336.671 31.017, 336.928 34.620, 333.616 36.129 C 329.908 37.819, 322.051 35.658, 308.728 29.286 L 296.955 23.655 264.228 24.860 C 246.227 25.523, 226.076 26.340, 219.447 26.675 L 207.395 27.285 203.815 24.143 C 201.847 22.414, 200.070 21.036, 199.868 21.079 C 199.666 21.122, 198.908 21.395, 198.185 21.684 M 232.200 41.200 C 231.540 41.860, 231 43.644, 231 45.165 C 231 49.868, 233.333 50.334, 252.920 49.542 C 283.080 48.322, 311.146 46.254, 312.228 45.172 C 312.799 44.601, 313.023 43.502, 312.726 42.729 C 312.296 41.608, 307.602 41.191, 289.432 40.662 C 253.700 39.622, 233.589 39.811, 232.200 41.200 M 18.446 51.087 C 17.416 52.755, 19.733 54.667, 21.113 53.287 C 22.267 52.133, 21.545 50, 20 50 C 19.515 50, 18.816 50.489, 18.446 51.087" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 447 89" version="1.1" fill="white">
|
||||
<path d="M 174.195 21.443 L 167.890 24.841 166.970 22.421 C 165.991 19.847, 164.098 19.302, 162.318 21.082 C 161.542 21.858, 160.600 21.788, 158.987 20.832 C 157.258 19.808, 156.637 19.780, 156.298 20.714 C 155.961 21.642, 155.422 21.656, 154.010 20.774 C 152.597 19.892, 151.809 19.914, 150.660 20.868 C 149.456 21.866, 148.716 21.854, 146.948 20.807 C 145.242 19.798, 144.638 19.777, 144.298 20.714 C 143.961 21.642, 143.422 21.656, 142.010 20.774 C 140.586 19.885, 139.799 19.922, 138.581 20.933 C 137.295 22, 136.713 22.006, 135.458 20.965 C 134.348 20.044, 133.611 19.989, 132.829 20.771 C 132.048 21.552, 131.241 21.543, 129.953 20.738 C 128.590 19.888, 127.766 19.949, 126.505 20.996 C 125.095 22.166, 124.714 22.157, 123.954 20.936 C 123.244 19.794, 122.672 19.741, 121.159 20.678 C 119.722 21.568, 118.974 21.574, 118.103 20.703 C 117.232 19.832, 116.434 19.872, 114.841 20.867 C 113.091 21.960, 112.590 21.956, 111.896 20.842 C 111.239 19.787, 110.655 19.752, 109.159 20.678 C 107.722 21.568, 106.974 21.574, 106.103 20.703 C 105.232 19.832, 104.434 19.872, 102.841 20.867 C 101.091 21.960, 100.590 21.956, 99.896 20.842 C 99.239 19.787, 98.655 19.752, 97.159 20.678 C 95.722 21.568, 94.974 21.574, 94.103 20.703 C 93.232 19.832, 92.434 19.872, 90.841 20.867 C 89.091 21.960, 88.590 21.956, 87.896 20.842 C 87.239 19.787, 86.655 19.752, 85.159 20.678 C 83.722 21.568, 82.974 21.574, 82.103 20.703 C 81.232 19.832, 80.434 19.872, 78.841 20.867 C 77.091 21.960, 76.590 21.956, 75.896 20.842 C 75.239 19.787, 74.655 19.752, 73.159 20.678 C 71.722 21.568, 70.974 21.574, 70.103 20.703 C 69.232 19.832, 68.434 19.872, 66.841 20.867 C 65.091 21.960, 64.590 21.956, 63.896 20.842 C 63.239 19.787, 62.655 19.752, 61.159 20.678 C 59.722 21.568, 58.974 21.574, 58.103 20.703 C 57.232 19.832, 56.498 19.832, 55.103 20.703 C 53.709 21.574, 52.974 21.574, 52.103 20.703 C 51.232 19.832, 50.498 19.832, 49.103 20.703 C 47.709 21.574, 46.974 21.574, 46.103 20.703 C 45.232 19.832, 44.498 19.832, 43.103 20.703 C 41.801 21.517, 40.944 21.544, 40.196 20.796 C 38.673 19.273, 36.122 20.550, 35.050 23.369 C 34.473 24.886, 31.306 27.396, 26.565 30.094 L 19 34.398 19 40.691 L 19 46.984 25.945 51.602 C 31.790 55.489, 32.938 56.716, 33.195 59.352 C 33.526 62.750, 36.559 64.284, 38.130 61.848 C 38.751 60.885, 39.214 60.821, 39.750 61.622 C 40.725 63.082, 49.275 63.082, 50.250 61.622 C 50.805 60.793, 51.195 60.793, 51.750 61.622 C 52.725 63.082, 61.275 63.082, 62.250 61.622 C 62.805 60.793, 63.195 60.793, 63.750 61.622 C 64.725 63.082, 73.275 63.082, 74.250 61.622 C 74.805 60.793, 75.195 60.793, 75.750 61.622 C 76.725 63.082, 85.275 63.082, 86.250 61.622 C 86.801 60.798, 87.199 60.807, 87.752 61.658 C 88.671 63.073, 95.994 63.070, 97.826 61.654 C 98.740 60.947, 99.362 60.968, 99.828 61.722 C 100.672 63.088, 108.037 63.037, 109.826 61.654 C 110.740 60.947, 111.362 60.968, 111.828 61.722 C 112.672 63.088, 120.037 63.037, 121.826 61.654 C 122.740 60.947, 123.362 60.968, 123.828 61.722 C 124.672 63.088, 132.037 63.037, 133.826 61.654 C 134.740 60.947, 135.362 60.968, 135.828 61.722 C 136.672 63.088, 144.037 63.037, 145.826 61.654 C 146.736 60.950, 147.364 60.961, 147.826 61.687 C 148.649 62.979, 156.829 63.086, 157.614 61.815 C 157.935 61.296, 158.784 61.406, 159.584 62.069 C 160.357 62.711, 161.867 63.007, 162.939 62.726 C 164.463 62.328, 164.955 62.792, 165.194 64.858 C 165.431 66.903, 166.122 67.572, 168.250 67.816 C 170.930 68.125, 171 68.003, 171 63.066 L 171 58 175.922 58 C 180.661 58, 180.888 58.130, 182 61.500 L 183.155 65 273.052 65 L 362.950 65 393.725 49.850 L 424.500 34.701 378 29.914 L 331.500 25.127 291.225 25.064 L 250.950 25 244 21.500 L 237.050 18 208.775 18.023 L 180.500 18.045 174.195 21.443 M 181.480 23.032 C 181.092 23.660, 181.245 24.645, 181.820 25.220 C 183.164 26.564, 186.297 25.392, 185.750 23.749 C 185.194 22.078, 182.364 21.602, 181.480 23.032 M 193.461 23.063 C 191.942 25.521, 195.232 26.042, 210.576 25.776 C 223.941 25.544, 226.500 25.259, 226.500 24 C 226.500 22.740, 223.914 22.456, 210.324 22.226 C 199.262 22.038, 193.931 22.303, 193.461 23.063 M 230.534 22.945 C 229.569 24.506, 230.839 26, 233.132 26 C 234.507 26, 235.040 25.448, 234.812 24.261 C 234.428 22.269, 231.507 21.370, 230.534 22.945 M 208.345 33.543 C 208.019 34.392, 207.967 35.300, 208.228 35.561 C 208.569 35.903, 283.424 36.227, 311.750 36.010 C 312.438 36.004, 313 35.100, 313 34 C 313 32.026, 312.333 32, 260.969 32 C 214.995 32, 208.868 32.180, 208.345 33.543 M 25 41.941 C 25 42.459, 25.445 43.157, 25.989 43.493 C 26.555 43.843, 26.723 43.442, 26.382 42.552 C 25.717 40.820, 25 40.503, 25 41.941" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 442 105" version="1.1" fill="white">
|
||||
<path d="M 166.291 22.051 C 163.739 29.249, 160.329 32.173, 153.797 32.765 C 150.884 33.029, 147.759 33.893, 146.854 34.684 C 145.840 35.570, 145.072 35.722, 144.854 35.079 C 144.611 34.364, 128.160 34.694, 92.500 36.130 C 49.146 37.876, 40.209 38.480, 38.750 39.767 C 37.788 40.616, 37 41.867, 37 42.548 C 37 43.229, 36.325 44.045, 35.500 44.362 C 34.675 44.678, 34 45.574, 34 46.352 C 34 47.130, 33.100 48.002, 32 48.290 C 30.900 48.577, 30 49.530, 30 50.406 C 30 51.283, 29.311 52, 28.469 52 C 27.626 52, 26.636 52.788, 26.269 53.750 C 25.901 54.712, 24.045 56.970, 22.143 58.766 L 18.686 62.032 20.593 67.661 C 23.624 76.609, 23.201 76.383, 33.538 74.565 C 42.354 73.015, 120.059 62.797, 133.250 61.454 C 136.963 61.076, 140 60.376, 140 59.898 C 140 58.790, 145.135 61.899, 149.016 65.356 C 151.478 67.551, 152 68.789, 152 72.443 C 152 74.878, 151.574 77.989, 151.054 79.357 C 150.064 81.963, 150.779 83.077, 154.235 84.308 C 156.212 85.012, 157.359 83.281, 160.049 75.535 C 161.412 71.611, 162.647 70.007, 165.649 68.266 C 172.216 64.458, 183.781 65.692, 188.150 70.667 C 190.706 73.579, 193 78.678, 193 81.450 C 193 82.853, 193.359 84, 193.797 84 C 194.235 84, 199.973 82.186, 206.547 79.970 C 224.678 73.857, 232.979 72.677, 258.500 72.582 C 270.600 72.537, 290.406 73.130, 302.513 73.900 C 351.365 77.007, 379.426 73.288, 405.500 60.248 C 413.307 56.344, 423 50.176, 423 49.114 C 423 48.733, 418.163 46.758, 412.250 44.724 C 376.658 32.484, 313.037 26.871, 246.500 30.102 C 236.050 30.610, 226.150 31.075, 224.500 31.136 C 222.850 31.197, 221.197 31.725, 220.826 32.309 C 220.366 33.034, 219.652 32.956, 218.576 32.063 C 217.315 31.017, 216.700 31.004, 215.500 32 C 214.303 32.993, 213.697 32.993, 212.500 32 C 211.303 31.007, 210.697 31.007, 209.500 32 C 208.303 32.993, 207.697 32.993, 206.500 32 C 205.310 31.012, 204.693 31.010, 203.513 31.989 C 202.695 32.668, 201.288 32.941, 200.386 32.595 C 199.484 32.249, 198.129 32.478, 197.373 33.105 C 196.338 33.964, 195.623 33.932, 194.469 32.974 C 193.319 32.020, 190.173 31.871, 181.852 32.376 C 171.790 32.987, 170.826 32.897, 171.402 31.396 C 171.751 30.487, 172.550 27.703, 173.177 25.210 C 174.239 20.995, 174.159 20.547, 172.049 18.838 C 170.800 17.827, 169.397 17, 168.930 17 C 168.464 17, 167.276 19.273, 166.291 22.051 M 27.390 62.427 C 26.296 65.276, 27.452 68.493, 29.682 68.811 C 32.570 69.222, 34.511 65.823, 33 63 C 31.764 60.691, 28.196 60.327, 27.390 62.427" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 419 123" version="1.1" fill="white">
|
||||
<path d="M 114.500 19.627 C 90.804 21.803, 79.728 24.188, 68.591 29.516 C 51.778 37.559, 40.007 47.554, 34.249 58.678 C 27.297 72.106, 24.653 83.327, 26.991 89.475 C 27.874 91.798, 28.226 91.952, 30.241 90.901 C 31.483 90.252, 38.575 83.808, 46 76.581 C 64.602 58.474, 68.438 56.879, 75.430 64.346 C 77.669 66.736, 80.175 68.925, 81 69.211 C 83.453 70.059, 85.861 68.197, 88.107 63.717 C 90.940 58.063, 94.637 54.275, 98.597 52.968 C 101.293 52.078, 102.531 52.226, 105.682 53.816 C 109.098 55.539, 111.081 55.690, 124.500 55.249 C 138.887 54.776, 139.963 54.881, 150.829 57.816 C 162.665 61.013, 164.538 61.030, 165.515 57.952 C 166.417 55.109, 171.655 51.155, 175.464 50.441 C 180.301 49.533, 185.594 51.601, 188.633 55.585 C 190.069 57.468, 192.462 62.917, 193.952 67.695 C 195.441 72.473, 197.387 76.842, 198.276 77.403 C 200.109 78.559, 208.943 77.031, 217.987 73.993 C 221.005 72.979, 223.705 72.513, 223.987 72.956 C 224.269 73.399, 228.325 74.085, 233 74.481 C 238.897 74.981, 245.481 76.537, 254.500 79.562 C 270.140 84.809, 285.525 87.698, 305 89.045 C 342.911 91.666, 370.228 85.053, 389.966 68.474 C 393.223 65.738, 395.913 63.225, 395.944 62.889 C 395.975 62.552, 387.337 62.031, 376.750 61.730 C 356.604 61.157, 342.857 59.280, 324.223 54.557 C 312.903 51.687, 292.434 44.772, 286.895 41.946 C 283.532 40.231, 280.940 40, 265.040 40 C 247.665 40, 246.917 39.917, 244.750 37.750 L 242.500 35.500 244.750 35.180 C 245.988 35.005, 247 34.282, 247 33.574 C 247 32.714, 244.760 32.078, 240.250 31.657 C 236.537 31.310, 222.925 29.223, 210 27.018 C 197.075 24.814, 183.800 22.964, 180.500 22.907 C 177.200 22.850, 170 22.106, 164.500 21.255 C 155.178 19.811, 123.668 18.786, 114.500 19.627" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 431 110" version="1.1" fill="white">
|
||||
<path d="M 397 29.626 C 358.963 39.865, 329.913 43.409, 284 43.413 C 251.936 43.416, 244.675 42.760, 222.901 37.896 L 213.302 35.752 207.401 38.320 C 199.887 41.589, 192.776 42.258, 188.058 40.141 C 185.087 38.807, 178.976 38.484, 151 38.183 C 100.591 37.639, 79.818 39.509, 57.983 46.555 C 41.335 51.928, 32.557 58.116, 20.849 72.732 C 14.859 80.209, 14.789 82.488, 20.454 85.659 C 22.629 86.877, 24.744 88.778, 25.153 89.884 C 26.005 92.187, 32.966 94.463, 36.109 93.466 C 37.214 93.115, 41.392 90.479, 45.393 87.608 C 54.522 81.059, 60.732 78.371, 70.116 76.909 C 80.176 75.341, 91.306 76.274, 102.117 79.590 C 110.851 82.269, 111.254 82.305, 113.831 80.628 C 119.375 77.020, 123.717 75.616, 130.580 75.214 C 136.335 74.876, 138.642 75.220, 142.897 77.051 L 148.134 79.304 153.933 76.532 C 164.407 71.526, 172.568 73.482, 178.172 82.343 C 179.966 85.179, 181.899 87.831, 182.467 88.235 C 184.907 89.970, 188.715 88.889, 191.962 85.539 C 195.417 81.975, 197 81.779, 197 84.914 C 197 87.585, 210.125 88.630, 214.110 86.276 C 216.503 84.862, 217.412 84.816, 220.795 85.932 C 223.863 86.945, 225.196 86.966, 226.946 86.029 C 228.687 85.097, 229.836 85.104, 232.141 86.058 C 234.510 87.040, 235.587 87.024, 237.542 85.978 C 239.447 84.958, 240.546 84.928, 242.546 85.839 C 244.567 86.760, 245.668 86.714, 247.749 85.623 C 249.643 84.631, 251.160 84.508, 253.112 85.189 C 255.084 85.876, 256.614 85.739, 258.667 84.689 C 260.675 83.662, 262.220 83.512, 263.974 84.171 C 265.762 84.843, 267.460 84.645, 270.094 83.458 C 273.323 82.002, 274.068 81.979, 276.620 83.261 C 279.161 84.539, 280.923 84.500, 291.598 82.934 C 322.994 78.327, 348.395 69.697, 371 55.958 C 379.420 50.840, 409.307 28.931, 410.499 27.002 C 411.278 25.740, 411.835 25.632, 397 29.626 M 161.194 52.083 C 161.726 53.677, 174.001 53.838, 174 52.250 C 174 51.377, 172.016 51, 167.417 51 C 163.137 51, 160.960 51.379, 161.194 52.083" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 417 116" version="1.1" fill="white">
|
||||
<path d="M 111.500 19.026 C 94.218 20.570, 73.925 23.053, 62.154 25.062 C 55.913 26.127, 50.448 26.777, 50.008 26.505 C 49.569 26.234, 48.933 26.732, 48.595 27.612 C 48.166 28.732, 47.257 29.030, 45.570 28.607 C 44.244 28.274, 42.467 28.267, 41.621 28.592 C 39.930 29.241, 25.851 50.916, 22.899 57.416 C 19.676 64.511, 20.595 71.069, 25.397 75.247 C 28.600 78.035, 36.560 76.966, 49 72.077 C 55.147 69.662, 62.610 67.543, 67 66.966 C 79.002 65.389, 118.339 63.990, 132.500 64.636 C 144.182 65.169, 145.879 65.483, 149.234 67.739 C 154.177 71.063, 156.377 70.892, 163.388 66.637 C 171.451 61.744, 175.250 60.666, 182.407 61.240 C 188.822 61.755, 198.949 66.064, 202.195 69.659 C 204.808 72.553, 207.954 80.150, 207.978 83.628 C 208.001 86.964, 210.324 89.904, 211.470 88.049 C 212.767 85.951, 215.798 86.982, 216.802 89.862 C 217.755 92.596, 218.152 92.754, 225.650 93.385 C 244.414 94.964, 269.053 95.973, 289.199 95.986 C 323.762 96.008, 341.401 92.841, 364.095 82.538 C 377.639 76.388, 399.720 62.156, 397.961 60.709 C 395.129 58.380, 340.603 36.610, 336 35.971 C 329.393 35.054, 331.031 37.998, 339.566 42.380 C 347.654 46.532, 350.570 49.630, 349.515 52.952 C 347.898 58.046, 340.609 57.396, 324.500 50.721 C 298.877 40.104, 269.493 31.158, 264.424 32.430 C 263.161 32.747, 261.740 32.392, 261.078 31.594 C 260.445 30.831, 259.041 30.438, 257.958 30.721 C 256.875 31.004, 255.338 30.696, 254.543 30.035 C 253.744 29.373, 252.157 29.133, 251 29.500 C 249.847 29.866, 248.270 29.639, 247.496 28.997 C 246.721 28.354, 245.598 28.130, 245 28.500 C 244.402 28.870, 243.259 28.630, 242.462 27.968 C 241.664 27.306, 240.109 27, 239.006 27.288 C 237.904 27.576, 236.727 27.368, 236.392 26.825 C 236.056 26.282, 234.733 26.101, 233.452 26.423 C 232.171 26.744, 230.827 26.529, 230.466 25.945 C 230.096 25.346, 228.585 25.152, 227 25.500 C 225.374 25.857, 223.904 25.654, 223.511 25.018 C 223.137 24.413, 221.948 24.199, 220.868 24.542 C 219.788 24.885, 218.251 24.623, 217.452 23.960 C 216.365 23.058, 215.656 23.040, 214.633 23.890 C 213.594 24.752, 212.968 24.667, 212.028 23.533 C 211.084 22.396, 210.320 22.294, 208.812 23.101 C 207.318 23.900, 206.426 23.798, 205.167 22.683 C 204.043 21.688, 199.101 20.829, 190 20.049 C 172.203 18.523, 124.135 17.897, 111.500 19.026 M 26.655 62.829 C 23.343 66.488, 25.361 72, 30.012 72 C 33.899 72, 36.466 68.355, 35.103 64.771 C 33.579 60.763, 29.395 59.801, 26.655 62.829" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 426 114" version="1.1" fill="white">
|
||||
<path d="M 238.518 19.421 C 236.328 20.746, 234.203 21.626, 233.797 21.375 C 233.391 21.124, 231.753 21.594, 230.156 22.419 C 228.560 23.245, 226.986 23.652, 226.658 23.325 C 226.330 22.997, 224.911 23.484, 223.503 24.406 C 222.095 25.328, 220.519 25.821, 220 25.500 C 219.481 25.179, 218.031 25.558, 216.778 26.342 C 214.754 27.608, 200.561 28.410, 167 29.157 C 148.975 29.558, 100.584 34.306, 87.947 36.914 C 60.331 42.612, 38.917 53.289, 25.766 67.915 C 21.143 73.057, 18.649 78.659, 17.412 86.679 C 16.850 90.321, 17.106 91.197, 19.400 93.491 C 22.552 96.642, 24.083 96.342, 32 91.023 C 56.496 74.565, 76.813 67.195, 104 64.906 C 120.101 63.550, 171.761 63.183, 191.668 64.283 C 199.651 64.724, 212.747 66.348, 221.668 68.002 C 239.937 71.390, 239.670 71.468, 242.095 62.005 C 242.801 59.252, 243.677 57, 244.043 57 C 244.409 57, 245.922 58.125, 247.405 59.500 C 249.517 61.457, 251.164 62, 254.985 62 C 261.501 62, 283.229 66.104, 300.500 70.597 C 324.381 76.809, 330.187 77.990, 340.076 78.646 C 360.286 79.986, 380.615 74.245, 399.833 61.769 L 406.165 57.658 396.833 53.761 C 391.700 51.619, 375.941 45.181, 361.814 39.455 C 336.308 29.118, 336.090 29.051, 330.814 29.977 C 309.725 33.680, 258.397 33.702, 249.500 30.011 C 248.400 29.555, 246.713 28.930, 245.750 28.622 C 243.168 27.797, 243.447 22.611, 246.171 20.803 C 248.718 19.112, 247.894 16.998, 244.691 17.005 C 243.486 17.008, 240.708 18.095, 238.518 19.421" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 360 150" version="1.1" fill="white">
|
||||
<path d="M 199.506 18.294 C 197.310 19.507, 195.285 20.781, 195.006 21.124 C 194.728 21.468, 193.037 22.066, 191.250 22.454 C 189.463 22.842, 188 23.582, 188 24.099 C 188 24.616, 186.809 24.739, 185.351 24.373 C 183.486 23.905, 182.911 24.048, 183.410 24.854 C 183.799 25.484, 183.641 26, 183.059 26 C 182.477 26, 182 25.541, 182 24.981 C 182 23.762, 176.798 24.854, 175.871 26.267 C 175.508 26.820, 175.061 26.683, 174.814 25.941 C 174.258 24.275, 165.776 23.756, 164.776 25.328 C 164.221 26.201, 164.027 26.181, 164.015 25.250 C 164.007 24.563, 163.100 24, 162 24 C 160.900 24, 160 23.618, 160 23.152 C 160 22.686, 158.615 22.265, 156.923 22.217 C 155.231 22.169, 152.729 21.397, 151.364 20.503 C 148.242 18.457, 141.820 18.957, 125.373 22.526 C 118.843 23.942, 112.418 25.325, 111.095 25.598 C 109.773 25.872, 107.919 26.508, 106.977 27.012 C 106.034 27.517, 104.979 27.645, 104.631 27.298 C 104.284 26.951, 104 27.267, 104 28 C 104 28.733, 103.740 29.073, 103.423 28.756 C 102.162 27.495, 80.757 35.981, 76 39.628 C 75.175 40.260, 72.983 41.100, 71.129 41.495 C 69.058 41.936, 67.567 42.938, 67.265 44.095 C 66.898 45.499, 65.988 45.916, 63.680 45.738 C 61.179 45.546, 60.328 46.027, 59.239 48.250 C 57.837 51.111, 56.557 51.710, 55.500 50 C 54.350 48.139, 51.956 48.986, 50.960 51.605 C 50.152 53.730, 49.519 54.096, 47.515 53.593 C 45.599 53.112, 44.691 53.542, 43.371 55.557 C 42.107 57.486, 41.110 57.994, 39.421 57.570 C 37.607 57.114, 36.712 57.730, 34.882 60.691 C 33.629 62.719, 32.664 65.193, 32.739 66.189 C 32.814 67.185, 32.445 68, 31.919 68 C 31.392 68, 28.738 72.749, 26.021 78.552 C 23.304 84.356, 18.987 92.100, 16.428 95.762 C 10.987 103.545, 11.233 104.799, 18.607 106.864 C 21.751 107.744, 25.135 109.757, 28.074 112.492 C 35.008 118.948, 41.002 121.377, 50 121.377 C 56.211 121.378, 58.360 120.919, 62.500 118.710 C 65.250 117.242, 68.687 115.020, 70.138 113.771 C 73.955 110.485, 79.732 100.948, 80.551 96.578 C 81.425 91.920, 86.388 85.266, 91.015 82.547 C 93.783 80.921, 96.042 80.533, 101.996 80.662 L 109.493 80.824 114.523 76.066 C 122.433 68.585, 136.176 65.309, 143.422 69.177 C 146.337 70.732, 146.358 70.723, 151.422 65.557 C 159.494 57.323, 168.094 56.011, 177.645 61.555 C 183.524 64.968, 186.797 69.300, 188.719 76.213 C 189.636 79.512, 190.927 82.419, 191.588 82.672 C 193.893 83.557, 201.008 80.917, 202.514 78.619 C 204.821 75.098, 215.182 73.496, 235.500 73.520 C 255.319 73.544, 263.953 75.033, 279.672 81.139 C 302.964 90.187, 324.303 107.598, 336.568 127.562 L 340.216 133.500 339.588 128.360 C 338.644 120.628, 334.474 107.532, 329.921 98 C 311.524 59.479, 277.007 32.861, 234.111 24.118 C 228.397 22.953, 222.221 22, 220.386 22 C 217.692 22, 216.753 21.424, 215.500 19 C 214.071 16.236, 213.537 16.003, 208.724 16.044 C 205.279 16.073, 202.140 16.840, 199.506 18.294 M 41.227 74.116 C 25.124 82.087, 25.176 105.098, 41.315 112.910 C 55.669 119.859, 72.044 109.649, 71.978 93.790 C 71.911 77.607, 55.451 67.076, 41.227 74.116" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 446 141" version="1.1" fill="white">
|
||||
<path d="M 167.667 14.667 C 167.300 15.033, 166.994 23.471, 166.986 33.417 C 166.979 43.362, 166.727 52.415, 166.427 53.533 C 165.930 55.382, 164.964 55.591, 155.708 55.850 C 149.267 56.030, 145.253 56.568, 144.767 57.317 C 144.213 58.172, 143.792 58.193, 143.250 57.391 C 142.032 55.590, 128.541 54.658, 125.941 56.197 C 124.194 57.230, 123.645 57.242, 123.286 56.250 C 122.566 54.263, 107.356 54.542, 106.225 56.563 C 105.431 57.981, 105.229 57.981, 104.052 56.563 C 102.390 54.560, 88.423 54.293, 87.714 56.250 C 87.354 57.243, 86.812 57.234, 85.075 56.207 C 82.599 54.742, 72.035 55.397, 68.234 57.250 C 66.455 58.117, 65.190 57.984, 62.353 56.631 C 59.294 55.173, 55.921 54.933, 40.396 55.069 C 27.941 55.179, 21.746 55.601, 21.096 56.384 C 18.007 60.106, 17.264 82.116, 19.974 89.612 C 21.014 92.487, 21.609 92.807, 27.800 93.827 C 36.842 95.317, 58.305 94.359, 63.326 92.242 C 66.366 90.959, 67.313 90.889, 67.938 91.899 C 68.989 93.600, 85 94.768, 85 93.143 C 85 92.514, 85.675 92, 86.500 92 C 87.325 92, 88 92.450, 88 93 C 88 94.453, 102.329 94.271, 103.800 92.800 C 104.733 91.867, 105.267 91.867, 106.200 92.800 C 107.771 94.371, 122.194 94.406, 123.758 92.842 C 124.634 91.966, 125.287 91.993, 126.447 92.956 C 128.598 94.741, 141.779 93.954, 143.059 91.964 C 143.800 90.811, 144.174 90.769, 144.820 91.767 C 145.372 92.621, 148.874 93.110, 155.570 93.267 C 163.265 93.448, 165.653 93.838, 166.180 95 C 166.554 95.825, 166.891 102.679, 166.930 110.231 L 167 123.962 169.513 124.593 C 174.321 125.799, 175 123.977, 175 109.878 L 175 97 189.750 97.035 C 200.650 97.062, 205.153 97.444, 207 98.500 C 210.766 100.653, 345.814 100.666, 362.220 98.516 C 380.860 96.072, 395.404 90.861, 414.174 79.899 C 420.374 76.277, 421.095 75.579, 419.315 74.921 C 415.148 73.379, 389.027 68.011, 371.500 65.094 C 361.600 63.446, 345.175 60.446, 335 58.426 C 324.825 56.407, 313.890 54.529, 310.700 54.253 C 304.913 53.753, 304.901 53.758, 305.531 56.267 C 306.463 59.980, 304.120 60.874, 301.584 57.774 C 300.223 56.110, 298.222 55.085, 295.817 54.821 C 292.252 54.430, 292.151 54.507, 292.692 57.209 C 293.462 61.061, 290.758 60.945, 287.842 57 C 286.146 54.706, 284.836 54, 282.277 54 C 279.228 54, 279.026 54.180, 280.011 56.021 C 281.324 58.474, 280.540 60, 277.967 60 C 276.850 60, 275.405 58.749, 274.500 57 C 273.231 54.546, 272.320 54, 269.499 54 C 266.200 54, 266.076 54.131, 266.650 57 C 267.146 59.481, 266.926 59.999, 265.375 59.994 C 264.343 59.990, 262.734 58.642, 261.797 56.994 C 260.348 54.447, 259.492 54, 256.072 54 C 252.136 54, 252.063 54.065, 252.650 57 C 253.146 59.481, 252.926 59.999, 251.375 59.994 C 250.343 59.990, 248.734 58.642, 247.797 56.994 C 246.348 54.447, 245.492 54, 242.072 54 C 238.136 54, 238.063 54.065, 238.650 57 C 239.157 59.535, 238.939 60, 237.246 60 C 235.963 60, 234.796 58.922, 234 57 C 232.885 54.307, 232.305 54, 228.343 54 C 224.224 54, 224.002 54.135, 225.011 56.021 C 227.420 60.523, 222.795 61.548, 220.231 57.081 C 218.456 53.987, 215.683 53, 208.768 53 C 205.369 53, 204.891 53.256, 205.504 54.750 C 207.823 60.401, 204.361 61.317, 200.781 56 L 198.425 52.500 186.712 52.218 L 175 51.937 175 34.550 C 175 24.987, 174.727 16.452, 174.393 15.582 C 173.790 14.010, 168.978 13.356, 167.667 14.667 M 331.223 69.557 C 326.217 73.063, 329.604 78, 337.015 78 C 340.916 78, 342.197 77.557, 343.443 75.777 C 345.447 72.917, 345.408 72.408, 343 70 C 340.557 67.557, 334.408 67.325, 331.223 69.557" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.5 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 423 116" version="1.1" fill="white">
|
||||
<path d="M 228.574 24.568 C 227.681 25.462, 226.205 25.882, 225.144 25.546 C 224.061 25.202, 222.746 25.601, 222 26.500 C 221.239 27.418, 219.943 27.799, 218.811 27.440 C 217.762 27.107, 216.251 27.377, 215.452 28.040 C 214.365 28.942, 213.656 28.960, 212.633 28.110 C 211.593 27.247, 210.965 27.337, 210.010 28.488 C 208.303 30.545, 206.259 30.391, 205.548 28.151 C 205.028 26.512, 204.088 26.352, 197.231 26.734 C 192.979 26.971, 185 27.825, 179.500 28.633 C 155.451 32.165, 151.250 32.376, 131.452 31.048 C 113.008 29.810, 108.223 29.937, 92 32.095 C 74.971 34.359, 50.827 42.900, 40 50.489 C 30.656 57.038, 30.123 59.010, 35.527 67.041 C 37.467 69.924, 39.511 74.318, 40.069 76.807 C 41.359 82.564, 43.967 87, 46.061 87 C 46.957 87, 48.547 86.053, 49.594 84.896 C 57.266 76.418, 76.406 72.683, 90.161 76.980 L 96.500 78.960 100.639 75.997 C 105.867 72.256, 108.444 71.287, 116.666 69.973 C 125.299 68.594, 132.380 70.045, 139.108 74.572 C 141.909 76.458, 144.860 78, 145.665 78 C 146.471 78, 149.275 75.798, 151.897 73.106 C 155.894 69.002, 157.587 68.020, 162.377 67.025 C 172.769 64.868, 186.776 68.713, 193.353 75.529 C 202.574 85.082, 204.826 87.932, 205.467 90.851 C 206.832 97.063, 212.181 101.055, 214.712 97.750 C 215.239 97.063, 216.909 92.900, 218.424 88.500 C 222.847 75.656, 221.388 76.543, 238.609 76.223 C 246.799 76.070, 264.749 76.632, 278.498 77.473 C 309.615 79.374, 321.850 79.388, 334.143 77.535 C 345.982 75.750, 363.499 70.224, 375.500 64.486 C 384.600 60.136, 400.587 50.253, 399.798 49.465 C 399.563 49.230, 393.324 47.500, 385.935 45.621 C 356.143 38.045, 323.185 33.645, 284.324 32.054 C 259.328 31.031, 250.647 29.801, 237.968 25.489 C 229.300 22.541, 230.486 22.657, 228.574 24.568 M 38.105 58.373 C 36.948 59.768, 37.569 63, 38.993 63 C 39.422 63, 39.971 61.650, 40.213 60 C 40.688 56.769, 39.925 56.180, 38.105 58.373" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 148" version="1.1" fill="white">
|
||||
<path d="M 37.589 22.250 C 36.788 23.488, 33.828 29.253, 31.012 35.062 C 24.237 49.038, 22.539 58.334, 23.353 77 C 23.677 84.425, 24.419 92.525, 25.001 95 C 26.398 100.935, 37.661 123.933, 39.521 124.647 C 42.141 125.652, 49.350 120.456, 51.908 115.718 L 54.317 111.259 51.571 104.402 C 49.240 98.580, 48.930 96.712, 49.514 92.023 C 50.355 85.278, 51.119 83.763, 55.123 80.912 C 60.675 76.959, 67.879 78.681, 73.746 85.363 C 77.042 89.117, 78.480 92.850, 79.480 100.250 C 80.125 105.020, 81.472 106.128, 83.800 103.800 C 84.460 103.140, 85 101.841, 85 100.914 C 85 98.907, 87.480 98.471, 107.500 96.963 C 137.738 94.686, 162.649 89.605, 176.365 82.917 C 183.754 79.314, 191.652 72.864, 190.653 71.247 C 188.980 68.541, 175.773 60.954, 167.943 58.201 C 152.775 52.868, 129.597 48.833, 106.500 47.503 C 86.459 46.349, 86.142 46.276, 84.533 42.426 C 82.037 36.450, 80.280 37.943, 78.980 47.144 C 77.603 56.886, 71.469 64.055, 63.170 65.623 C 59.602 66.298, 56.423 65.048, 52.530 61.440 C 50.849 59.882, 50.045 57.694, 49.533 53.284 C 48.927 48.064, 49.199 46.343, 51.568 40.423 L 54.302 33.589 51.901 29.065 C 49.421 24.392, 44.078 20, 40.875 20 C 39.869 20, 38.391 21.012, 37.589 22.250 M 230.589 22.250 C 229.788 23.488, 226.828 29.253, 224.012 35.062 C 217.237 49.038, 215.539 58.334, 216.353 77 C 216.677 84.425, 217.419 92.525, 218.001 95 C 219.398 100.935, 230.661 123.933, 232.521 124.647 C 235.141 125.652, 242.350 120.456, 244.908 115.718 L 247.317 111.259 244.571 104.402 C 242.240 98.580, 241.930 96.712, 242.514 92.023 C 243.355 85.278, 244.119 83.763, 248.123 80.912 C 253.675 76.959, 260.879 78.681, 266.746 85.363 C 270.042 89.117, 271.480 92.850, 272.480 100.250 C 273.125 105.020, 274.472 106.128, 276.800 103.800 C 277.460 103.140, 278 101.841, 278 100.914 C 278 98.907, 280.480 98.471, 300.500 96.963 C 330.738 94.686, 355.649 89.605, 369.365 82.917 C 376.754 79.314, 384.652 72.864, 383.653 71.247 C 381.980 68.541, 368.773 60.954, 360.943 58.201 C 345.775 52.868, 322.597 48.833, 299.500 47.503 C 279.459 46.349, 279.142 46.276, 277.533 42.426 C 275.037 36.450, 273.280 37.943, 271.980 47.144 C 270.603 56.886, 264.469 64.055, 256.170 65.623 C 252.602 66.298, 249.423 65.048, 245.530 61.440 C 243.849 59.882, 243.045 57.694, 242.533 53.284 C 241.927 48.064, 242.199 46.343, 244.568 40.423 L 247.302 33.589 244.901 29.065 C 242.421 24.392, 237.078 20, 233.875 20 C 232.869 20, 231.391 21.012, 230.589 22.250 M 38.620 29.465 C 35.709 32.606, 32.586 39.480, 33.266 41.251 C 33.553 41.998, 35.888 43.710, 38.455 45.055 C 42.870 47.368, 43.193 47.404, 44.434 45.733 C 45.918 43.733, 47.369 33.124, 46.476 30.799 C 46.154 29.958, 44.768 28.760, 43.397 28.135 C 41.235 27.150, 40.602 27.326, 38.620 29.465 M 231.620 29.465 C 228.709 32.606, 225.586 39.480, 226.266 41.251 C 226.553 41.998, 228.888 43.710, 231.455 45.055 C 235.870 47.368, 236.193 47.404, 237.434 45.733 C 238.918 43.733, 240.369 33.124, 239.476 30.799 C 239.154 29.958, 237.768 28.760, 236.397 28.135 C 234.235 27.150, 233.602 27.326, 231.620 29.465 M 29.274 54.705 C 27.906 56.792, 27.418 60.036, 27.136 68.905 C 26.622 85.115, 28.727 93, 33.569 93 C 33.954 93, 38.484 88.867, 43.635 83.816 C 50.829 76.761, 53 74.012, 53 71.958 C 53 69.902, 50.931 67.290, 44.035 60.643 C 38.826 55.621, 34.227 52, 33.058 52 C 31.951 52, 30.249 53.217, 29.274 54.705 M 222.274 54.705 C 220.906 56.792, 220.418 60.036, 220.136 68.905 C 219.622 85.115, 221.727 93, 226.569 93 C 226.954 93, 231.484 88.867, 236.635 83.816 C 243.829 76.761, 246 74.012, 246 71.958 C 246 69.902, 243.931 67.290, 237.035 60.643 C 231.826 55.621, 227.227 52, 226.058 52 C 224.951 52, 223.249 53.217, 222.274 54.705 M 37.690 99.853 C 34.888 101.437, 33.007 103.209, 33.004 104.265 C 32.997 107.221, 39.040 117, 40.873 117 C 41.798 117, 43.600 116.268, 44.877 115.374 C 47 113.887, 47.141 113.265, 46.525 108.124 C 45.134 96.506, 44.560 95.969, 37.690 99.853 M 230.690 99.853 C 227.888 101.437, 226.007 103.209, 226.004 104.265 C 225.997 107.221, 232.040 117, 233.873 117 C 234.798 117, 236.600 116.268, 237.877 115.374 C 240 113.887, 240.141 113.265, 239.525 108.124 C 238.134 96.506, 237.560 95.969, 230.690 99.853" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 439 127" version="1.1" fill="white">
|
||||
<path d="M 192.896 29.088 C 180.981 38.622, 173.975 40.950, 154.869 41.721 C 141.523 42.260, 124.228 40.817, 107 37.728 C 97.814 36.080, 72.384 36.439, 61.322 38.372 C 38.760 42.313, 19 53.170, 19 61.624 C 19 70.317, 37.945 81.234, 61.500 86.115 C 70.159 87.909, 98.108 87.599, 112 85.555 C 131.177 82.732, 143.920 81.838, 156.143 82.456 C 173.335 83.325, 182.262 86.465, 193.249 95.511 C 198.800 100.080, 199.065 100.182, 201.245 98.585 C 202.485 97.677, 205.029 95.824, 206.898 94.467 C 209.213 92.786, 211.619 92, 214.448 92 C 216.732 92, 219.154 91.446, 219.831 90.769 C 220.736 89.864, 230.916 89.360, 258.281 88.864 C 321.141 87.724, 350.487 84.906, 382 76.980 C 404.374 71.353, 427.836 63.381, 426.280 61.935 C 424.824 60.581, 399.203 52.118, 385.777 48.555 C 352.821 39.811, 301.339 35, 240.730 35 C 226.318 35, 221.966 34.691, 220.441 33.559 C 219.374 32.766, 217.527 32.355, 216.339 32.645 C 213.822 33.259, 206.853 30.201, 202.396 26.528 L 199.293 23.970 192.896 29.088 M 186.637 42.465 C 172.386 47.545, 168.504 66.770, 179.624 77.197 C 187.789 84.853, 201.467 84.698, 208.975 76.864 C 224.409 60.759, 207.662 34.970, 186.637 42.465 M 31.357 58.577 C 29.145 61.954, 30.496 66.099, 34.238 67.415 C 39.596 69.299, 43.501 61.574, 39.171 57.655 C 36.502 55.239, 33.296 55.618, 31.357 58.577 M 230.750 58.080 C 228.597 59.334, 228.432 64.284, 230.487 65.989 C 232.807 67.914, 236.862 66.398, 237.636 63.316 C 238.150 61.268, 237.786 60.245, 236.040 58.831 C 233.451 56.735, 233.136 56.690, 230.750 58.080 M 246.309 60.636 C 245.482 62.792, 247.259 65.500, 249.500 65.500 C 250.480 65.500, 251.740 64.774, 252.300 63.886 C 253.828 61.464, 252.416 59, 249.500 59 C 248.050 59, 246.665 59.710, 246.309 60.636 M 263.011 60.487 C 261.229 62.634, 262.548 65.203, 265.235 64.820 C 267.798 64.455, 268.873 61.168, 266.848 59.885 C 264.974 58.697, 264.425 58.783, 263.011 60.487 M 277.180 62.250 C 277.356 63.487, 278.175 64.500, 279 64.500 C 279.825 64.500, 280.644 63.487, 280.820 62.250 C 281.065 60.518, 280.646 60, 279 60 C 277.354 60, 276.935 60.518, 277.180 62.250" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 422 83" version="1.1" fill="white">
|
||||
<path d="M 212.513 19.979 C 212.125 20.607, 212.346 22.421, 213.004 24.010 C 213.662 25.598, 214.016 27.453, 213.790 28.130 C 213.469 29.094, 195.867 29.330, 132.940 29.218 C 54.829 29.078, 43.363 28.687, 33.844 25.835 C 31.812 25.226, 29.524 24.969, 28.759 25.262 C 26.881 25.983, 24.529 36.121, 24.529 43.500 C 24.529 50.540, 26.852 61.006, 28.560 61.662 C 29.216 61.913, 32.396 61.455, 35.626 60.643 C 46.063 58.020, 52.664 57.822, 133.036 57.713 L 212.215 57.606 213.474 60.600 C 215.038 64.319, 218.989 67, 222.906 67 C 226.353 67, 227.675 65.518, 226.014 63.517 C 225.377 62.749, 225.001 60.856, 225.178 59.310 C 225.485 56.633, 225.807 56.468, 232 55.829 C 235.575 55.460, 264.150 54.687, 295.500 54.111 C 352.099 53.072, 365.913 52.371, 388 49.422 C 402.395 47.500, 404.702 46.965, 402.876 45.972 C 400.885 44.889, 379.612 41.342, 364.500 39.572 C 346.382 37.450, 295.510 34.069, 264.500 32.924 C 250.200 32.397, 235.908 31.636, 232.740 31.233 C 227.484 30.564, 226.828 30.200, 225.240 27.071 C 222.503 21.677, 214.291 17.102, 212.513 19.979 M 250.667 47.667 C 249.400 48.933, 250.006 51.788, 251.678 52.430 C 253.845 53.261, 256.261 50.845, 255.430 48.678 C 254.788 47.006, 251.933 46.400, 250.667 47.667" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 452 112" version="1.1" fill="white">
|
||||
<path d="M 199.177 21.194 C 195.948 28.231, 191.941 32.575, 189.533 31.651 C 188.671 31.320, 186.443 31.775, 184.582 32.662 C 181.468 34.147, 178.868 34.144, 151.850 32.625 C 118.304 30.739, 105.065 30.637, 86 32.122 C 78.575 32.700, 63.973 33.319, 53.551 33.499 C 31.859 33.872, 32.022 33.804, 31.968 42.441 C 31.937 47.446, 30.347 51, 28.140 51 C 27.513 51, 27 52.350, 27 54 C 27 55.650, 27.513 57, 28.140 57 C 30.689 57, 31.937 60.642, 31.968 68.168 C 32.006 77.402, 32.420 78.649, 36.073 80.538 C 40.087 82.613, 43.677 80.823, 44.991 76.091 C 45.540 74.116, 45.991 71.976, 45.994 71.336 C 45.997 70.695, 48.257 68.783, 51.015 67.086 C 55.106 64.568, 57.087 64.004, 61.765 64.020 C 68.967 64.045, 79.035 65.445, 90 67.947 C 103.549 71.039, 122.630 73.270, 131.529 72.803 C 138.404 72.442, 140.913 71.781, 147.588 68.569 C 157.715 63.696, 161.212 62.902, 167.389 64.074 C 172.773 65.095, 174.510 66.403, 182.150 75.193 L 187.099 80.886 184.994 85.011 C 183.837 87.280, 182.623 91.389, 182.297 94.143 L 181.704 99.149 184.997 98.824 C 188.013 98.527, 188.393 98.098, 189.494 93.739 C 190.206 90.918, 192.592 86.537, 195.348 82.987 C 198.975 78.317, 200.003 76.171, 200.015 73.249 C 200.043 66.511, 201.118 66.056, 208.233 69.778 C 213.219 72.386, 215.665 73.051, 220.200 73.028 C 224.450 73.007, 226.137 72.578, 226.829 71.341 C 227.603 69.958, 230.656 69.517, 245.129 68.699 C 271.966 67.182, 300.249 69.515, 322.134 75.052 C 341.234 79.884, 365.914 80.092, 383.477 75.570 C 389.027 74.140, 397.899 70.805, 403.477 68.052 C 413.080 63.311, 427.907 52.872, 428.760 50.250 C 429.067 49.306, 426.722 49, 419.194 49 C 400.003 49, 377.280 42.358, 363.719 32.784 C 361.165 30.980, 360.271 30.908, 352.719 31.893 C 336.309 34.035, 324.891 34.436, 323.904 32.904 C 323.164 31.755, 322.846 31.739, 322.150 32.817 C 321.470 33.870, 320.553 33.715, 317.574 32.042 C 313.869 29.961, 313.853 29.960, 314.492 31.975 C 315.213 34.245, 312.605 34.940, 311.583 32.750 C 311.124 31.766, 310.877 31.762, 310.423 32.731 C 309.992 33.650, 308.850 33.454, 305.923 31.961 C 302.089 30.005, 300.802 30.402, 303.200 32.800 C 304.133 33.733, 304.041 34, 302.783 34 C 301.894 34, 300.938 33.438, 300.659 32.750 C 300.260 31.766, 299.956 31.778, 299.231 32.808 C 298.497 33.851, 297.546 33.665, 294.534 31.887 L 290.757 29.659 291.446 31.830 C 291.942 33.391, 291.719 34, 290.651 34 C 289.834 34, 288.938 33.438, 288.659 32.750 C 288.263 31.772, 287.964 31.765, 287.287 32.717 C 286.630 33.643, 285.646 33.463, 283.187 31.967 C 279.129 29.500, 278.665 29.505, 280 32 C 281.381 34.581, 279.312 34.780, 277.392 32.250 C 276.129 30.586, 276.062 30.587, 276.032 32.270 C 276.002 33.914, 275.708 33.892, 271.912 31.955 L 267.824 29.869 268.479 31.935 C 269.296 34.507, 267.263 34.715, 265.392 32.250 C 264.137 30.596, 264.062 30.595, 264.032 32.235 C 264.003 33.833, 263.743 33.814, 260.750 31.989 C 257.136 29.786, 254.949 29.349, 256.800 31.200 C 257.460 31.860, 258 32.760, 258 33.200 C 258 34.695, 255.105 34.008, 253.992 32.250 C 253.209 31.014, 252.731 30.863, 252.364 31.735 C 251.962 32.688, 251.186 32.631, 248.971 31.485 C 245.359 29.617, 243.060 29.460, 244.800 31.200 C 246.912 33.312, 246.084 34.285, 243.575 32.641 C 241.962 31.584, 241.026 31.422, 240.781 32.158 C 240.532 32.903, 239.382 32.732, 237.256 31.632 C 233.330 29.602, 232.394 29.564, 234 31.500 C 235.098 32.823, 233.232 33, 218.151 33 L 201.056 33 203.501 28.402 C 205.779 24.117, 207.714 17.328, 206.870 16.578 C 206.667 16.397, 205.503 15.942, 204.285 15.568 C 202.327 14.966, 201.736 15.618, 199.177 21.194" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 449 118" version="1.1" fill="white">
|
||||
<path d="M 199.418 16.969 C 198.274 17.432, 196.136 19.238, 194.668 20.982 C 192.184 23.935, 192 24.813, 192 33.721 L 192 43.289 185.750 42.684 C 182.313 42.351, 173.425 41.307, 166 40.364 C 144.037 37.573, 98.442 37.835, 70.958 40.911 C 59.110 42.237, 48.145 43.002, 46.592 42.612 C 45.038 42.222, 42.171 40.125, 40.219 37.952 C 38.268 35.778, 36.092 34, 35.383 34 C 33.735 34, 32.013 40.169, 32.006 46.095 C 32.002 49.415, 31.445 51.192, 30 52.500 C 27.184 55.048, 27.184 63.747, 30 66.770 C 31.353 68.222, 32.002 70.304, 32.006 73.208 C 32.013 79.170, 33.779 85, 35.578 85 C 36.394 85, 38.395 83.480, 40.026 81.623 C 45.193 75.738, 46.708 75.523, 66.720 77.843 C 94.130 81.021, 96.551 81.169, 120.795 81.165 C 143.545 81.160, 159.442 80.143, 178.924 77.444 C 184.657 76.650, 189.894 76, 190.561 76 C 191.406 76, 191.892 79.101, 192.165 86.250 C 192.617 98.059, 194.097 101.562, 200.046 104.906 C 204.514 107.417, 207.287 107.564, 209.095 105.385 C 210.247 103.997, 210.089 103.514, 207.968 101.937 C 202.565 97.922, 202 97.049, 202.022 92.750 C 202.087 80.079, 216.004 69.206, 227.359 72.953 C 231.393 74.285, 237.643 80.730, 238.601 84.545 L 239.252 87.141 291.376 86.728 C 346.688 86.290, 354.205 85.737, 370.500 80.905 C 378.970 78.394, 390.523 72.752, 399.134 66.923 C 406.033 62.252, 425.857 43.524, 424.907 42.574 C 424.587 42.254, 415.364 43.198, 404.412 44.673 C 387 47.017, 381.298 47.345, 359 47.284 C 344.975 47.246, 324.050 46.494, 312.500 45.614 C 269.163 42.310, 262.803 42.017, 234.250 42.009 C 205.479 42, 205 41.967, 205 39.960 C 205 38.838, 204.100 36.156, 203 34 C 199.925 27.973, 200.321 25.182, 204.500 23.436 C 206.648 22.538, 208 21.283, 208 20.187 C 208 16.467, 204.190 15.039, 199.418 16.969" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 437 138" version="1.1" fill="white">
|
||||
<path d="M 187.124 29.970 C 184.167 30.977, 179.667 32.049, 177.124 32.353 C 174.581 32.657, 171.375 33.169, 170 33.490 C 168.625 33.812, 162.325 34.319, 156 34.617 C 144.578 35.155, 142.424 34.932, 116.023 30.473 C 104.259 28.486, 94.544 29.541, 79.023 34.490 C 61.226 40.165, 53.410 42.056, 44.523 42.835 C 36.988 43.495, 35.787 43.874, 34.343 46.042 C 33.442 47.394, 30.137 50.995, 26.998 54.045 C 17.752 63.026, 17.720 61.417, 27.543 81.387 C 32.263 90.983, 36.855 99.114, 37.749 99.457 C 38.877 99.890, 41.527 97.964, 46.436 93.144 C 54.857 84.875, 57.979 83.166, 66.548 82.134 C 70.457 81.664, 74.116 80.551, 75.765 79.332 C 84.415 72.937, 93.763 71.744, 102.201 75.958 L 106.872 78.291 112.014 74.991 C 119.241 70.354, 125.372 69.856, 131.444 73.414 C 135.200 75.616, 136.540 77.271, 139.217 83.017 C 143.531 92.275, 145.807 93.100, 148.600 86.415 C 150.558 81.728, 155.876 75.950, 159.702 74.351 C 167.328 71.165, 175.773 74.161, 181.454 82.069 C 183.404 84.784, 185 87.693, 185 88.534 C 185 91.628, 182.167 96.635, 177.475 101.836 C 171.877 108.039, 172.149 108.535, 181.699 109.558 C 191.435 110.601, 190.917 111.153, 195.970 94.353 C 197.649 88.772, 199.580 84.018, 200.261 83.789 C 202.496 83.039, 286.147 90.818, 289.130 92.054 C 292.359 93.391, 297 98.391, 297 100.531 C 297 102.186, 300.186 102.738, 313.437 103.381 C 332.282 104.294, 359.483 101.652, 379.909 96.925 L 389.318 94.748 404.659 80.238 C 413.097 72.258, 420 65.450, 420 65.109 C 420 64.769, 411.788 62.740, 401.750 60.601 C 378.449 55.635, 377.567 55.491, 378.361 56.775 C 379.301 58.296, 378.020 61, 376.359 61 C 375.575 61, 374.003 59.425, 372.867 57.500 C 370.817 54.024, 368.532 52.616, 369.643 55.513 C 369.963 56.345, 369.676 57.685, 369.007 58.492 C 367.316 60.529, 364.494 58.855, 363.157 55.021 C 361.899 51.412, 360 51.034, 360 54.393 C 360 59.475, 354.751 58.612, 352.310 53.129 L 350.694 49.500 350.087 52.500 C 349.199 56.893, 345.998 56.519, 343.668 51.750 C 341.795 47.917, 339.390 46.501, 340.455 49.859 C 341.218 52.264, 338.698 54.356, 336.050 53.516 C 334.925 53.159, 333.734 51.790, 333.404 50.474 C 333.074 49.159, 332.108 47.505, 331.258 46.799 C 329.934 45.700, 329.801 45.802, 330.333 47.508 C 330.675 48.604, 330.573 50.107, 330.107 50.848 C 328.635 53.192, 325.574 51.619, 323.564 47.487 L 321.624 43.500 321.052 46.500 C 320.220 50.864, 316.072 50.730, 314 46.272 C 312.231 42.464, 311.260 42.152, 310.820 45.250 C 310.616 46.682, 309.696 47.614, 308.288 47.815 C 306.571 48.059, 305.671 47.276, 304.264 44.315 C 302.055 39.665, 300.283 39.566, 291 43.575 C 282.535 47.230, 269.295 47.934, 253.246 45.580 C 239.735 43.599, 211.609 35.826, 207.824 33.028 C 206.315 31.913, 204.218 31, 203.163 31 C 202.108 31, 199.629 30.325, 197.654 29.500 C 193.364 27.708, 193.833 27.687, 187.124 29.970 M 183.153 101.247 C 181.582 102.818, 181.705 104.511, 183.500 106 C 184.697 106.993, 185.303 106.993, 186.500 106 C 188.532 104.314, 188.388 102.278, 186.153 101.082 C 184.883 100.402, 183.947 100.453, 183.153 101.247" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 106" version="1.1" fill="white">
|
||||
<path d="M 211 18 C 209.900 19.100, 209 20.888, 209 21.974 C 209 23.157, 207.796 24.571, 206 25.500 C 204.350 26.353, 203 27.715, 203 28.526 C 203 29.971, 201.853 30.424, 199.138 30.049 C 198.390 29.946, 196.715 30.858, 195.418 32.077 C 193.439 33.936, 192.807 34.084, 191.495 32.996 C 190.214 31.933, 189.493 31.933, 187.500 33 C 185.503 34.069, 184.788 34.069, 183.500 33 C 182.212 31.931, 181.497 31.931, 179.500 33 C 177.478 34.082, 176.783 34.065, 175.377 32.901 C 173.984 31.746, 165.921 31.500, 129.549 31.500 C 89.048 31.500, 85.189 31.645, 82.717 33.266 C 80.524 34.703, 79.664 34.807, 78.093 33.826 C 76.596 32.891, 75.839 32.889, 74.724 33.814 C 73.888 34.508, 72.021 34.754, 70.264 34.403 C 68.463 34.043, 66.960 34.255, 66.543 34.930 C 66.115 35.623, 64.561 35.821, 62.537 35.441 C 60.661 35.089, 58.955 35.264, 58.596 35.844 C 58.248 36.408, 56.454 36.623, 54.609 36.324 C 52.646 36.005, 50.969 36.241, 50.566 36.892 C 50.070 37.696, 49.318 37.706, 47.861 36.926 C 46.752 36.332, 45.091 36.174, 44.172 36.575 C 43.252 36.975, 39.849 37.348, 36.609 37.402 C 31.950 37.479, 30.487 37.896, 29.609 39.395 C 28.999 40.437, 27.215 42.462, 25.644 43.895 C 24.073 45.328, 21.457 48.176, 19.830 50.225 L 16.872 53.949 21.573 58.975 C 24.158 61.739, 26.887 64, 27.637 64 C 28.387 64, 29 64.586, 29 65.303 C 29 67.590, 47.896 89.714, 50.918 90.966 C 54.740 92.549, 59.369 90.250, 60.836 86.040 C 61.549 83.996, 62.367 83.203, 63.367 83.587 C 64.180 83.899, 65.803 83.197, 66.974 82.026 C 68.197 80.803, 69.825 80.127, 70.801 80.436 C 71.736 80.732, 73.687 80.358, 75.138 79.604 C 76.589 78.851, 78.954 78.460, 80.394 78.735 C 81.834 79.010, 83.619 78.731, 84.363 78.114 C 85.137 77.472, 87.055 77.261, 88.854 77.621 C 90.775 78.005, 92.579 77.765, 93.498 77.002 C 94.677 76.023, 95.314 76.016, 96.461 76.968 C 97.607 77.918, 105.980 77.893, 135.211 76.850 C 189.037 74.930, 196.568 75.014, 201.500 77.588 C 203.700 78.737, 207.001 81.662, 208.835 84.088 C 214.947 92.174, 219.620 91.486, 222.261 82.112 L 223.561 77.500 232.001 77.206 C 237.893 77.001, 240.957 76.444, 242.155 75.359 C 243.618 74.035, 249.124 73.742, 279.537 73.365 C 306.300 73.033, 315.562 73.221, 316.643 74.119 C 317.738 75.027, 326.648 75.147, 353.654 74.616 L 389.223 73.916 410.112 56.766 C 421.600 47.334, 431 39.321, 431 38.959 C 431 38.188, 410.263 34.465, 394.500 32.406 C 380.005 30.512, 308.797 28.802, 260.727 29.193 L 222.955 29.500 221.983 26 C 221.448 24.075, 221.009 22.022, 221.006 21.439 C 220.996 19.593, 217.003 16, 214.961 16 C 213.882 16, 212.100 16.900, 211 18 M 27.970 51.536 C 26.154 53.725, 27.908 56.500, 31.109 56.500 C 33.099 56.500, 33.500 55.997, 33.500 53.500 C 33.500 51.220, 32.999 50.428, 31.412 50.202 C 30.264 50.038, 28.715 50.638, 27.970 51.536" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 367 156" version="1.1" fill="white">
|
||||
<path d="M 196.762 26.635 C 182.078 34.178, 174.170 35.713, 143.500 36.976 C 116.228 38.099, 112.297 38.780, 88.548 46.495 C 51.093 58.661, 29.467 73.661, 26.030 89.857 C 23.810 100.320, 26.223 109.059, 33.162 115.689 C 37.470 119.804, 40.791 121, 47.916 121 C 62.178 121, 69.953 114.244, 75.536 97 C 79.187 85.726, 86.376 82.140, 107 81.304 C 119.466 80.800, 119.522 80.786, 127.759 76.389 C 139.964 69.873, 149.366 66.989, 158.176 67.056 C 169.111 67.141, 171.790 68.402, 176.105 75.500 L 179.753 81.500 184.127 81.179 C 189.411 80.792, 197.099 77.401, 202.416 73.113 C 204.570 71.376, 207.270 69.783, 208.416 69.574 C 209.562 69.364, 212.300 68.796, 214.500 68.311 C 218.909 67.339, 231.122 69.149, 246 72.979 C 274.170 80.231, 303.291 96.896, 333.715 123.176 C 339.333 128.029, 344.143 132, 344.402 132 C 345.219 132, 343.865 124.837, 341.282 115.500 C 338.265 104.596, 331.308 89.938, 325.452 82.148 C 320.368 75.384, 306.984 62.358, 298.500 55.915 C 289.731 49.256, 263.295 34, 260.525 34 C 260.236 34, 260 34.900, 260 36 C 260 38.952, 258.579 38.447, 255.490 34.399 C 253.480 31.763, 252.527 31.147, 251.938 32.101 C 251.495 32.818, 251.354 33.763, 251.625 34.202 C 251.896 34.641, 251.699 35, 251.188 35 C 250.676 35, 249.187 33.428, 247.879 31.507 C 245.183 27.548, 244 27.088, 244 30 C 244 32.897, 242.621 32.471, 239.134 28.500 C 235.604 24.479, 235 24.251, 235 26.941 C 235 30.226, 233.071 30.288, 231.241 27.062 C 229.332 23.699, 228.788 23.438, 221.566 22.416 L 216.633 21.718 218.845 24.530 C 222.674 29.398, 219.715 29.785, 214.169 25.142 C 211.449 22.864, 208.835 21.027, 208.361 21.059 C 207.888 21.092, 202.668 23.601, 196.762 26.635 M 227.223 37.557 C 223.476 40.181, 225.220 47, 229.637 47 C 234.667 47, 236.919 41.047, 233.171 37.655 C 230.905 35.604, 230.030 35.590, 227.223 37.557 M 240.632 43.115 C 237.867 47.062, 241.907 51.154, 245.845 48.396 C 248.481 46.550, 248.578 44.833, 246.171 42.655 C 243.744 40.458, 242.416 40.568, 240.632 43.115 M 252.309 48.636 C 251.482 50.792, 253.259 53.500, 255.500 53.500 C 256.480 53.500, 257.740 52.774, 258.300 51.886 C 259.828 49.464, 258.416 47, 255.500 47 C 254.050 47, 252.665 47.710, 252.309 48.636 M 41.218 81.663 C 36.431 84.023, 33.712 88.425, 33.196 94.653 C 32.658 101.137, 34.129 105.028, 38.602 108.955 C 44.804 114.401, 53.553 114.205, 59.890 108.480 C 71.344 98.133, 64.285 79.942, 48.849 80.023 C 46.457 80.035, 43.023 80.773, 41.218 81.663" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 9.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 599 222" version="1.1" fill="white">
|
||||
<path d="M 245.200 24.200 C 244.540 24.860, 244 26.345, 244 27.500 C 244 28.655, 243.556 30.044, 243.013 30.587 C 242.363 31.237, 243.070 32.842, 245.081 35.283 C 248.320 39.212, 248.356 41.686, 245.227 45.250 C 243.948 46.706, 241.828 47.017, 232.595 47.100 C 217.803 47.233, 216.580 47.619, 216.190 52.289 C 215.890 55.877, 215.751 56, 212.011 56 C 209.884 56, 207.468 56.675, 206.643 57.500 C 205.407 58.736, 201.524 59, 184.571 59 C 166.952 59, 164 58.785, 164 57.500 C 164 56.182, 156.093 56.003, 98.750 56.022 C 37.262 56.043, 33.263 56.151, 29.398 57.907 C 26.159 59.378, 25.160 60.451, 24.648 63.010 C 23.536 68.572, 23.890 148.925, 25.036 151.067 C 25.941 152.758, 31.841 156, 34.014 156 C 34.437 156, 35.056 154.988, 35.389 153.750 C 36.140 150.955, 83.134 119.902, 83.762 121.785 C 83.984 122.453, 84.627 123, 85.190 123 C 85.753 123, 91.781 119.175, 98.586 114.500 L 110.958 106 123.479 106 C 133.942 106, 136 105.753, 136 104.500 C 136 103.388, 137.168 103, 140.515 103 C 144.551 103, 145.231 102.656, 146.933 99.750 C 147.980 97.963, 151.147 92.849, 153.971 88.388 L 159.106 80.275 173.303 79.602 C 181.111 79.232, 190.945 78.424, 195.156 77.806 C 201.831 76.827, 203.272 76.901, 206.406 78.388 L 210 80.094 210 88.306 C 210 97.704, 210.485 98.350, 218.427 99.541 C 222.745 100.189, 223.325 100.616, 225.237 104.550 L 227.326 108.851 208.913 142.048 C 198.786 160.306, 190.500 175.526, 190.500 175.872 C 190.500 177.075, 228.703 185.630, 229.687 184.647 C 230.120 184.213, 234.860 172.907, 245.954 145.842 C 250.238 135.389, 251.609 132.997, 253.821 132.115 C 255.338 131.510, 265.682 130.928, 277.661 130.773 L 298.822 130.500 299.400 134 C 299.718 135.925, 299.983 139.117, 299.989 141.094 C 300.006 146.657, 305.484 172.203, 309.440 185.169 C 311.398 191.587, 313 197.549, 313 198.419 C 313 199.288, 313.337 199.996, 313.750 199.992 C 314.940 199.978, 357.176 188.157, 357.620 187.714 C 357.839 187.494, 356.250 181.731, 354.088 174.907 C 347.449 153.958, 342.435 122.352, 345.584 121.307 C 346.109 121.133, 346.374 113.224, 346.205 102.793 C 345.946 86.828, 346.131 84.173, 347.703 81.254 C 349.276 78.332, 349.312 77.808, 347.998 76.977 C 347.174 76.457, 346.988 76.024, 347.584 76.015 C 348.180 76.007, 350.372 78.475, 352.456 81.500 C 356.073 86.752, 356.441 87, 360.622 87 C 363.030 87, 365 87.450, 365 88 C 365 89.608, 494.975 89.358, 495.088 87.750 C 495.647 79.838, 496.028 77.125, 496.876 75 C 497.424 73.625, 497.902 73.063, 497.937 73.750 C 498.012 75.237, 503.604 75.450, 504.500 74 C 504.840 73.450, 508.916 73, 513.559 73 C 518.520 73, 522 73.412, 522 74 C 522 74.550, 523.350 75, 525 75 C 526.650 75, 528 74.580, 528 74.066 C 528 73.495, 537.939 73.362, 553.500 73.722 L 579 74.313 578.985 67.906 C 578.976 64.383, 578.570 60.870, 578.083 60.100 C 577.346 58.936, 574.008 58.825, 558.348 59.444 C 547.982 59.854, 537.025 60.259, 534 60.344 L 528.500 60.500 528.222 45.519 L 527.944 30.537 524.776 27.269 C 523.033 25.471, 521.220 24, 520.745 24 C 518.433 24, 511.181 31.412, 504.941 40.151 C 499.087 48.351, 498 50.509, 498 53.937 C 498 58.439, 496.083 59.615, 495.858 55.250 C 495.706 52.290, 495.445 49.253, 495.171 47.250 C 494.951 45.643, 366 45.393, 366 47 C 366 47.550, 363.769 48, 361.042 48 C 356.186 48, 356.027 48.098, 353.292 52.750 L 350.500 57.500 350.198 52.250 L 349.895 47 309.527 47 L 269.159 47 268.500 44 C 267.906 41.294, 267.460 41, 263.956 41 C 261.155 41, 259.785 41.533, 259.048 42.910 C 258.436 44.054, 257.320 44.633, 256.263 44.355 C 254.747 43.955, 254.493 42.619, 254.454 34.831 C 254.414 27.125, 254.124 25.564, 252.513 24.386 C 250.182 22.681, 246.804 22.596, 245.200 24.200 M 506.101 43.575 C 499.586 53.722, 499.066 53, 512.893 53 L 525 53 525 48.906 C 525 45.684, 524.584 44.704, 523.043 44.301 C 521.934 44.011, 520.600 42.317, 519.965 40.395 C 518.925 37.242, 518.542 37, 514.584 37 C 510.429 37, 510.217 37.164, 506.101 43.575 M 508.750 60.732 C 511.087 60.943, 514.913 60.943, 517.250 60.732 C 519.587 60.522, 517.675 60.349, 513 60.349 C 508.325 60.349, 506.413 60.522, 508.750 60.732 M 275 107.882 C 271.989 108.414, 271.374 109.010, 270.598 112.149 C 269.947 114.786, 270.117 117.074, 271.211 120.399 C 272.980 125.772, 272.237 126.365, 269.514 121.754 C 268.316 119.727, 267.578 116.564, 267.548 113.330 L 267.500 108.152 264.522 108.747 C 258.089 110.031, 256.545 116.024, 260.500 124.358 L 262.228 128 275.754 128 C 291.949 128, 291.921 128.019, 291.968 117.199 L 292 109.898 288.532 108.449 C 284.969 106.960, 281.128 106.799, 275 107.882" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 5.8 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 318 222" version="1.1" fill="white">
|
||||
<path d="M 75.376 28.097 C 69.955 29.650, 69.746 30.448, 68.835 53.091 C 68.242 67.803, 67.541 75.162, 66.494 77.668 C 64.331 82.846, 64.633 85.566, 67.635 87.927 C 69.480 89.379, 71.727 90, 75.135 90 L 80 90 80 82.500 C 80 78.375, 80.338 75.014, 80.750 75.032 C 81.162 75.049, 82.374 75.724, 83.441 76.532 C 84.886 77.624, 88.314 78, 96.846 78 L 108.310 78 112.155 82.042 C 117.570 87.734, 117.612 91.820, 112.416 107.251 C 109.857 114.849, 109 119.099, 109 124.196 L 109 131 118.136 131 L 127.273 131 126.538 163.500 L 125.804 196 137.402 196 L 149 196 149 163.500 C 149 142.500, 149.354 131, 150 131 C 150.630 131, 151 124.275, 151 112.826 L 151 94.651 153.495 96.995 C 155.645 99.015, 157.478 99.451, 166.745 100.150 C 179.814 101.134, 182.225 100.710, 185.473 96.850 C 187.502 94.439, 188 92.768, 188 88.375 C 188 83.660, 188.380 82.570, 190.750 80.484 C 193.450 78.107, 193.845 78.063, 212.500 78.033 L 231.500 78.002 231.444 83.603 C 231.402 87.696, 230.949 89.449, 229.759 90.115 C 228.563 90.785, 228.274 91.916, 228.674 94.376 C 228.973 96.218, 228.787 98.575, 228.260 99.613 C 227.686 100.744, 227.555 108.308, 227.933 118.500 C 228.279 127.850, 228.228 140.225, 227.820 146 C 226.983 157.834, 227.265 159.632, 230.099 160.531 C 234.446 161.911, 234.569 160.926, 234.473 125.309 C 234.422 106.714, 234.683 91.050, 235.053 90.500 C 236.622 88.161, 236.910 80.260, 235.494 78.389 C 233.527 75.791, 233.531 67.394, 235.500 66.638 C 236.325 66.322, 236.999 65.486, 236.999 64.781 C 236.998 63.973, 238.383 63.487, 240.749 63.465 C 242.812 63.446, 248.213 63.334, 252.750 63.215 L 261 63 261 57 L 261 51 252.750 50.785 C 248.213 50.666, 242.812 50.554, 240.749 50.535 C 237.915 50.508, 236.998 50.089, 236.999 48.820 C 236.999 47.838, 236.065 47.006, 234.750 46.820 C 232.618 46.517, 232.500 46.053, 232.500 38 C 232.500 30.177, 232.336 29.477, 230.438 29.205 C 226.786 28.683, 219.196 32.590, 218.829 35.181 C 218.526 37.316, 217.945 37.526, 211.500 37.833 C 207.650 38.015, 194.984 37.855, 183.354 37.475 L 162.207 36.786 161.629 33.893 C 161.093 31.214, 160.716 31, 156.525 31 C 152.164 31, 152 31.109, 152 34 L 152 37 138 37 C 126.924 37, 124 36.718, 124 35.652 C 124 34.648, 121.331 34.141, 113.543 33.664 C 104.987 33.141, 95.163 31.357, 80 27.575 C 79.175 27.369, 77.094 27.604, 75.376 28.097 M 75.136 33.336 C 74.302 34.341, 74.029 39.366, 74.223 50.135 L 74.500 65.500 77.250 65.816 L 80 66.133 80.150 50.566 C 80.233 42.005, 80.345 34.438, 80.400 33.750 C 80.544 31.953, 76.544 31.639, 75.136 33.336 M 83 34 C 83 34.550, 84.688 34.955, 86.750 34.900 C 90.097 34.811, 90.231 34.715, 88 34 C 84.425 32.855, 83 32.855, 83 34 M 153 85.845 C 153 96.745, 153.429 97.060, 169.193 97.729 C 180.849 98.223, 181.601 98.138, 183.419 96.110 C 184.633 94.756, 185.503 91.974, 185.788 88.539 C 186.202 83.545, 186.008 82.907, 183.369 80.586 C 180.745 78.279, 179.699 78.061, 171.134 78.032 L 161.767 78 162.237 84.250 C 162.495 87.688, 163.082 91.400, 163.541 92.500 C 164.308 94.340, 164.227 94.380, 162.532 93 C 160.035 90.966, 158 85.818, 158 81.532 C 158 78.431, 157.695 78, 155.500 78 C 153.046 78, 153 78.144, 153 85.845" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 445 222" version="1.1" fill="white">
|
||||
<path d="M 46.667 34.667 C 46.300 35.033, 46 38.234, 46 41.780 L 46 48.227 43 47.787 C 40.493 47.419, 39.996 47.688, 39.978 49.423 C 39.966 50.565, 39.066 53.462, 37.978 55.859 C 36.890 58.257, 36 61.426, 36 62.901 C 36 64.759, 34.617 66.940, 31.500 70 C 26.449 74.957, 26.159 75.929, 28.973 78.475 C 30.391 79.759, 31.819 80.086, 34.054 79.639 C 36.241 79.202, 38.692 79.725, 42.331 81.408 C 51.670 85.726, 105.330 103, 109.403 103 C 111.277 103, 112.800 104.122, 114.945 107.082 L 117.902 111.165 115.403 116.832 C 114.029 119.950, 108.876 129.151, 103.952 137.280 L 95 152.060 95 159.030 C 95 165.259, 95.206 166, 96.938 166 C 98.698 166, 98.469 166.973, 94.438 176.593 C 91.997 182.419, 90 187.829, 90 188.614 C 90 189.813, 93.247 189.998, 110.250 189.771 L 130.500 189.500 135.111 178.145 C 139.830 166.522, 140.906 165.042, 144.652 165.015 C 147.220 164.997, 149.208 160.325, 148.403 156.201 C 148.027 154.275, 149.640 149.481, 154.020 139.504 C 157.399 131.806, 160.632 124.943, 161.204 124.254 C 161.936 123.372, 165.926 123, 174.655 123 C 191.147 123, 192.824 122.276, 197.035 113.340 C 198.808 109.578, 201.892 104.900, 203.888 102.944 L 207.518 99.388 226.309 97.077 C 236.643 95.806, 245.223 94.931, 245.374 95.133 C 245.525 95.335, 246.131 100.591, 246.720 106.812 C 247.309 113.034, 247.977 118.311, 248.204 118.538 C 248.431 118.765, 251.513 118.484, 255.053 117.914 C 259.299 117.230, 261.791 116.303, 262.378 115.189 C 262.867 114.260, 265.648 111.250, 268.559 108.500 C 276.157 101.321, 288.130 97.495, 307.534 96.047 C 315.252 95.471, 324.091 95, 327.177 95 C 333.764 95, 334 94.668, 334 85.418 L 334 79 337.750 78.968 C 339.813 78.951, 342.374 78.276, 343.441 77.468 C 344.945 76.330, 348.722 76, 360.223 76 C 372.491 76, 375.163 75.740, 375.638 74.500 C 376.116 73.254, 378.890 73, 392 73 C 409.385 73, 409 73.147, 409 66.500 C 409 59.852, 409.387 60, 391.976 60 C 383.281 60, 376.017 59.611, 375.833 59.135 C 375.650 58.659, 368.525 57.961, 360 57.583 C 349.134 57.102, 343.838 56.464, 342.285 55.448 C 341.067 54.652, 338.530 54, 336.646 54 C 333.509 54, 333.166 53.700, 332.549 50.411 C 331.172 43.070, 330.179 42, 324.744 42 C 321.391 42, 318.897 42.649, 316.964 44.026 C 315.399 45.140, 310.645 46.940, 306.400 48.026 C 298.987 49.922, 295.006 50, 206.200 50 C 125.881 50, 113.575 49.806, 112.610 48.526 C 111.987 47.698, 107.116 46.191, 101.500 45.090 C 96 44.011, 85.902 41.074, 79.059 38.564 C 67.494 34.321, 65.941 34, 56.976 34 C 51.673 34, 47.033 34.300, 46.667 34.667 M 53 42.500 C 53 43.962, 53.574 45, 54.383 45 C 55.144 45, 55.982 43.875, 56.245 42.500 C 56.616 40.558, 56.308 40, 54.861 40 C 53.543 40, 53 40.729, 53 42.500 M 61.080 42.377 C 63.223 44.842, 63.878 44.995, 71.930 44.916 L 80.500 44.831 76 42.730 C 73.525 41.574, 68.642 40.432, 65.150 40.191 L 58.800 39.754 61.080 42.377 M 281 59 C 281 59.617, 286.167 60, 294.500 60 C 302.833 60, 308 59.617, 308 59 C 308 58.383, 302.833 58, 294.500 58 C 286.167 58, 281 58.383, 281 59 M 310 59 C 310 59.550, 311.377 60, 313.059 60 C 314.844 60, 315.861 59.583, 315.500 59 C 315.160 58.450, 313.784 58, 312.441 58 C 311.098 58, 310 58.450, 310 59 M 32.118 71.368 C 28.640 74.967, 28.447 77.467, 31.555 78.659 C 34.247 79.693, 36.162 76.736, 35.815 72.083 L 35.500 67.867 32.118 71.368 M 170.118 106.773 C 165.652 111.021, 164.218 114.988, 165.852 118.574 C 166.879 120.828, 167.473 120.996, 174.229 120.937 C 179.470 120.891, 180.888 120.627, 179.308 119.990 C 174.505 118.056, 172.710 110.975, 175.445 104.750 C 176.724 101.838, 174.363 102.735, 170.118 106.773 M 179.667 104.816 C 177.356 107.369, 176.484 112.667, 177.929 115.368 C 178.591 116.605, 180.661 118.440, 182.528 119.445 C 185.458 121.023, 186.347 121.099, 189 120 C 192.882 118.392, 194 116.295, 194 110.622 C 194 107.097, 193.515 105.774, 191.777 104.557 C 188.673 102.382, 181.735 102.531, 179.667 104.816" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.9 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 130" version="1.1" fill="white">
|
||||
<path d="M 70.289 25.840 C 69.305 26.852, 67.713 27.963, 66.750 28.309 C 65.787 28.654, 65 29.618, 65 30.449 C 65 31.281, 62.422 35.998, 59.270 40.932 C 54.295 48.722, 52.962 50.125, 49.152 51.580 L 44.764 53.255 32.845 77.818 C 26.290 91.328, 21.060 103.074, 21.223 103.921 C 21.497 105.342, 39.114 114.897, 41.592 114.968 C 42.193 114.986, 48.211 103.637, 54.965 89.750 L 67.246 64.500 66.079 59.938 C 65.010 55.760, 65.168 54.665, 67.961 46.938 C 69.638 42.297, 71.683 37.306, 72.505 35.846 C 73.327 34.386, 74 32.222, 74 31.037 C 74 29.852, 74.450 29.160, 75 29.500 C 77.338 30.945, 75.990 38.983, 72 47.381 C 67.927 55.953, 67.235 59.857, 68.975 64.435 C 70.238 67.755, 74.355 67.930, 76.402 64.750 C 79.702 59.624, 82 50.111, 82 41.579 C 82 33.214, 81.020 29.185, 78.152 25.750 C 76.251 23.474, 72.548 23.516, 70.289 25.840" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 966 B |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 474 222" version="1.1" fill="white">
|
||||
<path d="M 301.406 30.519 C 301.040 31.975, 301.005 35.393, 301.327 38.114 L 301.913 43.060 249.206 42.532 C 161.808 41.656, 151.304 41.602, 130.626 41.915 C 109.131 42.241, 108.463 42.084, 109.535 36.963 C 109.997 34.751, 109.580 34.252, 106.283 33.071 C 104.202 32.327, 101.938 31.508, 101.250 31.252 C 100.563 30.996, 100 31.513, 100 32.401 C 100 33.746, 99.677 33.815, 98.074 32.814 C 94.748 30.737, 91.190 33.131, 90.813 37.700 L 90.500 41.500 76.039 42 L 61.577 42.500 59.387 49.500 L 57.197 56.500 52.848 56.357 C 50.457 56.278, 45.562 55.887, 41.971 55.487 C 32.695 54.456, 32.543 54.730, 32.323 72.902 C 32.181 84.601, 31.344 97.644, 30.520 101 C 30.453 101.275, 30.053 104.200, 29.632 107.500 C 29.211 110.800, 28.670 114.711, 28.429 116.191 C 28.110 118.154, 28.594 119.303, 30.219 120.441 C 32.617 122.120, 36.717 122.466, 38.772 121.162 C 39.471 120.718, 41.385 113.234, 43.025 104.531 C 46.756 84.735, 47.690 81.630, 50.772 78.786 L 53.248 76.500 52.498 79 C 52.085 80.375, 51.105 82.760, 50.322 84.300 C 48.038 88.788, 49.373 91, 54.367 91 C 56.695 91, 59.095 90.505, 59.701 89.899 C 60.502 89.098, 60.983 89.371, 61.468 90.899 C 61.835 92.055, 62.442 93.014, 62.817 93.032 C 63.193 93.049, 67.325 93.217, 72 93.405 C 86.786 93.998, 90.602 97.138, 89.735 108 C 89.371 112.571, 88.441 114.766, 84.232 121 C 78.896 128.901, 70.689 147.938, 71.200 151.231 C 71.408 152.575, 75.472 155.294, 84.433 160.087 L 97.367 167.004 99.588 164.917 C 100.810 163.770, 102.105 161.181, 102.467 159.165 C 102.829 157.149, 104.222 153.371, 105.562 150.768 C 106.903 148.166, 108.002 145.016, 108.005 143.768 C 108.008 142.521, 109.119 139.700, 110.474 137.500 C 111.829 135.300, 112.952 132.537, 112.969 131.361 C 112.986 130.184, 113.787 128.326, 114.750 127.231 C 116.340 125.422, 117.185 125.315, 124 126.058 C 133.522 127.097, 146.160 127.191, 147.625 126.235 C 148.243 125.831, 150.835 121.338, 153.385 116.250 L 158.020 107 161.940 107 L 165.860 107 164.930 110.243 C 163.763 114.315, 163.751 116, 164.892 116 C 165.382 116, 166.172 113.862, 166.646 111.250 C 167.493 106.592, 167.586 106.494, 171.505 106.205 C 175.476 105.912, 175.511 105.941, 177.294 110.963 C 184.293 130.677, 203.768 166.503, 218.210 186.230 L 225.240 195.833 232.870 189.813 C 237.067 186.503, 240.887 183.431, 241.360 182.987 C 241.833 182.543, 239.060 177.752, 235.198 172.340 C 231.336 166.928, 224.705 156.669, 220.463 149.542 C 209.312 130.808, 195.114 100.242, 196.513 97.980 C 196.789 97.533, 196.567 95.992, 196.021 94.555 C 195.474 93.118, 194.923 90.571, 194.795 88.895 C 194.667 87.219, 194.211 85.631, 193.781 85.365 C 192.226 84.403, 193.046 82, 194.930 82 C 196.171 82, 196.975 82.804, 197.180 84.250 L 197.500 86.500 253.887 86.758 C 294.700 86.945, 310.651 86.704, 311.637 85.886 C 312.387 85.264, 313 83.910, 313 82.878 C 313 81.061, 315.014 81, 374.961 81 L 436.923 81 438.077 76.750 C 439.216 72.557, 438.845 60.235, 437.474 56.750 C 436.829 55.110, 432.910 55, 374.893 55 L 313 55 313 50.404 C 313 47.877, 312.389 44.614, 311.642 43.154 C 310.894 41.694, 309.432 37.800, 308.392 34.500 C 306.905 29.784, 306.026 28.433, 304.285 28.185 C 302.599 27.945, 301.912 28.502, 301.406 30.519 M 56.015 77.691 C 56.024 78.136, 56.467 79.175, 57 80 C 57.835 81.293, 57.971 81.266, 57.985 79.809 C 57.993 78.879, 57.550 77.840, 57 77.500 C 56.450 77.160, 56.007 77.246, 56.015 77.691 M 120.073 109.309 C 119.590 110.579, 118.613 113.559, 117.903 115.930 C 115.940 122.481, 117.381 123.121, 133.322 122.777 L 146.186 122.500 148.532 116.731 C 152.886 106.022, 153.579 107, 141.635 107 C 129.468 107, 129.423 107.039, 130.487 116.760 L 131.114 122.500 129.126 120.224 C 127.956 118.885, 126.856 115.695, 126.453 112.474 C 125.838 107.546, 125.529 107, 123.360 107 C 121.763 107, 120.654 107.779, 120.073 109.309" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 431 222" version="1.1" fill="white">
|
||||
<path d="M 232.278 27.074 L 231.118 30.148 223.033 29.442 C 216.049 28.833, 214.679 28.980, 212.977 30.520 C 211.811 31.576, 211.342 32.752, 211.827 33.402 C 212.278 34.006, 212.456 38.155, 212.223 42.621 L 211.800 50.742 205.210 51.271 C 200.523 51.647, 198.249 52.307, 197.337 53.554 C 196.127 55.208, 191.763 55.276, 121.026 54.752 C 64.965 54.336, 45.812 54.487, 45.265 55.348 C 44.406 56.700, 43.982 60.519, 41.146 92.500 C 39.975 105.700, 38.561 120.072, 38.004 124.439 C 37.218 130.609, 37.271 132.554, 38.246 133.173 C 40.213 134.422, 46.654 134.134, 47.700 132.750 C 49.856 129.899, 61.389 87.414, 61.153 83.192 C 60.944 79.457, 61.350 78.475, 64.206 75.805 C 70.085 70.308, 73.423 68.272, 77.582 67.645 C 79.828 67.307, 109.078 67.007, 142.582 66.980 L 203.500 66.930 204 69.608 C 204.275 71.081, 205.175 72.638, 206 73.067 C 206.825 73.497, 218.236 74.531, 231.358 75.366 C 250.289 76.571, 255.580 77.215, 256.984 78.485 C 260.287 81.474, 260.079 86.144, 255.953 101.725 C 252.430 115.025, 252.038 117.723, 252.020 128.750 L 252 141 256.750 141 L 261.500 140.999 261.500 169.750 L 261.500 198.500 274.500 198.500 L 287.500 198.500 287.765 169.750 C 287.911 153.938, 288.412 141, 288.879 141 C 289.345 141, 289.963 133.238, 290.252 123.750 C 290.697 109.140, 291.149 105.352, 293.207 99 C 295.243 92.715, 295.950 91.563, 297.568 91.891 C 301.360 92.658, 317.313 93.138, 319.637 92.555 C 320.939 92.228, 325.095 89.045, 328.873 85.481 C 337.169 77.655, 340.474 76.599, 345.256 80.246 L 348.525 82.740 348.826 93.120 C 349.262 108.132, 353.367 139.491, 355.032 140.520 C 355.414 140.756, 361.188 139.992, 367.863 138.821 C 379.441 136.791, 380 136.582, 380 134.278 C 380 130.172, 373.241 101.068, 369.702 89.937 C 366.559 80.050, 366.439 79.175, 367.823 76.251 C 369.018 73.727, 370.241 72.902, 374.184 71.956 C 381.055 70.307, 384.068 71.740, 387.029 78.063 C 389.196 82.688, 391.162 84.165, 392.427 82.117 C 392.728 81.632, 392.149 78.819, 391.143 75.867 C 390.136 72.915, 389.046 68.814, 388.720 66.753 C 388.034 62.420, 388.490 62.187, 398.500 61.757 L 404.500 61.500 404.792 53.750 L 405.084 46 400.742 46 C 398.354 46, 395.841 45.441, 395.158 44.758 C 394.170 43.770, 393.737 43.807, 393.035 44.944 C 392.293 46.143, 391.894 46.157, 390.534 45.028 C 389.308 44.011, 388.634 43.966, 387.758 44.842 C 387.121 45.479, 385.227 45.948, 383.550 45.884 C 381.867 45.820, 381.284 45.563, 382.250 45.311 C 384.539 44.713, 384.520 42, 382.227 42 C 381.214 42, 379.615 40.440, 378.495 38.360 C 377.417 36.358, 374.727 33.546, 372.517 32.110 C 370.308 30.675, 368.350 29.163, 368.167 28.750 C 367.709 27.721, 365 27.799, 365 28.842 C 365 30.260, 356.770 32.295, 351.837 32.097 C 349.273 31.994, 346.908 32.340, 346.583 32.866 C 346.215 33.462, 344.802 33.385, 342.839 32.662 C 340.402 31.763, 339.593 31.775, 339.272 32.714 C 338.948 33.662, 338.435 33.664, 336.929 32.723 C 335.417 31.780, 334.567 31.789, 333 32.768 C 331.814 33.508, 331 33.606, 331 33.008 C 331 31.675, 327.299 31.707, 326.470 33.049 C 326.031 33.759, 325.340 33.697, 324.330 32.859 C 323.165 31.892, 322.417 31.883, 320.919 32.819 C 319.428 33.750, 318.572 33.750, 317.081 32.819 C 315.552 31.864, 314.808 31.913, 313.419 33.060 C 312.076 34.169, 311.578 34.212, 311.254 33.250 C 310.756 31.769, 307.380 31.577, 306.513 32.980 C 306.131 33.596, 305.184 33.507, 303.954 32.739 C 302.454 31.803, 301.565 31.791, 300.128 32.688 C 298.715 33.571, 297.974 33.574, 297.103 32.703 C 296.232 31.832, 295.467 31.852, 293.975 32.784 C 292.435 33.746, 291.578 33.753, 290.081 32.819 C 288.618 31.905, 287.829 31.897, 286.757 32.786 C 285.729 33.640, 285.055 33.655, 284.243 32.843 C 283.598 32.198, 282.375 32.062, 281.317 32.518 C 278.429 33.764, 277 33.894, 277 32.912 C 277 31.687, 273.276 31.744, 272.513 32.980 C 272.129 33.600, 271.221 33.531, 270.035 32.790 C 268.563 31.870, 267.789 31.928, 266.419 33.060 C 265.076 34.169, 264.578 34.212, 264.254 33.250 C 263.731 31.697, 260 31.585, 260 33.122 C 260 33.872, 259.475 33.809, 258.419 32.933 C 257.237 31.952, 256.394 31.898, 255.079 32.718 C 254.003 33.391, 252.774 33.470, 251.911 32.924 C 249.973 31.697, 245.626 31.774, 244.342 33.058 C 243.598 33.802, 242.027 32.616, 239.049 29.058 C 236.719 26.276, 234.504 24, 234.126 24 C 233.748 24, 232.916 25.383, 232.278 27.074 M 299.701 75.688 C 297.360 80.340, 296.955 84.491, 298.611 86.855 C 299.812 88.570, 301.132 89, 305.192 89 L 310.270 89 307.551 86.862 C 305.077 84.916, 304.863 84.220, 305.167 79.112 C 305.472 73.976, 305.314 73.474, 303.308 73.188 C 301.736 72.964, 300.715 73.672, 299.701 75.688 M 310.161 75.547 C 308.662 78.836, 308.704 79.909, 310.463 83.281 C 311.261 84.810, 311.660 86.723, 311.350 87.531 C 310.908 88.683, 311.717 89, 315.105 89 C 318.834 89, 320.010 88.425, 323.712 84.792 C 331.087 77.554, 328.816 73, 317.832 73 C 311.825 73, 311.231 73.197, 310.161 75.547" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 222" version="1.1" fill="white">
|
||||
<path d="M 261.082 48.771 C 259.251 49.427, 255.368 53.741, 253.451 57.250 C 252.625 58.763, 251.354 60, 250.628 60 C 249.901 60, 242.375 63.321, 233.903 67.379 C 208.579 79.511, 186.249 88, 179.662 88 C 176.926 88, 175.612 87.319, 173.746 84.934 L 171.346 81.868 106.541 87.950 C 38.882 94.299, 36.577 94.664, 33.396 99.518 C 30.880 103.358, 29.988 116.962, 31.016 135.801 C 32.922 170.689, 35.057 175.765, 46.500 172.615 C 49.250 171.857, 76.250 161.446, 106.500 149.479 C 136.750 137.511, 162.347 127.490, 163.382 127.209 C 164.562 126.888, 165.867 127.491, 166.882 128.825 C 168.850 131.413, 179.065 132.654, 189.334 131.555 L 195.938 130.847 196.620 127.174 C 199.482 111.755, 215.537 99.349, 231.532 100.198 L 237.232 100.500 239.177 105.725 C 241.989 113.281, 244.649 115.010, 253.385 114.956 C 264.537 114.888, 268.349 113.706, 279.801 106.766 C 285.685 103.199, 292.030 99.768, 293.899 99.141 C 298.165 97.709, 349.600 97.544, 350.475 98.959 C 350.819 99.515, 353.784 99.665, 357.534 99.315 C 363.480 98.759, 364 98.867, 364 100.656 C 364 103.788, 371.782 107, 379.370 107 C 385.591 107, 438.058 104.428, 492.119 101.472 C 507.310 100.642, 520.439 100.231, 521.295 100.560 C 522.290 100.942, 523.460 100.227, 524.541 98.578 C 525.911 96.487, 527.021 96, 530.415 96 C 532.717 96, 535.095 96.495, 535.701 97.101 C 536.844 98.244, 554.794 97.423, 556.675 96.141 C 557.193 95.788, 558.377 94.387, 559.308 93.027 C 563.263 87.249, 559.805 79, 553.427 79 C 551.542 79, 550 78.550, 550 78 C 550 77.404, 554.341 76.945, 560.750 76.864 C 566.663 76.789, 573.075 76.606, 575 76.458 C 576.925 76.310, 591.177 76.146, 606.671 76.094 L 634.841 76 635.500 73 C 635.862 71.350, 635.862 68.650, 635.500 67 C 634.893 64.237, 634.503 64, 630.567 64 C 627.415 64, 625.597 63.356, 623.646 61.548 C 622.191 60.199, 621 58.601, 621 57.997 C 621 56.591, 614.846 54, 611.507 54 C 609.700 54, 608.672 54.733, 608 56.500 C 607.477 57.875, 606.588 59, 606.025 59 C 605.461 59, 605 59.482, 605 60.071 C 605 60.661, 604.284 61.858, 603.410 62.733 C 601.968 64.175, 591.197 64.266, 487.728 63.713 C 386.091 63.169, 373.542 62.933, 372.769 61.551 C 372.006 60.188, 366.770 60, 329.473 60 L 287.046 60 285.408 57.500 C 284.059 55.441, 282.969 55, 279.231 55 C 275.951 55, 273.002 54.066, 268.596 51.632 C 265.243 49.779, 261.862 48.492, 261.082 48.771 M 607.351 62.250 C 607.093 62.663, 609.860 63, 613.500 63 C 617.833 63, 619.896 62.640, 619.474 61.959 C 618.760 60.802, 608.096 61.058, 607.351 62.250 M 531.500 80 C 531.160 80.550, 531.809 81, 532.941 81 C 534.073 81, 535 80.550, 535 80 C 535 79.450, 534.352 79, 533.559 79 C 532.766 79, 531.840 79.450, 531.500 80 M 250.200 101.200 C 248.279 103.121, 248.799 107.735, 251.189 109.961 C 253.031 111.677, 253.110 112, 251.689 112 C 249.261 112, 246.035 108.425, 245.344 104.969 C 244.490 100.702, 243 101.311, 243 105.927 C 243 108.878, 243.595 110.323, 245.391 111.735 C 247.475 113.375, 248.766 113.521, 255.482 112.880 C 264.340 112.034, 267 110.340, 267 105.545 C 267 100.960, 265.442 100, 258 100 C 254.200 100, 250.891 100.509, 250.200 101.200" stroke="none" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |