inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

12
node_modules/jodit/esm/plugins/symbols/config.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
declare module 'jodit/config' {
interface Config {
specialCharacters: string[];
usePopupForSpecialCharacters: boolean;
}
}
export {};

244
node_modules/jodit/esm/plugins/symbols/config.js generated vendored Normal file
View File

@@ -0,0 +1,244 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
import { Icon } from "../../core/ui/icon.js";
import { Config } from "../../config.js";
import symbolsIcon from "./symbols.svg.js";
Config.prototype.usePopupForSpecialCharacters = false;
Config.prototype.specialCharacters = [
'!',
'"',
'#',
'$',
'%',
'&',
"'",
'(',
')',
'*',
'+',
'-',
'.',
'/',
'0',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
':',
';',
'<',
'=',
'>',
'?',
'@',
'A',
'B',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
'J',
'K',
'L',
'M',
'N',
'O',
'P',
'Q',
'R',
'S',
'T',
'U',
'V',
'W',
'X',
'Y',
'Z',
'[',
']',
'^',
'_',
'`',
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
'w',
'x',
'y',
'z',
'{',
'|',
'}',
'~',
'€',
'‘',
'’',
'“',
'”',
'–',
'—',
'¡',
'¢',
'£',
'¤',
'¥',
'¦',
'§',
'¨',
'©',
'ª',
'«',
'»',
'¬',
'®',
'¯',
'°',
'²',
'³',
'´',
'µ',
'¶',
'·',
'¸',
'¹',
'º',
'¼',
'½',
'¾',
'¿',
'À',
'Á',
'Â',
'Ã',
'Ä',
'Å',
'Æ',
'Ç',
'È',
'É',
'Ê',
'Ë',
'Ì',
'Í',
'Î',
'Ï',
'Ð',
'Ñ',
'Ò',
'Ó',
'Ô',
'Õ',
'Ö',
'×',
'Ø',
'Ù',
'Ú',
'Û',
'Ü',
'Ý',
'Þ',
'ß',
'à',
'á',
'â',
'ã',
'ä',
'å',
'æ',
'ç',
'è',
'é',
'ê',
'ë',
'ì',
'í',
'î',
'ï',
'ð',
'ñ',
'ò',
'ó',
'ô',
'õ',
'ö',
'÷',
'ø',
'ù',
'ú',
'û',
'ü',
'ý',
'þ',
'ÿ',
'Œ',
'œ',
'Ŵ',
'&#374',
'&#373',
'ŷ',
'‚',
'‛',
'„',
'…',
'™',
'►',
'•',
'→',
'⇒',
'⇔',
'♦',
'≈'
];
Icon.set('symbols', symbolsIcon);
Config.prototype.controls.symbols = {
hotkeys: ['ctrl+shift+i', 'cmd+shift+i'],
tooltip: 'Insert Special Character',
popup: (editor, current, close) => {
const container = editor.e.fire('generateSpecialCharactersTable.symbols');
if (container) {
if (editor.o.usePopupForSpecialCharacters) {
const box = editor.c.div();
box.classList.add('jodit-symbols');
box.appendChild(container);
editor.e.on(container, 'close_dialog', close);
return box;
}
editor
.alert(container, 'Select Special Character', undefined, 'jodit-symbols')
.bindDestruct(editor);
const a = container.querySelector('a');
a && a.focus();
}
return;
}
};

1
node_modules/jodit/esm/plugins/symbols/langs/ar.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/ar.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'رمز'
};

View File

@@ -0,0 +1 @@
export let symbols: string;

View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'symbol'
};

1
node_modules/jodit/esm/plugins/symbols/langs/de.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/de.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Symbol'
};

1
node_modules/jodit/esm/plugins/symbols/langs/es.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/es.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Símbolo'
};

1
node_modules/jodit/esm/plugins/symbols/langs/fa.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/fa.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'سمبل'
};

1
node_modules/jodit/esm/plugins/symbols/langs/fi.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/fi.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Symbolit'
};

1
node_modules/jodit/esm/plugins/symbols/langs/fr.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/fr.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'caractère'
};

1
node_modules/jodit/esm/plugins/symbols/langs/he.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/he.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'תו מיוחד'
};

1
node_modules/jodit/esm/plugins/symbols/langs/hu.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/hu.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Szimbólum'
};

1
node_modules/jodit/esm/plugins/symbols/langs/id.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/id.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'simbol'
};

View File

