This commit is contained in:
hufangzhou
2021-08-16 09:15:01 +08:00
17 changed files with 138 additions and 103 deletions
+5 -1
View File
@@ -10,7 +10,11 @@ class myEntry extends entry
{
public function get()
{
$info = $this->loadModel('my')->getInfo();
$info = $this->loadModel('my')->getInfo();
$info->products = $this->loadModel('my')->getProducts();
$info->projects = $this->loadModel('my')->getProjects();
$info->joinProjectCount = count($info->projects);
$info->dynamic = $this->loadModel('my')->getDynamic();
if(!$info) return $this->sendError(400, $info->message);
$this->send(200, $info);
-6
View File
@@ -484,12 +484,6 @@ class doc extends control
$objectID = $docLib->$type;
}
if($type == 'execution')
{
$type = 'project';
$objectID = $this->dao->select('project')->from(TABLE_EXECUTION)->where('id')->eq($objectID)->fetch('project');
}
$browseLink = inLink('objectLibs', "type=$type&objectID=$objectID&libID=$libID&docID=$docID");
$this->locate($browseLink);
}
+3 -2
View File
@@ -2044,11 +2044,12 @@ class docModel extends model
$currentMethod = $this->app->getMethodName();
$methodName = in_array($currentMethod, array('tablecontents', 'showfiles')) ? 'tablecontents' : 'objectLibs';
$objectTitle = $type == 'execution' ? substr($objects[$objectID], strpos($objects[$objectID], '/') + 1) : $objects[$objectID];
if($this->app->openApp == 'doc' and $type != 'custom' and $type != 'book')
{
$output = <<<EOT
$objectTitle = $type == 'execution' ? substr($objects[$objectID], strpos($objects[$objectID], '/') + 1) : $objects[$objectID];
$output = <<<EOT
<div class='btn-group angle-btn'>
<div class='btn-group'>
<button data-toggle='dropdown' type='button' class='btn btn-limit' id='currentItem' title='{$objectTitle}'>
+1 -1
View File
@@ -19,7 +19,7 @@ body.menu-hide {padding-left: 0;}
.menu-hide .menu-toggle .is-unfold {display: inline;}
#menuToggleItem,
.menu-hide #menuToggleItem {display: list-item;}
.menu-hide #menu .nav > li {padding: 4px;}
.menu-hide #menu .nav > li {padding: 2px 4px;}
.menu-hide #menu .nav > li > a {padding: 6px 4px; text-align: center;}
.menu-hide #menu .nav > li > a > .text {display: none;}
.menu-hide #menu .nav > li.has-avatar > a {padding: 2px 0;}
+11 -1
View File
@@ -29,6 +29,7 @@
var $link= $('<a data-pos="menu"></a>')
.attr('data-app', item.code)
.attr('data-toggle', 'tooltip')
.attr('class', 'show-in-app')
.html(item.title);
@@ -38,10 +39,11 @@
appsMap[item.code] = item;
$('<li></li>').attr('data-app', item.code)
.attr('title', item.text)
.append($link)
.appendTo($menuMainNav);
$link.tooltip({title: item.text, container: 'body', placement: 'right'});
if(!defaultApp) defaultApp = item.code;
});
@@ -624,6 +626,14 @@
var $menu = $('#userNav .dropdown-menu').addClass('hidden');
setTimeout(function(){$menu.removeClass('hidden')}, 200);
});
$('.menu-toggle').each(function()
{
$(this).attr('data-toggle', 'tooltip').tooltip({container: 'body', title: function(ele)
{
return $(ele).data($('body').hasClass('menu-hide') ? 'unfoldText' : 'collapseText');
}});
});
});
}());
+1 -1
View File
@@ -54,7 +54,7 @@ js::set('defaultOpen', $open);
<div id='menuFooter'>
<ul id="flodNav" class="nav">
<li id='menuToggleMenu'>
<a type='button' class='menu-toggle'>
<a type='button' class='menu-toggle' data-collapse-text='<?php echo $lang->collapseMenu; ?>' data-unfold-text='<?php echo $lang->unfoldMenu; ?>'>
<i class='icon icon-sm icon-menu-collapse'></i>
</a>
</li>
+3 -3
View File
@@ -33,7 +33,7 @@ class message extends control
/**
* Browser Setting
*
*
* @access public
* @return void
*/
@@ -80,10 +80,10 @@ class message extends control
*/
public function setting()
{
if($_POST)
if(strtolower($this->server->request_method) == "post")
{
$data = fixer::input('post')->get();
$data->messageSetting = json_encode($data->messageSetting);
$data->messageSetting = !empty($data->messageSetting) ? json_encode($data->messageSetting) : '';
$this->loadModel('setting')->setItem('system.message.setting', $data->messageSetting);
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'reload'));
}
+98 -74
View File
@@ -57,6 +57,104 @@ class myModel extends model
}
}
/**
* My charged products.
*
* @access public
* @return array
*/
public function getProducts()
{
$products = $this->dao->select('t1.id as id,t1.*')->from(TABLE_PRODUCT)->alias('t1')
->leftJoin(TABLE_PROGRAM)->alias('t2')->on('t1.program = t2.id')
->where('t1.deleted')->eq(0)
->beginIF(!$this->app->user->admin)->andWhere('t1.id')->in($this->app->user->view->products)->fi()
->andWhere('t1.status')->ne('closed')
->andWhere('t1.PO')->eq($this->app->user->account)
->orderBy('t1.order_asc')
->fetchAll('id');
$productKeys = array_keys($products);
$stories = $this->dao->select('product, status, count(status) AS count')
->from(TABLE_STORY)
->where('deleted')->eq(0)
->andWhere('product')->in($productKeys)
->groupBy('product, status')
->fetchGroup('product', 'status');
$plans = $this->dao->select('product, count(*) AS count')
->from(TABLE_PRODUCTPLAN)
->where('deleted')->eq(0)
->andWhere('product')->in($productKeys)
->andWhere('end')->gt(helper::now())
->groupBy('product')
->fetchPairs();
$releases = $this->dao->select('product, count(*) AS count')
->from(TABLE_RELEASE)
->where('deleted')->eq(0)
->andWhere('product')->in($productKeys)
->groupBy('product')
->fetchPairs();
$executions = $this->dao->select('t1.product,t2.id,t2.name')->from(TABLE_PROJECTPRODUCT)->alias('t1')
->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.project=t2.id')
->where('t1.product')->in($productKeys)
->andWhere('t2.type')->in('stage,sprint')
->andWhere('t2.deleted')->eq(0)
->orderBy('t1.project')
->fetchAll('product');
foreach($executions as $key => $execuData)
{
$execution = $this->loadModel('execution')->getById($execuData->id);
$executions[$key]->progress = ($execution->totalConsumed + $execution->totalLeft) ? floor($execution->totalConsumed / ($execution->totalConsumed + $execution->totalLeft) * 1000) / 1000 * 100 : 0;
}
foreach($products as $key => $product)
{
$product->plans = isset($plans[$product->id]) ? $plans[$product->id] : 0;
$product->releases = isset($releases[$product->id]) ? $releases[$product->id] : 0;
if(isset($stories[$product->id])) $product->stories = $stories[$product->id];
if(isset($executions[$product->id])) $product->executions = $executions[$product->id];
}
return array_values($products);
}
/**
* All projects.
*
* @access public
* @return array
*/
public function getProjects()
{
$projects = $this->loadModel('project')->getOverviewList('byStatus', 'all', 'order_asc');
foreach($projects as $key => $project)
{
if($project->status == 'doing')
{
$workhour = $this->loadModel('project')->getWorkhour($project->id);
$projects[$key]->progress = ($workhour->totalConsumed + $workhour->totalLeft) ? floor($workhour->totalConsumed / ($workhour->totalConsumed + $workhour->totalLeft) * 1000) / 1000 * 100 : 0;
}
}
return array_values($projects);
}
/**
* Dynamic.
*
* @access public
* @return array
*/
public function getDynamic()
{
$actions = $this->loadModel('action')->getDynamic('all', 'today', 'date_desc');
$users = $this->loadModel('user')->getPairs('noletter');
foreach($actions as $key => $action)
{
$actions[$key]->actor = $users[$action->actor];
}
return $actions;
}
/**
* Get my info.
*
@@ -199,81 +297,7 @@ class myModel extends model
$info->issue->dynamic = $issues;
}
/* My charged products. */
$products = $this->dao->select('t1.id as id,t1.*')->from(TABLE_PRODUCT)->alias('t1')
->leftJoin(TABLE_PROGRAM)->alias('t2')->on('t1.program = t2.id')
->where('t1.deleted')->eq(0)
->beginIF(!$this->app->user->admin)->andWhere('t1.id')->in($this->app->user->view->products)->fi()
->andWhere('t1.status')->ne('closed')
->andWhere('t1.PO')->eq($this->app->user->account)
->orderBy('t1.order_asc')
->fetchAll('id');
$productKeys = array_keys($products);
$stories = $this->dao->select('product, status, count(status) AS count')
->from(TABLE_STORY)
->where('deleted')->eq(0)
->andWhere('product')->in($productKeys)
->groupBy('product, status')
->fetchGroup('product', 'status');
$plans = $this->dao->select('product, count(*) AS count')
->from(TABLE_PRODUCTPLAN)
->where('deleted')->eq(0)
->andWhere('product')->in($productKeys)
->andWhere('end')->gt(helper::now())
->groupBy('product')
->fetchPairs();
$releases = $this->dao->select('product, count(*) AS count')
->from(TABLE_RELEASE)
->where('deleted')->eq(0)
->andWhere('product')->in($productKeys)
->groupBy('product')
->fetchPairs();
$executions = $this->dao->select('t1.product,t2.id,t2.name')->from(TABLE_PROJECTPRODUCT)->alias('t1')
->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.project=t2.id')
->where('t1.product')->in($productKeys)
->andWhere('t2.type')->in('stage,sprint')
->andWhere('t2.deleted')->eq(0)
->orderBy('t1.project')
->fetchAll('product');
foreach($executions as $key => $execuData)
{
$execution = $this->loadModel('execution')->getById($execuData->id);
$executions[$key]->progress = ($execution->totalConsumed + $execution->totalLeft) ? floor($execution->totalConsumed / ($execution->totalConsumed + $execution->totalLeft) * 1000) / 1000 * 100 : 0;
}
foreach($products as $key => $product)
{
$product->plans = isset($plans[$product->id]) ? $plans[$product->id] : 0;
$product->releases = isset($releases[$product->id]) ? $releases[$product->id] : 0;
if(isset($stories[$product->id])) $product->stories = $stories[$product->id];
if(isset($executions[$product->id])) $product->executions = $executions[$product->id];
}
$info->products = array_values($products);
/* All projects. */
$projects = $this->loadModel('project')->getOverviewList('byStatus', 'all', 'order_asc');
foreach($projects as $key => $project)
{
if($project->status == 'doing')
{
$workhour = $this->loadModel('project')->getWorkhour($project->id);
$projects[$key]->progress = ($workhour->totalConsumed + $workhour->totalLeft) ? floor($workhour->totalConsumed / ($workhour->totalConsumed + $workhour->totalLeft) * 1000) / 1000 * 100 : 0;
}
}
$info->projects = array_values($projects);
/* Dynamic. */
$actions = $this->loadModel('action')->getDynamic('all', 'today', 'date_desc');
$users = $this->loadModel('user')->getPairs('noletter');
foreach($actions as $key => $action)
{
$actions[$key]->actor = $users[$action->actor];
}
$info->dynamic = $actions;
/* Some count. */
$info->joinProjectCount = count($info->projects);
$info->createdDocs = $this->dao->select('count(*) AS count')->from(TABLE_DOC)->where('addedBy')->eq($this->app->user->account)->andWhere('deleted')->eq('0')->fetch('count');
return $info;
+4 -1
View File
@@ -491,7 +491,10 @@ class personnelModel extends model
}
elseif($objectType == 'project')
{
$objects = $this->loadModel('project')->getPairsByProgram();
$path = $this->dao->select('path')->from(TABLE_PROJECT)->where('id')->eq($objectID)->fetch('path');
$path = explode(',', trim($path, ','));
$parentID = $path[0];
$objects = $this->loadModel('project')->getPairsByProgram($parentID);
}
elseif($objectType == 'product')
{
@@ -22,10 +22,8 @@
<div class='input-group space w-200px'>
<span class='input-group-addon'><?php echo $lang->execution->selectDept;?></span>
<?php echo html::select('dept', $depts, $deptID, "class='form-control chosen' onchange='setObjectUsers()' data-placeholder='{$lang->execution->selectDeptTitle}'");?>
<?php if(count($objects) > 1):?>
<span class='input-group-addon'><?php echo $lang->personnel->copy;?></span>
<?php echo html::select('object', $objects, $copyID, "class='form-control chosen' onchange='setObjectUsers()' data-placeholder='{$lang->personnel->selectObjectTips}'");?>
<?php endif;?>
</div>
</div>
</div>
+1
View File
@@ -588,6 +588,7 @@ class webhookModel extends model
$toList = $this->loadModel('message')->getToList($object, $action->objectType);
if(!empty($object->mailto)) $toList .= ',' . $object->mailto;
if(empty($toList)) return false;
$toList = str_replace(",{$this->app->user->account},", '', ",$toList,");
$openIdList = $this->getBoundUsers($webhookID, $toList);
$openIdList = join(',', $openIdList);
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
+7 -7
View File
@@ -33,7 +33,7 @@
<glyph unicode="&#xe90a;" glyph-name="start, play" d="M109.714 658.285c0 20.198 16.374 36.571 36.571 36.571h731.429c20.198 0 36.571-16.374 36.571-36.571v-731.429c0-20.198-16.373-36.571-36.571-36.571h-731.429c-20.198 0-36.571 16.373-36.571 36.571v731.429zM146.286 768c-60.593 0-109.714-49.121-109.714-109.714v-731.429c0-60.595 49.121-109.714 109.714-109.714h731.429c60.595 0 109.714 49.119 109.714 109.714v731.429c0 60.593-49.119 109.714-109.714 109.714h-731.429zM365.714 149.855v285.433c0 8.684 3.046 17.135 8.682 24.083 14.38 17.735 41.585 21.329 60.763 8.028l205.762-142.717c3.291-2.282 6.213-4.985 8.682-8.027 14.38-17.733 10.496-42.895-8.682-56.196l-205.762-142.716c-7.512-5.211-16.651-8.027-26.043-8.027-23.969 0-43.403 17.971-43.403 40.141z" />
<glyph unicode="&#xe90b;" glyph-name="time" d="M109.714 668.734c0 14.427 11.696 26.122 26.123 26.122h752.326c14.427 0 26.123-11.696 26.123-26.123v-752.326c0-14.427-11.696-26.123-26.123-26.123h-752.326c-14.427 0-26.122 11.696-26.122 26.123v752.326zM135.837 768c-54.823 0-99.265-44.443-99.265-99.265v-752.326c0-54.824 44.443-99.266 99.265-99.266h752.326c54.824 0 99.266 44.442 99.266 99.266v752.326c0 54.823-44.442 99.265-99.266 99.265h-752.326zM548.571 512c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-213.716c0-13.356 5.307-26.167 14.753-35.613l142.245-142.245c14.281-14.281 37.438-14.281 51.719 0s14.281 37.438 0 51.719l-135.574 135.574v204.281z" />
<glyph unicode="&#xe90c;" glyph-name="edit" d="M109.714 658.285c0 20.198 16.373 36.571 36.571 36.571h491.103c20.198 0 36.571 16.374 36.571 36.571s-16.373 36.571-36.571 36.571h-491.103c-60.593 0-109.714-49.121-109.714-109.714v-731.429c0-60.595 49.121-109.714 109.714-109.714h731.429c60.595 0 109.714 49.119 109.714 109.714v491.103c0 20.198-16.373 36.57-36.571 36.57s-36.571-16.372-36.571-36.57v-491.103c0-20.198-16.373-36.571-36.571-36.571h-731.429c-20.198 0-36.571 16.373-36.571 36.571v731.429zM979.485 702.132c14.457 14.108 14.735 37.262 0.629 51.716-14.109 14.454-37.263 14.735-51.716 0.627l-518.173-505.753c-14.453-14.106-14.735-37.259-0.629-51.716 14.109-14.453 37.263-14.735 51.716-0.625l518.173 505.751z" />
<glyph unicode="&#xe90d;" glyph-name="trash" d="M365.714 731.428c0 40.396 32.746 73.143 73.143 73.143h146.286c40.397 0 73.143-32.747 73.143-73.143v-73.143h292.571c20.198 0 36.571-16.374 36.571-36.571s-16.373-36.571-36.571-36.571h-877.714c-20.198 0-36.571 16.374-36.571 36.571s16.374 36.571 36.571 36.571h292.571v73.143zM438.857 658.285h146.286v73.143h-146.286v-73.143zM178.584 475.178c20.059 2.36 38.234-11.988 40.594-32.048l65.543-557.116c2.167-18.421 17.776-32.3 36.321-32.3h381.915c18.545 0 34.154 13.879 36.323 32.3l65.54 557.116c2.363 20.059 20.535 34.408 40.594 32.048s34.41-20.534 32.051-40.592l-65.543-557.118c-6.502-55.256-53.328-96.896-108.965-96.896h-381.915c-55.635 0-102.463 41.64-108.963 96.896l-65.543 557.118c-2.36 20.058 11.988 38.233 32.048 40.592z" />
<glyph unicode="&#xe90d;" glyph-name="trash" d="M329.143 731.428c0 40.396 32.747 73.143 73.143 73.143h219.429c40.397 0 73.143-32.747 73.143-73.143v-109.714h292.571c20.198 0 36.571-16.374 36.571-36.571s-16.373-36.571-36.571-36.571h-950.857c-20.198 0-36.571 16.374-36.571 36.571s16.374 36.571 36.571 36.571h292.571v109.714zM402.286 621.714h219.429v109.714h-219.429v-109.714zM144.138 475.365c20.163 1.186 37.47-14.198 38.656-34.361l32.522-552.866c1.137-19.332 17.144-34.425 36.508-34.425h520.353c19.365 0 35.372 15.093 36.509 34.425l32.519 552.866c1.189 20.163 18.494 35.547 38.656 34.361 20.165-1.186 35.547-18.493 34.363-38.655l-32.523-552.869c-3.412-57.991-51.434-103.27-109.524-103.27h-520.353c-58.091 0-106.114 45.279-109.525 103.27l-32.522 552.869c-1.186 20.162 14.198 37.469 34.361 38.655zM621.714 365.714c20.198 0 36.571-16.373 36.571-36.571v-292.571c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.373-36.571 36.571v292.571c0 20.198 16.373 36.571 36.571 36.571zM438.857 329.142c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-292.571c0-20.198 16.373-36.571 36.571-36.571s36.571 16.373 36.571 36.571v292.571z" />
<glyph unicode="&#xe90e;" glyph-name="link" d="M752.837 746.576c-28.566 28.564-74.876 28.565-103.442 0.001l-213.098-213.095c-28.566-28.564-28.566-74.876 0-103.439l11.97-11.973c14.281-14.281 37.438-14.281 51.719 0 14.285 14.285 14.285 37.439 0 51.722l-11.97 11.971 213.098 213.095 213.091-213.095-213.094-213.094-11.97 11.97c-14.281 14.281-37.438 14.281-51.719 0s-14.281-37.438 0-51.719l11.97-11.97c28.566-28.566 74.876-28.566 103.439 0l213.098 213.094c28.562 28.563 28.562 74.874 0 103.438l-213.091 213.095zM689.145 469.795c14.281-14.282 14.281-37.437 0-51.718l-302.647-302.647c-14.281-14.281-37.438-14.281-51.72 0s-14.282 37.438 0 51.719l302.647 302.646c14.281 14.282 37.435 14.282 51.719 0zM271.089 368.274c28.564 28.562 74.876 28.562 103.439 0l11.973-11.973c14.281-14.281 14.281-37.438 0-51.719-14.285-14.281-37.44-14.281-51.722 0l-11.971 11.97-213.095-213.094 213.095-213.094 213.094 213.094-11.97 11.97c-14.281 14.285-14.281 37.438 0 51.723 14.281 14.281 37.438 14.281 51.719 0l11.97-11.973c28.566-28.562 28.566-74.873 0-103.439l-213.094-213.094c-28.563-28.566-74.875-28.566-103.439 0l-213.095 213.094c-28.564 28.566-28.564 74.876 0 103.439l213.095 213.098z" />
<glyph unicode="&#xe90f;" glyph-name="unlink" d="M757.288 757.288c-6.857 6.859-16.161 10.712-25.86 10.712s-19.003-3.853-25.86-10.711l-256-256c-14.281-14.282-14.281-37.438 0-51.72s37.438-14.281 51.719 0l230.14 230.14 167.709-167.711-230.14-230.142c-14.281-14.281-14.281-37.435 0-51.719 14.281-14.281 37.438-14.281 51.719 0l256 256.001c14.281 14.282 14.281 37.438 0 51.72l-219.429 219.431zM438.857 694.855c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-109.714c0-20.198 16.373-36.571 36.571-36.571s36.571 16.373 36.571 36.571v109.714zM658.286 0c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-109.714c0-20.198 16.373-36.571 36.571-36.571s36.571 16.373 36.571 36.571v109.714zM793.86 62.431l73.143-73.143c14.281-14.281 14.281-37.438 0-51.719s-37.438-14.281-51.719 0l-73.143 73.143c-14.281 14.281-14.281 37.438 0 51.719s37.438 14.281 51.719 0zM208.717 647.572c-14.282 14.282-37.438 14.282-51.72 0s-14.282-37.438 0-51.72l73.143-73.143c14.282-14.282 37.438-14.282 51.72 0s14.282 37.438 0 51.72l-73.143 73.143zM768 182.857c0 20.198 16.373 36.571 36.571 36.571h109.714c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-109.714c-20.198 0-36.571 16.373-36.571 36.571zM109.714 438.853c-20.198 0-36.571-16.373-36.571-36.571 0-20.195 16.374-36.571 36.571-36.571h109.714c20.198 0 36.571 16.377 36.571 36.571 0 20.198-16.374 36.571-36.571 36.571h-109.714zM355.003 355.002c14.281-14.281 14.281-37.438 0-51.719l-230.14-230.14 167.709-167.709 230.14 230.14c14.281 14.281 37.438 14.281 51.719 0s14.281-37.438 0-51.719l-256-256c-14.282-14.281-37.438-14.281-51.72 0l-219.429 219.429c-14.282 14.281-14.282 37.438 0 51.719l256 256c14.282 14.281 37.438 14.281 51.72 0z" />
<glyph unicode="&#xe910;" glyph-name="bullhorn" d="M838.917-88.693l-435.89 159.826v426.203l435.89 159.826v-745.857zM185.083 71.134v426.203h108.972v-426.203h-108.972zM305.955 603.889h-176.569c-29.423 0-53.276-23.852-53.276-53.276v-532.755c0-29.423 23.852-53.276 53.276-53.276h188.295l559.868-189.317c27.874-9.424 58.109 5.53 67.533 33.403 1.859 5.5 2.807 11.262 2.807 17.065v917.434c0 29.423-23.852 53.276-53.276 53.276-5.704 0-11.371-0.917-16.786-2.713l-571.873-189.843z" />
@@ -60,7 +60,7 @@
<glyph unicode="&#xe925;" glyph-name="plus" d="M860.445 334.223h-298.666v298.666c0 29.866-19.911 49.779-49.779 49.779s-49.779-19.911-49.779-49.779v-298.666h-298.666c-29.866 0-49.779-19.911-49.779-49.779s19.911-49.779 49.779-49.779h298.666v-298.666c0-29.866 19.911-49.779 49.779-49.779s49.779 19.911 49.779 49.779v298.666h298.666c29.866 0 49.779 19.911 49.779 49.779s-19.911 49.779-49.779 49.779z" />
<glyph unicode="&#xe926;" glyph-name="minus" d="M860.443 334.222h-696.885c-29.869 0-49.778-19.913-49.778-49.778s19.913-49.778 49.778-49.778h696.885c29.869 0 49.778 19.913 49.778 49.778s-19.913 49.778-49.778 49.778z" />
<glyph unicode="&#xe927;" glyph-name="exchange" d="M473.45 167.61h301.759c16.114 0 29.172 13.061 29.172 29.172s-13.061 29.172-29.172 29.172v0h-543.89c-4.265 0-8.195-2.321-10.249-6.061-3.113-5.662-1.050-12.774 4.613-15.887v0l264.382-145.418c2.913-1.602 6.373-1.89 9.509-0.787 6.095 2.138 9.306 8.813 7.165 14.908v0l-33.287 94.898zM550.55 401.278h-301.759c-16.114 0-29.172-13.061-29.172-29.172v0 0c0-16.114 13.061-29.172 29.172-29.172v0h543.89c4.265 0 8.195 2.321 10.249 6.061 3.113 5.662 1.050 12.774-4.613 15.887l-264.382 145.418c-2.913 1.602-6.373 1.89-9.509 0.787-6.095-2.138-9.306-8.813-7.165-14.908v0l33.287-94.898z" />
<glyph unicode="&#xe928;" glyph-name="search" horiz-adv-x="951" d="M636.406 316.639c0 124.255-101.113 225.368-225.368 225.368s-225.368-101.113-225.368-225.368 101.113-225.368 225.368-225.368 225.368 101.113 225.368 225.368zM893.969-101.901c0-35.214-29.177-64.391-64.391-64.391-17.105 0-33.704 7.042-45.275 19.116l-172.547 172.045c-58.857-40.748-129.285-62.379-200.718-62.379-195.688 0-354.15 158.462-354.15 354.15s158.462 354.15 354.15 354.15 354.15-158.462 354.15-354.15c0-71.433-21.631-141.861-62.379-200.718l172.547-172.547c11.571-11.571 18.613-28.171 18.613-45.275z" />
<glyph unicode="&#xe928;" glyph-name="search" d="M441.979 739.556c-212.68 0-385.091-172.414-385.091-385.095s172.411-385.095 385.091-385.095c93.736 0 179.65 33.493 246.428 89.16l218.939-218.939c13.672-13.672 35.838-13.672 49.509 0s13.672 35.838 0 49.509l-218.939 218.939c55.664 66.778 89.153 152.694 89.153 246.424 0 212.68-172.409 385.095-385.091 385.095zM126.906 354.46c0 174.010 141.064 315.078 315.074 315.078s315.074-141.065 315.074-315.078c0-174.009-141.064-315.078-315.074-315.078s-315.074 141.067-315.074 315.078z" />
<glyph unicode="&#xe929;" glyph-name="text" d="M847.856 697.805l59.939-224.765-49.603-13.434c-23.25 44.952-47.022 89.907-74.407 112.64-27.385 22.218-59.421 22.218-90.939 22.218h-129.176v-542.539c0-25.836 0-51.669 17.050-64.586 17.568-12.919 51.669-12.919 86.288-12.919v-51.669h-310.021v51.669c34.62 0 68.723 0 86.288 12.919 17.050 12.919 17.050 38.753 17.050 64.586v542.539h-129.176c-31.519 0-63.554 0-90.939-22.218-27.385-22.733-51.152-67.689-74.407-112.64l-49.603 13.434 59.939 224.765h671.713z" />
<glyph unicode="&#xe92a;" glyph-name="envelope-o" d="M950.857-26.414v438.857c-12-13.714-25.143-26.286-39.429-37.714-81.714-62.857-164-126.857-243.429-193.143-42.857-36-96-80-155.429-80h-1.143c-59.429 0-112.571 44-155.429 80-79.429 66.286-161.714 130.286-243.429 193.143-14.286 11.429-27.429 24-39.429 37.714v-438.857c0-9.714 8.571-18.286 18.286-18.286h841.142c9.714 0 18.286 8.571 18.286 18.286zM950.857 574.158c0 14.286 3.429 39.429-18.286 39.429h-841.142c-9.714 0-18.286-8.571-18.286-18.286 0-65.143 32.571-121.714 84-162.286 76.571-60 153.143-120.571 229.143-181.143 30.286-24.571 85.143-77.143 125.143-77.143h1.143c40 0 94.857 52.571 125.143 77.143 76 60.571 152.571 121.143 229.143 181.143 37.143 29.143 84 92.571 84 141.143zM1024 595.301v-621.713c0-50.286-41.143-91.429-91.429-91.429h-841.142c-50.286 0-91.429 41.143-91.429 91.429v621.713c0 50.286 41.143 91.429 91.429 91.429h841.142c50.286 0 91.429-41.143 91.429-91.429z" />
<glyph unicode="&#xe92b;" glyph-name="up-circle" d="M557.51 383.579l108.814-35.010c13.58-4.369 28.464-0.748 38.518 9.371 14.763 14.854 14.687 38.87-0.171 53.635v0l-138.961 138.075c-29.679 29.491-77.633 29.38-107.179-0.246v0l-137.389-137.787c-10.054-10.084-13.614-24.95-9.216-38.492 6.47-19.922 27.862-30.827 47.782-24.358v0l106.774 34.672v-318.972c0-25.135 20.374-45.51 45.51-45.51v0c25.135 0 45.51 20.374 45.51 45.51v0 319.106zM512 739.556v0c251.351 0 455.112-203.76 455.112-455.112v0c0-251.351-203.76-455.112-455.112-455.112s-455.112 203.76-455.112 455.112v0 0c0 251.351 203.76 455.112 455.112 455.112v0z" />
@@ -106,7 +106,7 @@
<glyph unicode="&#xe953;" glyph-name="format-bold" d="M576.001 28.443h-199.112v170.667h199.112c47.216 0 85.334-38.115 85.334-85.334s-38.115-85.334-85.334-85.334zM376.891 540.442h170.667c47.216 0 85.334-38.115 85.334-85.334s-38.115-85.334-85.334-85.334h-170.667zM695.467 296.391c55.181 38.685 93.866 101.829 93.866 158.721 0 128.569-99.557 227.556-227.556 227.556h-355.556v-796.444h400.498c119.468 0 211.057 96.71 211.057 215.608 0 86.471-48.923 160.427-122.311 194.561z" />
<glyph unicode="&#xe954;" glyph-name="format-header-pound" d="M40.636 614.399h94.272v-282.817h188.545v282.817h94.272v-659.907h-94.272v282.817h-188.545v-282.817h-94.272v659.907zM512 425.852h108.882l15.085 141.408h94.272l-15.085-141.408h94.272l15.085 141.408h94.272l-15.085-141.408h79.663v-94.272h-89.558l-9.426-94.272h98.987v-94.272h-108.882l-15.085-141.408h-94.272l15.085 141.408h-94.272l-15.085-141.408h-94.272l15.085 141.408h-79.663v94.272h89.558l9.426 94.272h-98.987v94.272zM705.26 331.581l-9.426-94.272h94.272l9.426 94.272h-94.272z" />
<glyph unicode="&#xe955;" glyph-name="format-italic" d="M398.223 682.666v-170.667h125.726l-194.561-455.11h-158.721v-170.667h455.11v170.667h-125.726l194.561 455.11h158.721v170.667h-455.11z" />
<glyph unicode="&#xe956;" glyph-name="test" d="M475.429 731.428c222.175 0 402.286-180.11 402.286-402.286 0-97.914-34.981-187.658-93.128-257.416l155.559-155.581c14.282-14.282 14.282-37.438 0-51.72-13.183-13.183-33.928-14.198-48.275-3.042l-3.445 3.042-155.581 155.559c-69.758-58.147-159.502-93.128-257.416-93.128-222.175 0-402.286 180.11-402.286 402.286s180.11 402.286 402.286 402.286zM475.429 658.285c-181.78 0-329.143-147.363-329.143-329.143s147.363-329.143 329.143-329.143c181.78 0 329.143 147.363 329.143 329.143s-147.363 329.143-329.143 329.143zM475.429 585.142c56.925 0 85.605-9.223 131.707-43.923 16.137-12.146 19.373-35.075 7.226-51.212s-35.075-19.373-51.212-7.226c-33.18 24.974-46.381 29.219-87.721 29.219-41.477 0-55.337-4.443-87.491-29.045-16.041-12.273-38.995-9.219-51.268 6.822s-9.219 38.995 6.822 51.268c45.263 34.632 74.792 44.098 131.937 44.098z" />
<glyph unicode="&#xe956;" glyph-name="test" d="M245.634 346.317h91.447c0 93.264 75.607 168.871 168.871 168.871 0 0 0 0 0 0v91.447c-143.63-0.336-259.984-116.688-260.318-260.318v0zM815.042 670.649v0c-179.232 178.841-469.509 178.521-648.347-0.711s-178.521-469.509 0.711-648.347c153.984-153.648 394.745-177.934 576.313-58.128l182.891-182.891 64.622 64.622-174.967 175.579c179.047 179.826 178.503 470.727-1.218 649.881v0zM231.003 86.61v0c-142.263 143.433-141.312 375.033 2.119 517.296s375.033 141.312 517.296-2.121c141.438-142.601 141.438-372.571 0-515.175v0c-142.263-143.433-373.863-144.382-517.296-2.121-0.711 0.704-1.417 1.41-2.119 2.121v0z" />
<glyph unicode="&#xe957;" glyph-name="ppt" d="M679.709 731.428c9.699 0 19.001-3.853 25.86-10.712v0l161.434-161.434c6.858-6.858 10.712-16.161 10.712-25.86v0-643.137c0-20.198-16.374-36.571-36.571-36.571v0h-658.286c-20.198 0-36.571 16.374-36.571 36.571v0 804.571c0 20.198 16.374 36.571 36.571 36.571v0zM658.286 658.285h-438.857v-731.43h585.143v585.145h-146.286v146.286zM557.643 438.857c90.068 0 137.214-54.212 137.214-138.647s-53.068-117.343-138.194-117.387l-117.806 0.033v-182.857h-73.143v438.857h191.929zM553.835 365.692l-114.978 0.021v-109.705l114.978-0.009c24.369 0 42.080 4.524 52.482 12.492 10.051 8.131 15.397 21.717 15.397 42.365 0 20.16-5.537 34.379-15.923 42.343-8.671 7.015-22.552 11.182-41.853 12.23l-10.103 0.263z" />
<glyph unicode="&#xe958;" glyph-name="word" d="M679.709 731.428c9.699 0 19.001-3.853 25.86-10.712v0l161.434-161.434c6.858-6.858 10.712-16.161 10.712-25.86v0-643.137c0-20.198-16.374-36.571-36.571-36.571v0h-658.286c-20.198 0-36.571 16.374-36.571 36.571v0 804.571c0 20.198 16.374 36.571 36.571 36.571v0zM658.286 658.285h-438.857v-731.43h585.143v585.145h-146.286v146.286zM365.714 402.285l54.857-237.714 54.857 237.714h73.143l54.857-237.714 54.857 237.714h73.143l-91.429-365.714h-73.143l-54.892 237.714-54.822-237.714h-73.143l-91.429 365.714h73.143z" />
<glyph unicode="&#xe959;" glyph-name="chevron-double-up" d="M200.448-170.668l-95.705 95.705 407.257 407.257 407.257-407.257-95.705-95.705-311.553 310.873-311.553-310.873zM200.448 236.592l-95.705 95.705 407.257 407.257 407.257-407.257-95.705-95.705-311.553 310.873-311.553-310.873z" />
@@ -136,7 +136,7 @@
<glyph unicode="&#xe971;" glyph-name="treemap-alt" d="M410.864 663.701v-202.271h202.271v202.271h-202.271zM549.928 82.171h37.927c27.928 0 50.568-22.64 50.568-50.568v-151.704c0-27.928-22.64-50.568-50.568-50.568h-151.704c-27.928 0-50.568 22.64-50.568 50.568v151.704c0 27.928 22.64 50.568 50.568 50.568h37.927v143.659h-255.138v-143.659h40.225c27.928 0 50.568-22.64 50.568-50.568v-151.704c0-27.928-22.64-50.568-50.568-50.568h-151.704c-27.928 0-50.568 22.64-50.568 50.568v151.704c0 27.928 22.64 50.568 50.568 50.568h35.626v168.942c0 27.928 22.64 50.568 50.568 50.568h280.423v83.896h-63.21c-41.892 0-75.852 33.96-75.852 75.852v202.271c0 41.892 33.96 75.852 75.852 75.852h202.271c41.892 0 75.852-33.96 75.852-75.852v-202.271c0-41.892-33.96-75.852-75.852-75.852h-63.21v-83.896h280.423c27.928 0 50.568-22.64 50.568-50.568v-168.942h35.626c27.928 0 50.568-22.64 50.568-50.568v-151.704c0-27.928-22.64-50.568-50.568-50.568h-151.704c-27.928 0-50.568 22.64-50.568 50.568v151.704c0 27.928 22.64 50.568 50.568 50.568h40.225v143.659h-255.138v-143.659zM132.742 6.32v-101.137h101.137v101.137h-101.137zM790.123 6.32v-101.137h101.137v101.137h-101.137zM461.432 6.32v-101.137h101.137v101.137h-101.137z" />
<glyph unicode="&#xe972;" glyph-name="fullscreen-exit" d="M637.387 167.182h313.469v-125.387h-188.082v-188.082h-125.387v313.469zM73.143 167.182h313.469v-313.469h-125.387v188.082h-188.082v125.387zM261.224 731.427h125.387v-313.469h-313.469v125.387h188.082v188.082zM950.857 543.345v-125.387h-313.469v313.469h125.387v-188.082h188.082z" />
<glyph unicode="&#xe973;" glyph-name="severity" d="M181.734 318.751c-39.401-79.447-56.602-133.939-57.401-204.115-1.892-166.082 165.156-306.765 390.691-298.78 217.314 7.694 384.594 179.734 384.661 351.255 0.044 112.949-41.602 227.76-111.617 321.908-6.808-33.102-21.504-64.526-46.52-87.481l-54.048-49.595-16.982 71.361c-30.889 129.8-114.427 252.919-193.722 306.709-15.011-138.585-84.741-306.571-201.813-418.57l-46.149-44.15-23.644 59.33c-3.099 7.778-3.628 12.197-4.519 25.254-0.041 0.605-0.141 2.182-0.267 4.17-8.080-16.231-18.382-36.713-18.669-37.293zM712.422 433.274c6.045 5.548 58.723 83.177 19.681 179.293 122.818-106.638 210.724-272.732 210.657-445.474s-163.607-384.99-426.213-394.287c-262.606-9.296-437.341 162.127-435.289 342.32s117.319 275.051 123.535 389.243c22.508-31.044 31.313-72.123 35.266-105.245 0-7.933 1.714-26.787 5.144-56.558 26.56 25.99 39.752 40.054 39.577 42.191 120.433 142.858 154.342 328.667 151.832 411.688 204.616-86.152 273.83-354.848 275.811-363.172z" />
<glyph unicode="&#xe97a;" glyph-name="menu-my, home" d="M182.857-146.286c-18.755 0-34.213 14.118-36.325 32.306l-0.246 4.265-0.001 447.269-86.090-72.901c-14.233-12.043-34.99-11.331-48.36 0.977l-3.181 3.318c-12.043 14.233-11.331 34.99 0.977 48.36l3.318 3.181 475.429 402.286c12.396 10.489 30.031 11.442 43.38 2.861l3.866-2.861 475.429-402.286c15.419-13.047 17.342-36.122 4.295-51.541-12.043-14.233-32.632-16.966-47.855-7.041l-3.686 2.746-86.092 72.864 0.001-447.232c0-18.755-14.118-34.213-32.306-36.325l-4.265-0.246h-658.286zM512 646.985l-292.572-247.552 0.001-472.576h146.285l0.001 292.571c0 18.755 14.118 34.213 32.306 36.325l4.265 0.246h219.429c20.198 0 36.571-16.374 36.571-36.571v0l-0.001-292.571h146.286l-0.001 472.539-292.571 247.589zM585.143 182.857h-146.286v-256h146.286v256z" />
<glyph unicode="&#xe97a;" glyph-name="menu-my, home" d="M598.313-217.87c-19.728-0.571-36.183 14.958-36.754 34.686-0.021 0.69-0.021 1.381 0 2.071v179.673c0 31.296-25.369 56.665-56.665 56.665s-56.665-25.369-56.665-56.665v-179.673c0.571-19.728-14.955-36.185-34.683-36.757-0.69-0.016-1.381-0.016-2.071 0h-194.501c-60.853 0.112-110.155 49.415-110.267 110.267v322.126h-20.93c-46.942-0.425-85.339 37.285-85.771 84.224 0 0.512 0 1.026 0 1.541-0.176 22.142 8.457 43.449 24.002 59.218l371.643 393.595c60.793 63.89 161.717 66.853 226.151 6.635 1.205-2.736 3.39-4.921 6.126-6.126l371.643-394.105c32.992-33.591 32.51-87.568-1.081-120.56-16.304-16.014-38.352-24.811-61.2-24.421h-31.653v-322.128c-0.057-60.677-49.081-109.931-109.758-110.267h-197.563zM636.089-144.359h159.275c21.088 0.142 38.149 17.202 38.288 38.29v357.346c-0.571 19.728 14.955 36.183 34.683 36.757 0.69 0.021 1.383 0.021 2.071 0h68.917c5.104 0.043 9.616 3.326 11.23 8.167v0c2.018 4.942 0.802 10.613-3.063 14.295l-373.173 392.064c-32.459 34.802-86.987 36.702-121.792 4.242-0.416-0.389-0.83-0.782-1.241-1.179v0c-1.639-0.121-2.942-1.424-3.063-3.063l-371.641-392.576c-4.59-4.873-4.59-12.48 0-17.355v0c2.603-2.434 6.169-3.561 9.698-3.063h59.218c19.728 0.571 36.185-14.955 36.757-34.683 0.021-0.69 0.021-1.383 0-2.071v-358.88c0.139-21.088 17.2-38.149 38.288-38.288h157.234v176.633c0 40.599 32.912 73.511 73.511 73.511h113.333c40.599 0 73.511-32.912 73.511-73.511 0 0 0 0 0 0l-2.041-176.633z" />
<glyph unicode="&#xe97c;" glyph-name="clock" d="M950.856 292.571c0 242.373-196.482 438.856-438.856 438.856s-438.856-196.482-438.856-438.856c0-242.373 196.482-438.856 438.856-438.856s438.856 196.482 438.856 438.856zM1023.999 292.571c0-282.769-229.23-512.001-512.001-512.001s-511.999 229.23-511.999 512.001c0 282.771 229.23 511.999 511.999 511.999s512.001-229.23 512.001-511.999zM548.57 307.564l135.682-135.315c14.34-14.34 14.34-37.592 0-51.93s-37.592-14.34-51.93 0l-146.286 146.286c-6.847 6.902-10.661 16.245-10.605 25.965v329.143c0 20.198 16.373 36.57 36.57 36.57s36.57-16.373 36.57-36.57v-314.148z" />
<glyph unicode="&#xe97d;" glyph-name="cost" d="M950.856 292.571c0 242.373-196.482 438.856-438.856 438.856s-438.856-196.482-438.856-438.856c0-242.373 196.482-438.856 438.856-438.856s438.856 196.482 438.856 438.856zM1023.999 292.571c0-282.769-229.23-512.001-512.001-512.001s-511.999 229.23-511.999 512.001c0 282.771 229.23 511.999 511.999 511.999s512.001-229.23 512.001-511.999zM558.52 28.667h-85.629v108.996h-124.014v44.46h124.014v61.668l-0.737 0.717h-123.276v44.46h97.439l-143.944 251.697h97.439l115.894-220.145 115.894 220.145h97.439l-143.944-251.697h98.177v-44.46h-124.014l-0.737-0.717v-61.668h124.752v-44.46h-124.752v-108.996z" />
<glyph unicode="&#xe97e;" glyph-name="group, menu-users, persons, team" d="M584.672 324.516c59.742 44.875 98.341 114.405 98.341 192.519 0 135.015-114.88 244.873-256.135 244.873s-256.135-109.858-256.135-244.873c0-78.114 38.592-147.641 98.341-192.519-157.463-60.155-269.086-207.184-269.086-378.855v-81.602c0-22.571 19.097-40.821 42.674-40.821h768.4c23.584 0 42.677 18.251 42.677 40.821v81.6c0 171.737-111.623 318.704-269.081 378.855zM241.584 517.357c0 97.71 83.095 177.141 185.294 177.141 102.192 0 185.289-79.433 185.289-177.141 0-97.687-83.099-177.141-185.289-177.141-102.199 0-185.294 79.424-185.294 177.141zM64.16-109.797v43.346c0 191.2 162.709 346.768 362.75 346.768 199.968 0 362.647-155.57 362.647-346.768v-43.346h-725.399zM896 476.153c0 112.544-95.751 204.119-213.456 204.119-3.554 0-6.839-0.834-10.293-0.992 3.328-4.603 6.507-9.305 9.536-14.094 17.339-21.735 30.951-46.315 39.918-72.878 51.415-15.881 107.639-61.719 107.639-116.121 0-48.011-29.525-91.607-75.195-111.426-16.907-6.133-28.832-20.711-28.832-37.749 0-17.643 12.791-32.665 30.656-38.382l8.336-1.922c113.824-27.488 193.097-124.272 193.097-237.106v-31.669h-61.173c5.643-26.375 8.606-44.304 8.606-72.27h76.485c23.616 0 42.677 18.247 42.677 40.818v63.125c0.069 124.533-72.4 234.613-183.531 289.648 34.942 36.823 55.529 85.248 55.529 136.903z" />
@@ -165,10 +165,10 @@
<glyph unicode="&#xe996;" glyph-name="about" d="M36.571 804.571v-1024M73.143 804.571v-1024M109.714 804.571v-1024M146.286 804.571v-1024M182.857 804.571v-1024M219.429 804.571v-1024M256 804.571v-1024M292.571 804.571v-1024M329.143 804.571v-1024M365.714 804.571v-1024M402.286 804.571v-1024M438.857 804.571v-1024M475.429 804.571v-1024M512 804.571v-1024M548.571 804.571v-1024M585.143 804.571v-1024M621.714 804.571v-1024M658.286 804.571v-1024M694.857 804.571v-1024M731.429 804.571v-1024M768 804.571v-1024M804.571 804.571v-1024M841.143 804.571v-1024M877.714 804.571v-1024M914.286 804.571v-1024M950.857 804.571v-1024M987.429 804.571v-1024M0 768h1024M0 731.428h1024M0 694.857h1024M0 658.285h1024M0 621.714h1024M0 585.142h1024M0 548.571h1024M0 512h1024M0 475.428h1024M0 438.857h1024M0 402.285h1024M0 365.714h1024M0 329.142h1024M0 292.571h1024M0 256h1024M0 219.428h1024M0 182.857h1024M0 146.285h1024M0 109.714h1024M0 73.142h1024M0 36.571h1024M0 0h1024M0-36.572h1024M0-73.143h1024M0-109.715h1024M0-146.286h1024M0-182.858h1024M512 804.571c-282.77 0-512-229.232-512-512s229.232-512 512-512c282.77 0 512 229.232 512 512s-229.232 512-512 512zM512-146.286c-242.375 0-438.857 196.482-438.857 438.857s196.482 438.857 438.857 438.857c242.375 0 438.857-196.484 438.857-438.857s-196.482-438.857-438.857-438.857zM455.104 506.918v0.009c0-31.422 25.472-56.896 56.896-56.896 31.417 0 56.887 25.465 56.896 56.88v-0.009c0 31.422-25.472 56.896-56.896 56.896-31.415 0-56.887-25.465-56.896-56.88zM512 382.169c-25.89-0.064-46.864-21.038-46.928-46.928v-276.491c0-25.824 21.104-46.928 46.928-46.928 25.89 0.064 46.864 21.038 46.928 46.928v276.491c-0.064 25.89-21.035 46.864-46.926 46.928h-0.002z" />
<glyph unicode="&#xe997;" glyph-name="cog-outline, backend" d="M512.001 459.307v0c92.086 0 166.737-74.651 166.737-166.737s-74.651-166.737-166.737-166.737v0c-92.086 0-166.737 74.651-166.737 166.737s74.651 166.737 166.737 166.737v0zM512.001 385.202v0c-51.159 0-92.632-41.473-92.632-92.632s41.473-92.632 92.632-92.632v0c51.159 0 92.632 41.473 92.632 92.632s-41.473 92.632-92.632 92.632v0zM536.696 792.781v0c44.939-0.075 81.928-35.37 84.11-80.256l0.093-3.946v-3.242c0.185-10.931 6.855-20.583 16.785-24.696l2.353-0.852c18.897-6.299 37.294-13.95 55.060-22.899 9.634-5.113 21.305-3.946 29.716 2.76l2.038 1.779 2.297 2.297c31.729 31.641 82.661 32.951 115.975 2.983l3.149-2.964 34.885-34.922c31.684-31.661 33.035-82.585 3.075-115.882l-3.075-3.224-2.297-2.316c-8.25-8.468-10.084-21.295-4.539-31.736v0c7.148-14.225 13.476-28.848 18.952-43.796l3.946-11.264c3.224-10.43 12.357-17.822 23.047-18.989l2.501-0.148h3.242c44.939-0.075 81.928-35.37 84.11-80.256l0.093-3.946v-49.389c-0.074-44.939-35.368-81.929-80.254-84.111l-3.946-0.093h-3.242c-10.931-0.185-20.583-6.855-24.696-16.785l-0.852-2.353c-6.309-18.876-13.962-37.277-22.899-55.060-5.113-9.634-3.946-21.305 2.76-29.716l1.779-2.038 2.297-2.297c31.684-31.661 33.035-82.585 3.075-115.882l-3.075-3.224-34.904-34.904c-31.661-31.684-82.585-33.035-115.882-3.075l-3.224 3.075-2.316 2.297c-7.778 7.511-19.252 9.733-29.272 5.669l-2.464-1.13c-14.228-7.17-28.883-13.506-43.833-18.952l-11.301-3.946c-10.393-3.261-17.785-12.376-18.915-23.047l-0.148-2.501v-3.24c-0.074-44.939-35.368-81.929-80.254-84.111l-3.946-0.093h-49.391c-44.939 0.075-81.928 35.37-84.11 80.256l-0.093 3.946v3.242c-0.176 10.84-6.77 20.542-16.785 24.696l-2.353 0.852c-18.876 6.309-37.277 13.962-55.060 22.899v0c-9.572 5.077-21.243 3.993-29.716-2.76l-2.038-1.779-2.297-2.297c-31.661-31.684-82.585-33.035-115.882-3.075l-3.224 3.075-34.904 34.904c-31.684 31.661-33.035 82.585-3.075 115.882l3.075 3.224 2.297 2.316c8.244 8.467 10.078 21.305 4.539 31.736v0c-7.148 14.225-13.476 28.848-18.952 43.796l-3.946 11.264c-3.214 10.356-12.268 17.816-23.047 18.989l-2.501 0.148h-3.242c-44.939 0.075-81.928 35.37-84.11 80.256l-0.096 3.946v49.389c0.074 44.939 35.368 81.929 80.254 84.111l3.946 0.093h3.242c10.931 0.185 20.583 6.855 24.696 16.785l0.852 2.353c6.309 18.876 13.962 37.277 22.899 55.060 5.113 9.634 3.946 21.305-2.76 29.716l-1.779 2.038-2.297 2.297c-31.684 31.661-33.035 82.585-3.075 115.882l3.075 3.224 34.904 34.904c31.729 31.641 82.661 32.951 115.975 2.983l3.149-2.964 2.297-2.316c8.467-8.244 21.305-10.078 31.736-4.539v0c14.215 7.156 28.832 13.484 43.778 18.952l11.283 3.946c10.356 3.214 17.816 12.268 18.989 23.047l0.148 2.501v3.24c0.074 44.939 35.368 81.929 80.254 84.111l3.95 0.093h49.391zM487.435 718.676c-5.076 0-9.282-3.705-10.078-8.485l-0.148-1.612v-4.446c-0.704-43.778-29.457-82.164-69.807-94.67-15.507-5.15-30.606-11.431-43.722-18.008-37.553-19.953-83.369-14.265-115.53 14.413l-3.39 3.149-2.223 2.223c-3.478 3.476-8.933 3.996-13.005 1.241l-1.389-1.149-34.922-34.922c-3.512-3.515-3.944-9.063-1.019-13.080l1.037-1.223 3.001-3.001c30.717-31.55 37.534-79.311 17.656-116.716-7.336-14.617-13.635-29.735-18.341-43.722-12.524-40.443-48.817-68.677-91.835-71.141l-4.483-0.185h-3.112c-5.076 0-9.3-3.705-10.097-8.467l-0.13-1.612v-49.262c0-5.076 3.705-9.282 8.485-10.078l1.612-0.148h4.446c42.314-0.685 79.589-27.586 93.299-65.768l1.334-4.002c5.187-15.525 11.486-30.643 18.045-43.778 19.953-37.534 14.265-83.369-14.413-115.512l-3.149-3.39-2.334-2.316c-3.512-3.515-3.944-9.063-1.019-13.080l1.037-1.223 34.922-34.922c3.515-3.512 9.063-3.944 13.080-1.019l1.223 1.037 3.001 3.001c31.55 30.717 79.311 37.534 116.716 17.656 14.617-7.336 29.735-13.635 43.722-18.341 40.443-12.524 68.677-48.817 71.141-91.835l0.185-4.483v-3.112c0-5.076 3.705-9.3 8.467-10.097l1.612-0.13h49.262c5.076 0 9.282 3.705 10.078 8.485l0.148 1.612v4.372c0.667 43.722 29.309 82.072 69.826 94.744v0c15.068 4.998 29.759 11.066 43.963 18.156 37.423 19.693 82.998 14.043 115.252-14.562l3.409-3.149 2.316-2.334c3.515-3.512 9.063-3.944 13.080-1.019l1.223 1.037 34.922 34.922c3.512 3.515 3.944 9.063 1.019 13.080l-1.037 1.223-3.001 3.001c-30.717 31.55-37.534 79.311-17.656 116.716 7.336 14.617 13.635 29.735 18.341 43.722 12.524 40.443 48.817 68.677 91.835 71.141l4.483 0.185h3.112c5.076 0 9.3 3.705 10.097 8.467l0.13 1.612v49.262c0 5.076-3.705 9.282-8.485 10.078l-1.612 0.148h-4.446c-42.314 0.685-79.589 27.586-93.299 65.768l-1.334 4.002c-5.187 15.525-11.486 30.643-18.045 43.778-19.953 37.534-14.265 83.369 14.413 115.512l3.149 3.39 2.334 2.316c3.512 3.515 3.944 9.063 1.019 13.080l-1.037 1.223-34.83 34.83c-3.483 3.47-8.937 3.983-13.005 1.223l-1.389-1.149-3.001-3.001c-31.55-30.717-79.311-37.534-116.753-17.637v0c-14.114 7.12-28.712 13.236-43.685 18.304-40.443 12.542-68.677 48.835-71.141 91.854l-0.185 4.483v3.112c0 5.076-3.705 9.3-8.467 10.097l-1.612 0.13h-49.262z" />
<glyph unicode="&#xe998;" glyph-name="chat-line" d="M876.028 65.617h-419.459l-111.855-67.116v67.116h-195.748v503.35h727.060v-503.35zM65.080 541.005v-447.421c0-61.777 50.078-111.855 111.855-111.855h89.483v-111.855l190.154 111.855h391.494c61.777 0 111.855 50.078 111.855 111.855v447.421c0 61.777-50.078 111.855-111.855 111.855h-671.131c-61.777 0-111.855-50.078-111.855-111.855zM288.79 345.258h447.421v83.893h-447.421zM288.79 177.473h447.421v83.893h-447.421z" />
<glyph unicode="&#xe999;" glyph-name="statistic" horiz-adv-x="1097" d="M1024 731.428c20.198 0 36.571-16.374 36.571-36.571 0-18.755-14.118-34.213-32.306-36.325l-4.265-0.246h-73.143v-621.714c0-18.755-14.118-34.213-32.306-36.325l-4.265-0.246h-261.486l101.475-81.157c15.772-12.617 18.329-35.632 5.711-51.403-11.647-14.559-32.152-17.857-47.643-8.355l-3.76 2.643-160.011 128.032-160.011-128.032c-14.559-11.647-35.288-10.364-48.315 2.307l-3.088 3.404c-11.647 14.559-10.364 35.288 2.307 48.315l3.404 3.088 101.438 81.157h-261.449c-18.755 0-34.213 14.118-36.325 32.306l-0.246 4.265v621.714h-73.143c-20.198 0-36.571 16.374-36.571 36.571 0 18.755 14.118 34.213 32.306 36.325l4.265 0.246h950.857zM877.714 658.285h-658.286v-585.143h658.286v585.143zM784.598 544.588l3.685-2.161c15.605-10.403 20.636-30.725 12.304-47.030l-2.161-3.685-146.286-219.429c-8.794-13.19-24.955-19.082-39.956-15.025l-4.056 1.355-156.831 62.709-92.901-123.839c-11.253-15.004-31.822-18.899-47.64-9.676l-3.56 2.362c-15.004 11.253-18.899 31.822-9.676 47.64l2.362 3.56 109.714 146.286c9.020 12.026 24.356 17.19 38.605 13.415l4.235-1.403 155.314-62.157 129.818 194.774c10.403 15.605 30.725 20.636 47.030 12.304z" />
<glyph unicode="&#xe999;" glyph-name="statistic" horiz-adv-x="1097" d="M510.076-100.365v133.619h76.893v-133.619h230.881c18.442 2.707 35.583-10.053 38.29-28.492s-10.053-35.583-28.492-38.29c-3.249-0.476-6.549-0.476-9.798 0h-538.5c-18.442-2.707-35.583 10.053-38.29 28.492s10.053 35.583 28.492 38.29c3.249 0.476 6.549 0.476 9.798 0h230.729zM185.658 674.020v0c-41.736-1.715-74.216-36.886-72.602-78.628v-471.719c-1.611-41.742 30.866-76.912 72.602-78.628h725.828c41.736 1.715 74.216 36.886 72.602 78.628v471.719c1.611 41.742-30.866 76.912-72.602 78.628h-725.828zM185.658 752.651h725.828c83.444-3.485 148.351-73.8 145.155-157.256v-471.719c3.194-83.453-61.713-153.773-145.157-157.256h-725.828c-83.444 3.485-148.351 73.8-145.155 157.256v471.719c-3.194 83.453 61.713 153.773 145.157 157.256v0zM281.391 365.075v0c-8.256-18.238-28.91-27.344-47.944-21.137v0c-17.628 3.864-28.787 21.287-24.924 38.915 0.249 1.137 0.558 2.257 0.928 3.36v0c27.617 78.726 104.584 129.158 187.788 123.049 62.799 0 100.635-26.192 179.62-102.78 63.108-61.268 91.598-80.926 123.559-80.926v0c46.546-2.081 91.399 17.691 121.26 53.457v0c13.671 14.896 36.108 17.728 53.048 6.687v0c14.626-8.505 19.59-27.256 11.085-41.883-1.012-1.74-2.194-3.378-3.528-4.887v0c-45.251-53.051-112.229-82.564-181.916-80.159-62.801 0-100.635 26.192-179.62 102.78-63.108 61.268-91.598 80.926-123.559 80.926v0c-52.096 5.026-100.52-27.344-115.797-77.402v0z" />
<glyph unicode="&#xe99a;" glyph-name="exit" d="M1024 285.256c0 0 0 0 0 0 0 4.876 0 9.752-2.438 12.191 0 0 0 0 0 0-2.438 4.876-4.876 9.752-7.314 12.191l-190.171 190.171c-14.629 14.629-36.571 14.629-51.2 0s-14.629-36.571 0-51.2l126.781-126.781h-521.752c-19.505 0-36.571-17.067-36.571-36.571s17.067-36.571 36.571-36.571h526.628l-131.658-131.658c-14.629-14.629-14.629-36.571 0-51.2s36.571-14.629 51.2 0l190.171 190.171c7.314 7.314 9.752 17.067 9.752 26.819 0 0 0 2.438 0 2.438v0.001zM658.286-146.287h-463.239c-41.448 0-73.143 31.695-73.143 73.143v731.429c0 41.448 31.695 73.143 73.143 73.143h499.81c19.505 0 36.571 17.067 36.571 36.571v0c0 19.505-17.066 36.571-36.571 36.571h-499.81c-80.457 0-146.286-65.829-146.286-146.286v-731.429c0-80.457 65.829-146.285 146.286-146.285h499.81c19.505 0 36.571 17.066 36.571 36.571v0c0 19.505-17.066 36.571-36.571 36.571l-36.571-0.001z" />
<glyph unicode="&#xe99b;" glyph-name="doc, menu-doc" d="M841.143 768c20.198 0 36.571-16.374 36.571-36.571v0-877.714c0-20.198-16.374-36.571-36.571-36.571v0h-658.286c-20.198 0-36.571 16.374-36.571 36.571v0 182.857h-36.571c-20.198 0-36.571 16.374-36.571 36.571 0 18.755 14.118 34.213 32.306 36.325l4.265 0.246h36.571v146.286h-36.571c-20.198 0-36.571 16.374-36.571 36.571 0 18.755 14.118 34.213 32.306 36.325l4.265 0.246h36.571v146.286h-36.571c-20.198 0-36.571 16.374-36.571 36.571 0 18.755 14.118 34.213 32.306 36.325l4.265 0.246h36.571v182.857c0 18.755 14.118 34.213 32.306 36.325l4.265 0.246zM621.715 694.857h-402.286v-146.286h36.571c20.198 0 36.571-16.374 36.571-36.571 0-18.755-14.118-34.213-32.306-36.325l-4.265-0.246h-36.571v-146.286h36.571c20.198 0 36.571-16.374 36.571-36.571 0-18.755-14.118-34.213-32.306-36.325l-4.265-0.246h-36.571v-146.286h36.571c20.198 0 36.571-16.374 36.571-36.571 0-18.755-14.118-34.213-32.306-36.325l-4.265-0.246h-36.571v-146.286h402.286v804.571zM804.572 694.857h-109.714v-804.571h109.714v804.571z" />
<glyph unicode="&#xe99c;" glyph-name="rocket, project" d="M489.87 797.116c13.117 9.969 31.28 9.937 44.361-0.078v0l40.387-30.962 19.52-15.491c13.54-10.951 25.995-21.509 38.051-32.337 110.281-99.046 172.382-209.381 172.382-352.534v0-60.965l102.4-136.521c3.798-5.064 6.2-11.005 7.009-17.23l0.305-4.713v-182.857c0-29.209-32.554-46.632-56.858-30.429v0l-100.509 67.001h-62.062v-109.714c0-20.198-16.374-36.571-36.571-36.571-18.755 0-34.213 14.118-36.325 32.306l-0.246 4.265v109.714h-73.143v-182.857c0-20.198-16.374-36.571-36.571-36.571-18.755 0-34.213 14.118-36.325 32.306l-0.246 4.265v182.857h-73.143v-109.714c0-20.198-16.374-36.571-36.571-36.571-18.755 0-34.213 14.118-36.325 32.306l-0.246 4.265v109.714h-73.143c-0.597 0-1.191 0.014-1.781 0.043l-85.683-65.638c-24.058-18.444-58.822-1.291-58.822 29.024v0 182.857c0 7.913 2.567 15.612 7.314 21.943v0l102.363 136.485 0.036 61.001c0 139.708 58.039 247.543 161.611 343.423l10.508 9.549c16.139 14.399 32.982 28.29 52.232 43.307v0l11.368 8.79zM804.571 182.857v-126.683l36.571-24.393v102.327l-36.571 48.75zM219.392 182.82l-36.535-48.713v-96.512l36.535 27.977v117.248zM511.854 722.102l-12.149-9.325-21.499-16.781c-13.73-10.942-26.111-21.313-37.963-31.888-95.936-85.596-147.671-177.702-147.671-298.394v0l-0.036-72.448 0.037-0.695v-219.429h438.857v292.571c0 115.356-48.402 205.33-138.32 289.158v0l-9.793 8.959c-14.78 13.274-30.386 26.251-48.347 40.39v0l-23.116 17.882zM512 548.571c60.594 0 109.714-49.121 109.714-109.714s-49.121-109.714-109.714-109.714c-60.594 0-109.714 49.121-109.714 109.714s49.121 109.714 109.714 109.714zM512 475.428c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571z" />
<glyph unicode="&#xe99b;" glyph-name="doc, menu-doc" d="M64 218.331v165.248c0 20.48 14.336 36.992 32 36.992s32-16.512 32-36.864v-165.44c0-20.352-14.336-36.864-32-36.864s-32 16.448-32 36.864v0.064zM874.944-219.429h-661.824c-82.24 0-149.12 64.832-149.12 144.576v74.24c0 22.272 18.624 40.32 41.6 40.384 23.040 0 41.728-18.112 41.728-40.384v-74.24c0-35.2 29.44-63.744 65.728-63.744h661.888c36.288 0 65.728 28.608 65.728 63.744v734.848c0 35.2-29.44 63.744-65.728 63.744h-661.824c-36.224 0-65.728-28.608-65.728-63.744v-23.872c-0.352-22.633-18.967-40.704-41.6-40.384v0c-22.654-0.427-41.362 17.591-41.792 40.245 0 0.048 0 0.094 0 0.139v23.872c0 79.744 66.88 144.576 149.12 144.576h661.76c82.24 0 149.12-64.832 149.12-144.576v-734.848c0-79.744-66.88-144.576-149.056-144.576v0zM788.928 471.835h-358.848c-23.040 0-41.792 17.152-41.792 38.4 0 21.12 18.752 38.336 41.792 38.336h358.848c23.040 0 41.792-17.152 41.792-38.4 0-21.12-18.752-38.336-41.792-38.336zM790.208 253.595h-358.848c-23.040 0-41.728 17.216-41.728 38.4 0 21.12 18.688 38.4 41.728 38.4h358.848c23.040 0 41.792-17.28 41.792-38.4 0-21.184-18.688-38.4-41.792-38.4zM790.208 36.571h-358.848c-23.040 0-41.728 17.152-41.728 38.4 0 21.12 18.688 38.336 41.728 38.336h358.848c23.040 0 41.792-17.152 41.792-38.4 0-21.12-18.688-38.336-41.792-38.336zM214.080 69.467h-168.384c-23.040 0-41.792 17.152-41.792 38.4 0 21.12 18.688 38.336 41.792 38.336h168.32c23.104 0 41.792-17.216 41.792-38.4s-18.688-38.4-41.728-38.4v0.064zM210.176 465.115h-168.384c-23.040 0-41.792 17.216-41.792 38.4 0 21.12 18.688 38.4 41.792 38.4h168.32c23.104 0 41.792-17.28 41.792-38.4 0-21.184-18.688-38.4-41.728-38.4z" />
<glyph unicode="&#xe99c;" glyph-name="rocket, project" d="M603.113-109.637v0c0.574-13.054-9.545-24.107-22.599-24.69s-24.101 9.525-24.672 22.578c-0.025 0.569-0.030 1.141-0.014 1.712l-0.583 70.965c-0.11 13.067 10.393 23.76 23.461 23.881s23.751-10.375 23.863-23.44l0.583-70.965-0.039-0.039zM522.567-196.599v0c-0.469-13.058-11.433-23.273-24.489-22.816-12.379 0.434-22.32 10.343-22.793 22.72l0.103 160.987c-0.005 13.067 10.583 23.673 23.65 23.689s23.664-10.565 23.671-23.632c0 0 0 0 0 0l-0.142-160.951zM447.813-121.692v0c-0.373-13.061-11.262-23.355-24.322-22.992-12.398 0.345-22.418 10.201-22.96 22.592l-0.727 94.569c-0.59 13.054 9.518 24.119 22.569 24.718s24.112-9.497 24.699-22.549c0.025-0.565 0.030-1.127 0.016-1.691l0.649-94.567 0.075-0.078zM767.314 370.374c83.387-68.181 112-150.514 82.937-243.109-17.401-55.426-50.45-85.344-93.31-99.264v0c-7.022-2.29-14.178-4.142-21.429-5.547-19.637-9.71-35.099 0.711-44.64 18.048-4.466 8.133-7.899 17.68-12.361 32.688l-1.259 4.315-0.763 2.521c-3.015-4.057-5.97-8.16-8.866-12.302-25.031-35.493-30.571-42.025-47.913-47.531-61.271-19.275-172.377-19.433-196.741-9.285-15.961 6.562-30.777 18.091-45.627 33.936v0c-9.493 10.272-18.402 21.067-26.683 32.338l-6.032 8.171c-0.919-3.744-1.685-8.023-2.565-13.637l-2.144-14.133c-0.706-4.761-1.68-9.479-2.91-14.133-5.010-18.373-15.634-31.593-36.907-26.368-54.345 13.307-74.848 31.824-109.431 87.954-53.474 86.565-29.568 175.070 66.103 259.287 3.209 95.6 24.898 178.377 65.374 247.867 41.278 71.058 97.87 133.527 169.426 187.296 8.254 6.496 19.787 6.807 28.341 0.699 164.341-111.232 247.431-255.15 247.36-429.847l0.039 0.039zM363.045 588.411c-37.685-64.715-57.541-143.061-59.221-235.527l-0.233-10.77-8.215-6.917c-86.080-72.567-105.547-138.763-64.478-205.28 24.009-38.834 36.071-52.654 62.805-61.81l1.609 10.848c0.88 5.998 2.030 11.954 3.369 17.877 6.773 28.153 19.842 46.642 46.233 46.693 12.681 0.005 17.719-4.576 27.799-17.024 2.137-2.597 4.391-5.536 7.52-9.813l8.283-11.035c7.216-9.888 15.001-19.358 23.287-28.407 10.69-11.301 20.578-19.051 29.287-22.638 13.403-5.534 113.166-5.415 164.505 10.722 2.025 0.651 7.68 7.298 23.349 29.609v0c8.016 11.861 16.864 23.134 26.482 33.737 2.981 3.209 6 6.229 9.093 9.093 10.432 9.591 25.365 10.094 36.286 1.161v0c5.127-4.432 9.063-10.075 11.451-16.418 3.168-7.216 4.046-10.158 10.336-31.659l1.221-4.126c1.68-5.801 3.589-11.534 5.723-17.184 5.577 1.454 10.962 2.793 12.873 3.481 29.070 9.369 50.199 28.512 62.704 68.354 23.826 75.977-0.441 140.821-76.002 198.882l-9.545 7.253 0.272 11.954c3.463 158.469-66.951 288.567-212.962 392.165-60.366-47.689-108.32-102.059-143.865-163.184l0.041-0.039zM602.629 385.89v0c-50.837-50.793-133.189-50.793-183.943 0s-50.686 133.147 0.151 183.943c50.837 50.793 133.189 50.793 183.943 0 0.014-0.014 0.025-0.025 0.039-0.039l-0.007 0.007c50.757-50.791 50.695-133.143-0.137-183.943-0.014-0.014-0.025-0.025-0.039-0.039l-0.007 0.071zM569.223 419.298v0c32.327 32.373 32.313 84.8-0.032 117.102-10.231 10.217-22.96 17.573-36.921 21.337v0c-44.162 11.84-89.591-14.368-101.467-58.539-7.687-28.592 0.469-59.102 21.394-80.023 32.261-32.261 84.663-32.24 117.026 0.123v0z" />
<glyph unicode="&#xe99d;" glyph-name="usecase" d="M1024 684.1v-783.058c0-66.534-53.937-120.471-120.471-120.471h-783.058c-66.534 0-120.471 53.937-120.471 120.471v783.058c0 66.534 53.937 120.471 120.471 120.471h783.058c66.534 0 120.471-53.937 120.471-120.471zM890.622 731.428h-757.242c-33.267 0-60.235-26.968-60.235-60.235v-757.242c0-33.267 26.968-60.235 60.235-60.235h757.242c33.267 0 60.235 26.968 60.235 60.235v757.242c0 33.267-26.968 60.235-60.235 60.235zM406.675 241.371l51.785-51.712-77.531-77.605 77.531-77.531-51.712-51.785-77.531 77.605-77.678-77.531-51.712 51.712 77.605 77.531-77.531 77.531 51.639 51.785 77.605-77.605 77.531 77.605zM877.714 146.286v-73.143h-292.57v73.143h292.57zM460.801 636.342l56.027-47.104-188.050-224.11-56.027 47.031v0.146l-87.772 73.655 46.958 56.027 87.918-73.655 140.946 168.010zM877.714 511.999v-73.143h-292.57v73.143h292.57z" />
<glyph unicode="&#xe99e;" glyph-name="aiux" d="M567.855 60.226c42.915 20.685 72.589 64.359 72.589 115.022 0 70.631-57.495 127.873-128.438 127.873s-128.438-57.242-128.438-127.873c0-50.33 29.262-93.722 71.714-114.586l-140.24-280.091h-248.416c-50.912 0-84.057 53.325-61.275 98.689l445.354 887.583c25.25 50.304 97.325 50.304 122.575 0l445.379-887.583c22.756-45.363-10.362-98.689-61.275-98.689h-248.442l-141.089 279.656z" />
<glyph unicode="&#xe9a0;" glyph-name="theme" d="M1023.063 475.586l-0.125 0.574c-0.1 0.674-0.1 2.497-0.1 3.496v1.374l-1.948 8.517-0.25 0.699c-6.618 18.731-18.282 30.32-26.773 38.712l-6.169 6.169c-6.565 7.191-13.483 14.050-20.729 20.554-5.944 5.444-11.539 10.565-17.258 16.583l-0.25 0.25-152.671 148.001c-7.892 7.967-16.933 16.933-30.22 23.751-14.411 7.742-32.268 9.316-54.695 9.316-1.249 0-4.595 0-9.166 0.125-9.965 0.1-24.95 0.324-37.088 0.324-14.186 0-18.082-0.225-20.029-0.549v0c-6.115-1.251-12.125-2.962-17.982-5.12l-1.349-0.449-19.355-12.837-0.225-0.125c-8.816-6.493-14.635-14.311-18.88-20.105l-0.449-0.574-0.125-0.225c-1.255-1.838-2.632-3.591-4.121-5.245-15.435-12.238-26.099-15.66-56.069-21.903l-0.35-0.125-0.35-0.1c-4.92-1.374-8.816-1.499-10.514-1.599l-18.332 0.9c-15.784 2.972-27.572 5.694-37.537 9.99l-0.324 0.125c-8.716 3.422-17.407 9.665-20.28 13.411l-1.499 1.923c-6.496 9.239-14.275 17.505-23.102 24.55-7.543 6.144-22.977 14.436-32.618 16.359-7.217 1.499-18.656 2.272-34.665 2.272-25.974 0-54.844-1.923-56.094-2.048l-1.024-0.1-25.875-6.368-0.799-0.35c-17.282-6.818-29.196-18.631-37.088-26.473l-159.89-155.842c-4.695-4.121-8.816-8.191-12.812-12.187-3.422-3.397-6.743-6.694-11.439-10.889-13.986-11.938-35.015-29.995-41.459-63.411-3.646-18.855 3.696-35.54 7.693-44.531l0.25-0.449c7.193-16.009 18.282-26.224 26.299-33.717l1.499-1.374 0.574-0.474c1.249-0.9 2.972-2.598 4.246-3.846l5.819-5.794c5.719-6.243 11.888-11.814 17.858-17.282l19.806-19.656 36.489-34.765 10.415-10.34c0.699-0.674 1.374-1.474 2.198-2.148 4.096-4.096 9.141-9.215 15.884-13.986l0.25-0.225c14.985-9.99 33.641-15.784 51.149-15.784 7.793 0 15.11 1.024 21.853 3.172v-349.648c0-13.062-0.1-27.722 5.394-41.708 7.443-19.081 22.877-33.516 33.867-40.11 18.082-11.689 40.184-13.286 61.464-13.286h339.010l30.57-0.449c25.274 0 54.121 1.374 76.774 18.282 14.534 11.039 25.774 29.096 29.995 48.301l0.125 0.549 0.674 5.694v0.574c0.474 30.768 0.474 60.54 0.474 91.908v280.593c13.077-4.060 26.964-4.765 40.385-2.048 31.244 5.794 51.174 28.522 63.062 42.257l96.028 92.357 2.647 3.297 0.999 1.499c6.993 9.066 23.027 30.42 18.457 61.213l-0.125 0.574zM851.609 364.25l-0.9-1.024c-6.643-7.268-15.584-17.258-21.653-18.407v0c-0.976-0.221-1.972-0.339-2.972-0.35-4.795 0-8.916 3.297-19.231 12.962l-33.192 31.718-44.056-30.12v-363.084c0-14.885-0.125-29.97-0.25-44.656-0.1-13.737-0.199-27.822-0.199-41.682v0c-0.775-1.515-1.74-2.925-2.872-4.195-4.92-3.422-24.6-3.871-32.842-3.871l-349.774 0.449-19.455-0.449c-16.808 0-21.504 1.499-22.652 2.048v0c-2.031 1.538-3.773 3.424-5.145 5.569-0.699 3.496-0.699 13.411-0.699 18.98v431.566l-48.752 28.397-6.643-7.492c-6.032-6.844-12.176-13.589-18.432-20.23l-0.225-0.225c-7.092-7.367-12.937-13.286-19.455-15.784h-0.449c-3.398 0.275-6.687 1.326-9.616 3.072l-0.449 0.324-0.474 0.25c-1.917 1.347-3.648 2.943-5.145 4.745v0c-0.753 0.738-1.478 1.504-2.173 2.298l-47.852 45.878c-6.669 6.171-13.117 12.578-19.331 19.206l-0.799 0.799-2.647 1.923c-3.547 2.847-6.743 6.144-10.065 9.54-1.149 1.249-2.397 2.497-3.646 3.646l-6.543 6.918-0.1 0.125c-2.647 2.622-4.92 4.895-7.793 7.143-6.169 5.245-8.342 7.742-9.741 10.69v0c-0.367 1.244-0.818 2.462-1.349 3.646v0c-0.24 0.47-0.433 0.964-0.574 1.474 1.599 6.243 5.719 10.44 18.531 21.803l0.25 0.25 13.237 13.161c1.499 1.499 3.122 2.947 4.82 4.545 1.948 1.823 3.896 3.621 6.069 5.794l132.867 128.946 29.321 28.622c9.041 9.54 10.739 10.34 15.235 10.565l13.737 1.024h57.766l0.924-0.324c1.024-0.35 1.823-0.574 2.298-0.924l0.799-0.324 0.799-0.25c0.629-0.25 1.281-0.434 1.948-0.549 2.847-2.747 5.719-6.019 9.141-10.565l1.499-1.948 0.25-0.225c16.109-20.23 41.757-32.143 49.2-35.314l0.225-0.125c15.459-6.243 31.817-10.565 54.945-14.534l0.449-0.125 16.583-1.474c3.322-0.574 6.868-0.799 10.764-0.799 7.318 0 15.81 0.924 26.099 2.947 36.738 7.043 59.291 14.436 87.663 36.588 7.668 5.919 12.712 12.263 16.958 18.182 1.499 1.599 2.747 3.172 3.871 4.545 0.125 0.25 0.35 0.449 0.574 0.674l6.868 3.871c1.149 0.225 2.647 0.449 4.47 0.9h17.157c2.647 0 5.394 0.125 8.017 0.25 2.747 0.1 5.62 0.225 8.492 0.225h0.9c5.495 0.449 11.089 0.449 16.933 0.449 13.862 0 19.48-0.924 21.179-1.249 3.896-2.272 9.391-7.742 14.186-12.487l150.274-145.204c6.069-6.493 12.587-12.487 20.029-19.331 5.045-4.521 11.913-10.789 17.282-16.583l0.25-0.225 6.844-6.818 0.25-0.1c4.346-3.996 6.844-6.719 8.566-9.215l0.699-4.646v-0.25c0.1-0.449 0.324-1.573-3.797-7.143l-94.081-90.659-3.198-3.747z" />

Before

Width:  |  Height:  |  Size: 185 KiB

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.
Binary file not shown.