@@ -0,0 +1,28 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
import * as ar from "./ar";
import * as cs_cz from "./cs_cz";
import * as de from "./de";
import * as es from "./es";
import * as fa from "./fa";
import * as fi from "./fi";
import * as fr from "./fr";
import * as he from "./he";
import * as hu from "./hu";
import * as id from "./id";
import * as it from "./it";
import * as ja from "./ja";
import * as ko from "./ko";
import * as mn from "./mn";
import * as nl from "./nl";
import * as pl from "./pl";
import * as pt_br from "./pt_br";
import * as ru from "./ru";
import * as tr from "./tr";
import * as ua from "./ua";
import * as zh_cn from "./zh_cn";
import * as zh_tw from "./zh_tw";
export { ar, cs_cz, de, es, fa, fi, fr, he, hu, id, it, ja, ko, mn, nl, pl, pt_br, ru, tr, ua, zh_cn, zh_tw };

28
node_modules/jodit/esm/plugins/symbols/langs/index.js generated vendored Normal file
View File

@@ -0,0 +1,28 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
import * as ar from "./ar.js";
import * as cs_cz from "./cs_cz.js";
import * as de from "./de.js";
import * as es from "./es.js";
import * as fa from "./fa.js";
import * as fi from "./fi.js";
import * as fr from "./fr.js";
import * as he from "./he.js";
import * as hu from "./hu.js";
import * as id from "./id.js";
import * as it from "./it.js";
import * as ja from "./ja.js";
import * as ko from "./ko.js";
import * as mn from "./mn.js";
import * as nl from "./nl.js";
import * as pl from "./pl.js";
import * as pt_br from "./pt_br.js";
import * as ru from "./ru.js";
import * as tr from "./tr.js";
import * as ua from "./ua.js";
import * as zh_cn from "./zh_cn.js";
import * as zh_tw from "./zh_tw.js";
export { ar, cs_cz, de, es, fa, fi, fr, he, hu, id, it, ja, ko, mn, nl, pl, pt_br, ru, tr, ua, zh_cn, zh_tw };

1
node_modules/jodit/esm/plugins/symbols/langs/it.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/it.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Simbolo'
};

1
node_modules/jodit/esm/plugins/symbols/langs/ja.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/ja.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'symbol'
};

1
node_modules/jodit/esm/plugins/symbols/langs/ko.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/ko.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: '기호'
};

1
node_modules/jodit/esm/plugins/symbols/langs/mn.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/mn.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'тэмдэгт'
};

1
node_modules/jodit/esm/plugins/symbols/langs/nl.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/nl.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'symbool'
};

1
node_modules/jodit/esm/plugins/symbols/langs/pl.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/pl.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'symbol'
};

View File

@@ -0,0 +1 @@
export let symbols: string;

View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Símbolo'
};

1
node_modules/jodit/esm/plugins/symbols/langs/ru.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/ru.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'символ'
};

1
node_modules/jodit/esm/plugins/symbols/langs/tr.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/tr.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'Sembol'
};

1
node_modules/jodit/esm/plugins/symbols/langs/ua.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export let symbols: string;

9
node_modules/jodit/esm/plugins/symbols/langs/ua.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: 'символ'
};

View File

@@ -0,0 +1 @@
export let symbols: string;

View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: '符号'
};

View File

@@ -0,0 +1 @@
export let symbols: string;

View File

@@ -0,0 +1,9 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
symbols: '符號'
};

24
node_modules/jodit/esm/plugins/symbols/symbols.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* [[include:plugins/symbols/README.md]]
* @packageDocumentation
* @module plugins/symbols
*/
import type { IJodit } from "../../types/index";
import { Plugin } from "../../core/plugin/plugin";
import "./config";
/**
* The plugin inserts characters that are not part of the standard keyboard.
*/
export declare class symbols extends Plugin {
buttons: Plugin['buttons'];
private __countInRow;
constructor(jodit: IJodit);
afterInit(jodit: IJodit): void;
/** @override */
protected beforeDestruct(jodit: IJodit): void;
}

133
node_modules/jodit/esm/plugins/symbols/symbols.js generated vendored Normal file
View File

@@ -0,0 +1,133 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
import { KEY_DOWN, KEY_ENTER, KEY_LEFT, KEY_RIGHT, KEY_UP } from "../../core/constants.js";
import { Dom } from "../../core/dom/dom.js";
import { extendLang, pluginSystem } from "../../core/global.js";
import { attr } from "../../core/helpers/utils/index.js";
import { Plugin } from "../../core/plugin/plugin.js";
import "./config.js";
import * as langs from "./langs/index.js";
/**
* The plugin inserts characters that are not part of the standard keyboard.
*/
export class symbols extends Plugin {
constructor(jodit) {
super(jodit);
this.buttons = [
{
name: 'symbols',
group: 'insert'
}
];
this.__countInRow = 17;
extendLang(langs);
}
afterInit(jodit) {
jodit.e.on('generateSpecialCharactersTable.symbols', () => {
const container = jodit.c.fromHTML(`<div class="jodit-symbols__container">
<div class="jodit-symbols__container_table">
<table class="jodit-symbols__table"><tbody></tbody></table>
</div>
<div class="jodit-symbols__container_preview">
<div class="jodit-symbols__preview"></div>
</div>
</div>`);
const preview = container.querySelector('.jodit-symbols__preview');
const table = container.querySelector('table');
const body = table.tBodies[0];
const chars = [];
for (let i = 0; i < jodit.o.specialCharacters.length;) {
const tr = jodit.c.element('tr');
for (let j = 0; j < this.__countInRow &&
i < jodit.o.specialCharacters.length; j += 1, i += 1) {
const td = jodit.c.element('td'), a = jodit.c.fromHTML(`<a
data-index="${i}"
data-index-j="${j}"
role="option"
tabindex="-1"
>${jodit.o.specialCharacters[i]}</a>`);
chars.push(a);
td.appendChild(a);
tr.appendChild(td);
}
body.appendChild(tr);
}
const self = this;
jodit.e
.on(chars, 'focus', function () {
preview.innerHTML = this.innerHTML;
})
.on(chars, 'mousedown', function (e) {
if (Dom.isTag(this, 'a')) {
jodit.s.focus();
jodit.s.insertHTML(this.innerHTML);
if (!(e === null || e === void 0 ? void 0 : e.shiftKey)) {
jodit.e.fire(this, 'close_dialog');
}
e && e.preventDefault();
e && e.stopImmediatePropagation();
}
})
.on(chars, 'mouseenter', function () {
if (Dom.isTag(this, 'a')) {
this.focus();
}
})
.on(chars, 'keydown', (e) => {
const target = e.target;
if (Dom.isTag(target, 'a')) {
const index = parseInt(attr(target, '-index') || '0', 10), jIndex = parseInt(attr(target, 'data-index-j') || '0', 10);
let newIndex;
switch (e.key) {
case KEY_UP:
case KEY_DOWN:
newIndex =
e.key === KEY_UP
? index - self.__countInRow
: index + self.__countInRow;
if (chars[newIndex] === undefined) {
newIndex =
e.key === KEY_UP
? Math.floor(chars.length /
self.__countInRow) *
self.__countInRow +
jIndex
: jIndex;
if (newIndex > chars.length - 1) {
newIndex -= self.__countInRow;
}
}
chars[newIndex] && chars[newIndex].focus();
break;
case KEY_RIGHT:
case KEY_LEFT:
newIndex =
e.key === KEY_LEFT ? index - 1 : index + 1;
if (chars[newIndex] === undefined) {
newIndex =
e.key === KEY_LEFT
? chars.length - 1
: 0;
}
chars[newIndex] && chars[newIndex].focus();
break;
case KEY_ENTER:
jodit.e.fire(target, 'mousedown');
e.stopImmediatePropagation();
e.preventDefault();
break;
}
}
});
return container;
});
}
/** @override */
beforeDestruct(jodit) {
jodit.e.off('generateSpecialCharactersTable.symbols');
}
}
pluginSystem.add('symbols', symbols);

View File

@@ -0,0 +1 @@
export default "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 270 270\"> <path d=\"m240.443652,220.45085l-47.410809,0l0,-10.342138c13.89973,-8.43655 25.752896,-19.844464 34.686646,-33.469923c11.445525,-17.455846 17.496072,-37.709239 17.496072,-58.570077c0,-59.589197 -49.208516,-108.068714 -109.693558,-108.068714s-109.69263,48.479517 -109.69263,108.069628c0,20.860839 6.050547,41.113316 17.497001,58.570077c8.93375,13.625459 20.787845,25.032458 34.686646,33.469008l0,10.342138l-47.412666,0c-10.256959,0 -18.571354,8.191376 -18.571354,18.296574c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.98402,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574l0,-39.496814c0,-7.073455 -4.137698,-13.51202 -10.626529,-16.537358c-25.24497,-11.772016 -41.557118,-37.145704 -41.557118,-64.643625c0,-39.411735 32.545369,-71.476481 72.549922,-71.476481c40.004553,0 72.550851,32.064746 72.550851,71.476481c0,27.497006 -16.312149,52.87161 -41.557118,64.643625c-6.487902,3.026253 -10.6256,9.464818 -10.6256,16.537358l0,39.496814c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.982163,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574c0,-10.105198 -8.314395,-18.296574 -18.571354,-18.296574z\"/> </svg> ";