Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burgess <88810029+bx80@users.noreply.github.com>2021-12-22 23:26:51 +0300
committerGitHub <noreply@github.com>2021-12-22 23:26:51 +0300
commitd68dc6dd06606e8a7611c53d8ee63da8afbf99f7 (patch)
treeb0363d254677ec77d42ff75352992405b41aef81
parent10afd46db0e033e67127fb4e50eea986ed5296e6 (diff)
Show a summary of new features (#18065)
* Added "What is new" notification display, populated by a new event * Removed test example event hook * Added support for applying a link attribute to menu items, fixes layout issue for mobile with html menu items * Updated UI test screenshots * Revert accidental edit * Hide the "What's new" icon if there are no new features to show * Changed to use changes.json, track user last viewed, added ui test * Fix UserManager unit tests broken by new ts_changes_viewed user field * Moved getChanges to separate helper class, added unit test, added user view access check * Updated to add new changes table and populate only on plugin update/install * Added missing fixture class, updated UI screenshots * Updated matomo font to add ringing bell and new releases icons * Fix for integration test * Reworked class structure, removed unnecessary angular directive, merged templates, other tidy ups * built vue files * built vue files * Added null user check, missing table exception handling, show plugin name in change title, better handling of missing change fields * Added sample changes file, moved UserChanges db code to changes model, added return type hints, better db error code handling, various other improvements * Revert accidental UI screenshot commit * Fix for incorrect link name parameter in sample changes, switched back to using $db->query for INSERT IGNORE * Integration test fix, UI screenshot updates * Test fix * Added link styling, show CoreHome changes without plugin prefix in title * Update UI test screenshot * Added styles to the popover, added event for filtering changes * Test fix * UI test screenshot updates Co-authored-by: sgiehl <stefan@matomo.org> Co-authored-by: bx80 <bx80@users.noreply.github.com>
-rw-r--r--core/Changes/Model.php219
-rw-r--r--core/Changes/UserChanges.php77
-rw-r--r--core/Db/Schema/Mysql.php19
-rw-r--r--core/Menu/MenuAbstract.php15
-rw-r--r--core/Plugin.php22
-rw-r--r--core/Updates/4.7.0-b2.php70
-rw-r--r--core/Version.php2
-rw-r--r--plugins/CoreAdminHome/Controller.php21
-rw-r--r--plugins/CoreAdminHome/CoreAdminHome.php1
-rw-r--r--plugins/CoreAdminHome/Menu.php26
-rw-r--r--plugins/CoreAdminHome/lang/en.json5
-rw-r--r--plugins/CoreAdminHome/stylesheets/whatIsNew.less10
-rw-r--r--plugins/CoreAdminHome/templates/whatIsNew.twig28
-rw-r--r--plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin.png4
-rw-r--r--plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin_svg.png4
-rw-r--r--plugins/CoreHome/Controller.php1
-rw-r--r--plugins/CoreHome/templates/_topBar.twig2
-rw-r--r--plugins/CoreHome/tests/Integration/ChangesTest.php50
-rw-r--r--plugins/CoreHome/tests/UI/Changes_spec.js29
-rw-r--r--plugins/CoreHome/tests/UI/expected-screenshots/Changes_show_popover.png3
-rw-r--r--plugins/CoreHome/tests/UI/expected-screenshots/ShowChanges_view.png3
-rw-r--r--plugins/CorePluginsAdmin/CorePluginsAdmin.php30
-rw-r--r--plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png4
-rw-r--r--plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_removed.png4
-rw-r--r--plugins/ExamplePlugin/changes.json14
-rw-r--r--plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_noentries.png4
-rw-r--r--plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_withentries.png4
-rw-r--r--plugins/Morpheus/fonts/matomo.svg2
-rw-r--r--plugins/Morpheus/fonts/matomo.ttfbin27416 -> 27692 bytes
-rw-r--r--plugins/Morpheus/fonts/matomo.woffbin27492 -> 27768 bytes
-rw-r--r--plugins/Morpheus/fonts/matomo.woff2bin11172 -> 11356 bytes
-rw-r--r--plugins/Morpheus/fonts/selection.json3
-rw-r--r--plugins/Morpheus/stylesheets/base/icons.css6
-rw-r--r--plugins/SegmentEditor/tests/UI/expected-screenshots/SegmentSelectorEditorTest_complex_segment.png4
-rw-r--r--plugins/Transitions/Transitions.php1
-rw-r--r--plugins/UsersManager/API.php1
-rw-r--r--plugins/UsersManager/Model.php1
-rw-r--r--plugins/UsersManager/tests/Integration/UsersManagerTest.php1
-rw-r--r--plugins/UsersManager/tests/System/ApiTest.php2
-rw-r--r--tests/PHPUnit/Fixtures/CreateChanges.php75
-rw-r--r--tests/UI/expected-screenshots/Menus_mobile_top.png4
-rw-r--r--tests/UI/expected-screenshots/QuickAccess_search_1.png4
-rw-r--r--tests/UI/expected-screenshots/QuickAccess_search_category.png4
-rw-r--r--tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png4
-rw-r--r--tests/UI/expected-screenshots/Theme_home.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_period_select_date_range_click.png4
-rw-r--r--tests/UI/expected-screenshots/enable_framed_pages_embed_whole_app.png4
47 files changed, 753 insertions, 42 deletions
diff --git a/core/Changes/Model.php b/core/Changes/Model.php
new file mode 100644
index 0000000000..a9b46ad7a3
--- /dev/null
+++ b/core/Changes/Model.php
@@ -0,0 +1,219 @@
+<?php
+/**
+ * Matomo - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+namespace Piwik\Changes;
+
+use Piwik\Exception\Exception;
+use Piwik\Piwik;
+use Piwik\Common;
+use Piwik\Date;
+use Piwik\Db;
+use Piwik\Tracker\Db\DbException;
+use Piwik\Updater\Migration;
+use Piwik\Container\StaticContainer;
+use Piwik\Plugin\Manager as PluginManager;
+
+/**
+ * Change model class
+ *
+ * Handle all data access operations for changes
+ *
+ */
+class Model
+{
+
+ const NO_CHANGES_EXIST = 0;
+ const CHANGES_EXIST = 1;
+ const NEW_CHANGES_EXIST = 2;
+
+ private $pluginManager;
+
+ /**
+ * @var Db\AdapterInterface
+ */
+ private $db;
+
+ /**
+ * @param Db\AdapterInterface|null $db
+ * @param PluginManager|null $pluginManager
+ */
+ public function __construct(?Db\AdapterInterface $db = null, ?PluginManager $pluginManager = null)
+ {
+ $this->db = ($db ?? Db::get());
+ $this->pluginManager = ($pluginManager ?? PluginManager::getInstance());
+ }
+
+ /**
+ * Add any new changes for a plugin to the changes table
+ *
+ * @param string $pluginName
+ *
+ * @throws \Exception
+ */
+ public function addChanges(string $pluginName): void
+ {
+ if ($this->pluginManager->isValidPluginName($pluginName) && $this->pluginManager->isPluginInFilesystem($pluginName)) {
+
+ $plugin = $this->pluginManager->loadPlugin($pluginName);
+ if (!$plugin) {
+ return;
+ }
+
+ $changes = $plugin->getChanges();
+ foreach ($changes as $change) {
+ $this->addChange($pluginName, $change);
+ }
+ }
+ }
+
+ /**
+ * Remove all changes for a plugin
+ *
+ * @param string $pluginName
+ */
+ public function removeChanges(string $pluginName): void
+ {
+ $table = Common::prefixTable('changes');
+
+ try {
+ $this->db->query("DELETE FROM " . $table . " WHERE plugin_name = ?", [$pluginName]);
+ } catch (\Exception $e) {
+ if (Db::get()->isErrNo($e, Migration\Db::ERROR_CODE_TABLE_NOT_EXISTS)) {
+ return;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Add a change item to the database table
+ *
+ * @param string $pluginName
+ * @param array $change
+ */
+ public function addChange(string $pluginName, array $change): void
+ {
+ if(!isset($change['version']) || !isset($change['title']) || !isset($change['description'])) {
+ StaticContainer::get('Psr\Log\LoggerInterface')->warning(
+ "Change item for plugin {plugin} missing version, title or description fields - ignored",
+ ['plugin' => $pluginName]);
+ return;
+ }
+
+ $table = Common::prefixTable('changes');
+
+ $fields = ['created_time', 'plugin_name', 'version', 'title', 'description'];
+ $params = [Date::now()->getDatetime(), $pluginName, $change['version'], $change['title'], $change['description']];
+
+ if (isset($change['link_name']) && isset($change['link'])) {
+ $fields[] = 'link_name';
+ $fields[] = 'link';
+ $params[] = $change['link_name'];
+ $params[] = $change['link'];
+ }
+
+ $insertSql = 'INSERT IGNORE INTO ' . $table . ' ('.implode(',', $fields).')
+ VALUES ('.Common::getSqlStringFieldsArray($params).')';
+
+ try {
+ $this->db->query($insertSql, $params);
+ } catch (\Exception $e) {
+ if (Db::get()->isErrNo($e, Migration\Db::ERROR_CODE_TABLE_NOT_EXISTS)) {
+ return;
+ }
+ throw $e;
+ }
+ }
+
+ /**
+ * Check if any changes items exist
+ *
+ * @param int|null $newerThanId Only count new changes as having a key > than this sequential key
+ *
+ * @return int
+ */
+ public function doChangesExist(?int $newerThanId = null): int
+ {
+ $changes = $this->getChangeItems();
+
+ $all = 0;
+ $new = 0;
+ foreach ($changes as $c) {
+ $all++;
+ if ($newerThanId !== null && isset($c['idchange']) && $c['idchange'] > $newerThanId) {
+ $new++;
+ }
+ }
+
+ if ($all === 0) {
+ return self::NO_CHANGES_EXIST;
+ } else if ($all > 0 && $new === 0) {
+ return self::CHANGES_EXIST;
+ } else {
+ return self::NEW_CHANGES_EXIST;
+ }
+ }
+
+ /**
+ * Return an array of change items from the changes table
+ *
+ * @return array
+ * @throws DbException
+ */
+ public function getChangeItems(): array
+ {
+ $showAtLeast = 10; // Always show at least this number of changes
+ $expireOlderThanDays = 90; // Don't show changes that were added to the table more than x days ago
+
+ $table = Common::prefixTable('changes');
+ $selectSql = "SELECT * FROM " . $table . " WHERE title IS NOT NULL ORDER BY idchange DESC";
+
+ try {
+ $changes = $this->db->fetchAll($selectSql);
+ } catch (\Exception $e) {
+ if (Db::get()->isErrNo($e, Migration\Db::ERROR_CODE_TABLE_NOT_EXISTS)) {
+ return [];
+ }
+ throw $e;
+ }
+
+ // Remove expired changes, only if there are at more than the minimum changes
+ $cutOffDate = Date::now()->subDay($expireOlderThanDays);
+ foreach ($changes as $k => $change) {
+ if (isset($change['idchange'])) {
+ $changes[$k]['idchange'] = (int)$change['idchange'];
+ }
+ if (count($changes) > $showAtLeast && $change['created_time'] < $cutOffDate) {
+ unset($changes[$k]);
+ }
+ }
+
+ /**
+ * Event triggered before changes are displayed
+ *
+ * Can be used to filter out unwanted changes
+ *
+ * **Example**
+ *
+ * Piwik::addAction('Changes.filterChanges', function ($changes) {
+ * foreach ($changes as $k => $c) {
+ * // Hide changes for the CoreHome plugin
+ * if (isset($c['plugin_name']) && $c['plugin_name'] == 'CoreHome') {
+ * unset($changes[$k]);
+ * }
+ * }
+ * });
+ *
+ * @param array &$changes
+ */
+ Piwik::postEvent('Changes.filterChanges', array(&$changes));
+
+ return $changes;
+ }
+
+}
diff --git a/core/Changes/UserChanges.php b/core/Changes/UserChanges.php
new file mode 100644
index 0000000000..5e971c776d
--- /dev/null
+++ b/core/Changes/UserChanges.php
@@ -0,0 +1,77 @@
+<?php
+/**
+ * Matomo - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+namespace Piwik\Changes;
+
+use Piwik\Db;
+use Piwik\Changes\Model as ChangesModel;
+use Piwik\Plugins\UsersManager\Model as UsersModel;
+
+/**
+ * CoreHome user changes class
+ */
+class UserChanges
+{
+
+ /**
+ * @var Db\AdapterInterface
+ */
+ private $db;
+ private $user;
+
+ /**
+ * @param array $user
+ * @param Db\AdapterInterface|null $db
+ */
+ public function __construct(array $user, ?Db\AdapterInterface $db = null)
+ {
+ $this->db = ($db ?? Db::get());
+ $this->user = $user;
+ }
+
+ /**
+ * Return a value indicating if there are any changes available to show the user
+ *
+ * @return int Changes\Model::NO_CHANGES_EXIST, Changes\Model::CHANGES_EXIST or Changes\Model::NEW_CHANGES_EXIST
+ * @throws \Exception
+ */
+ public function getNewChangesStatus(): int
+ {
+ $idchangeLastViewed = (isset($this->user['idchange_last_viewed']) ? $this->user['idchange_last_viewed'] : null);
+
+ $changesModel = new ChangesModel($this->db);
+ return $changesModel->doChangesExist($idchangeLastViewed);
+ }
+
+ /**
+ * Return an array of changes and update the user's changes last viewed value
+ *
+ * @return array
+ */
+ public function getChanges(): array
+ {
+ $changesModel = new ChangesModel(Db::get());
+ $changes = $changesModel->getChangeItems();
+
+ // Record the time that changes were viewed for the current user
+ $maxId = null;
+ foreach ($changes as $k => $change) {
+ if ($maxId < $change['idchange']) {
+ $maxId = $change['idchange'];
+ }
+ }
+
+ if ($maxId) {
+ $usersModel = new UsersModel();
+ $usersModel->updateUserFields($this->user['login'], ['idchange_last_viewed' => $maxId]);
+ }
+
+ return $changes;
+ }
+
+}
diff --git a/core/Db/Schema/Mysql.php b/core/Db/Schema/Mysql.php
index 92d2b882fb..09b0b48922 100644
--- a/core/Db/Schema/Mysql.php
+++ b/core/Db/Schema/Mysql.php
@@ -52,6 +52,7 @@ class Mysql implements SchemaInterface
superuser_access TINYINT(2) unsigned NOT NULL DEFAULT '0',
date_registered TIMESTAMP NULL,
ts_password_modified TIMESTAMP NULL,
+ idchange_last_viewed TIMESTAMP NULL,
PRIMARY KEY(login)
) ENGINE=$engine DEFAULT CHARSET=$charset
",
@@ -358,6 +359,19 @@ class Mysql implements SchemaInterface
PRIMARY KEY (`key`)
) ENGINE=$engine DEFAULT CHARSET=$charset
",
+ 'changes' => "CREATE TABLE `{$prefixTables}changes` (
+ `idchange` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
+ `created_time` DATETIME NOT NULL,
+ `plugin_name` VARCHAR(255) NOT NULL,
+ `version` VARCHAR(20) NOT NULL,
+ `title` VARCHAR(255) NOT NULL,
+ `description` TEXT NULL,
+ `link_name` VARCHAR(255) NULL,
+ `link` VARCHAR(255) NULL,
+ PRIMARY KEY(`idchange`),
+ UNIQUE KEY unique_plugin_version_title (`plugin_name`, `version`, `title`)
+ ) ENGINE=$engine DEFAULT CHARSET=$charset
+ ",
);
return $tables;
@@ -574,8 +588,9 @@ class Mysql implements SchemaInterface
// note that the token_auth value is anonymous, which is assigned by default as well in the Login plugin
$db = $this->getDb();
$db->query("INSERT IGNORE INTO " . Common::prefixTable("user") . "
- (`login`, `password`, `email`, `twofactor_secret`, `superuser_access`, `date_registered`, `ts_password_modified`)
- VALUES ( 'anonymous', '', 'anonymous@example.org', '', 0, '$now', '$now' );");
+ (`login`, `password`, `email`, `twofactor_secret`, `superuser_access`, `date_registered`, `ts_password_modified`,
+ `idchange_last_viewed`)
+ VALUES ( 'anonymous', '', 'anonymous@example.org', '', 0, '$now', '$now' , NULL);");
$model = new Model();
$model->addTokenAuth('anonymous', 'anonymous', 'anonymous default token', $now);
diff --git a/core/Menu/MenuAbstract.php b/core/Menu/MenuAbstract.php
index 2783d7f48d..5a276dce2e 100644
--- a/core/Menu/MenuAbstract.php
+++ b/core/Menu/MenuAbstract.php
@@ -98,10 +98,11 @@ abstract class MenuAbstract extends Singleton
* @param bool|string $tooltip An optional tooltip to display or false to display the tooltip.
* @param bool|string $icon An icon classname, such as "icon-add". Only supported by admin menu
* @param bool|string $onclick Will execute the on click handler instead of executing the link. Only supported by admin menu.
+ * @param string $attribute Will add this string as a link attribute.
* @since 2.7.0
* @api
*/
- public function addItem($menuName, $subMenuName, $url, $order = 50, $tooltip = false, $icon = false, $onclick = false)
+ public function addItem($menuName, $subMenuName, $url, $order = 50, $tooltip = false, $icon = false, $onclick = false, $attribute = false)
{
// make sure the idSite value used is numeric (hack-y fix for #3426)
if (isset($url['idSite']) && !is_numeric($url['idSite'])) {
@@ -116,7 +117,8 @@ abstract class MenuAbstract extends Singleton
$order,
$tooltip,
$icon,
- $onclick
+ $onclick,
+ $attribute
);
}
@@ -144,7 +146,7 @@ abstract class MenuAbstract extends Singleton
* @param int $order
* @param bool|string $tooltip Tooltip to display.
*/
- private function buildMenuItem($menuName, $subMenuName, $url, $order = 50, $tooltip = false, $icon = false, $onclick = false)
+ private function buildMenuItem($menuName, $subMenuName, $url, $order = 50, $tooltip = false, $icon = false, $onclick = false, $attribute = false)
{
if (!isset($this->menu[$menuName])) {
$this->menu[$menuName] = array(
@@ -158,17 +160,22 @@ abstract class MenuAbstract extends Singleton
$this->menu[$menuName]['_order'] = $order;
$this->menu[$menuName]['_name'] = $menuName;
$this->menu[$menuName]['_tooltip'] = $tooltip;
+ $this->menu[$menuName]['_attribute'] = $attribute;
if (!empty($this->menuIcons[$menuName])) {
$this->menu[$menuName]['_icon'] = $this->menuIcons[$menuName];
} else {
$this->menu[$menuName]['_icon'] = '';
}
+ if (!empty($onclick)) {
+ $this->menu[$menuName]['_onclick'] = $onclick;
+ }
}
if (!empty($subMenuName)) {
$this->menu[$menuName][$subMenuName]['_url'] = $url;
$this->menu[$menuName][$subMenuName]['_order'] = $order;
$this->menu[$menuName][$subMenuName]['_name'] = $subMenuName;
$this->menu[$menuName][$subMenuName]['_tooltip'] = $tooltip;
+ $this->menu[$menuName][$subMenuName]['_attribute'] = $attribute;
$this->menu[$menuName][$subMenuName]['_icon'] = $icon;
$this->menu[$menuName][$subMenuName]['_onclick'] = $onclick;
$this->menu[$menuName]['_hasSubmenu'] = true;
@@ -185,7 +192,7 @@ abstract class MenuAbstract extends Singleton
private function buildMenu()
{
foreach ($this->menuEntries as $menuEntry) {
- $this->buildMenuItem($menuEntry[0], $menuEntry[1], $menuEntry[2], $menuEntry[3], $menuEntry[4], $menuEntry[5], $menuEntry[6]);
+ $this->buildMenuItem($menuEntry[0], $menuEntry[1], $menuEntry[2], $menuEntry[3], $menuEntry[4], $menuEntry[5], $menuEntry[6], $menuEntry[7]);
}
}
diff --git a/core/Plugin.php b/core/Plugin.php
index 109592635a..4e1df7eba9 100644
--- a/core/Plugin.php
+++ b/core/Plugin.php
@@ -648,6 +648,28 @@ class Plugin
}
return $dependency;
}
+
+ /**
+ * Get all changes for this plugin
+ *
+ * @return array Array of changes
+ * [{"title":"abc","description":"xyz","linkName":"def","link":"https://link","version":"1.2.3"}]
+ */
+ public function getChanges()
+ {
+ $file = Manager::getPluginDirectory($this->pluginName).'/changes.json';
+ if (file_exists($file)) {
+ $json = file_get_contents($file);
+ if ($json) {
+ $changes = json_decode($json, true);
+ if ($changes && is_array($changes)) {
+ return array_reverse($changes);
+ }
+ }
+ }
+ return [];
+ }
+
}
}
diff --git a/core/Updates/4.7.0-b2.php b/core/Updates/4.7.0-b2.php
new file mode 100644
index 0000000000..3317067c8d
--- /dev/null
+++ b/core/Updates/4.7.0-b2.php
@@ -0,0 +1,70 @@
+<?php
+
+/**
+ * Matomo - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+
+namespace Piwik\Updates;
+
+use Piwik\Updater;
+use Piwik\Updates as PiwikUpdates;
+use Piwik\Updater\Migration;
+use Piwik\Updater\Migration\Factory as MigrationFactory;
+
+/**
+ * Update for version 4.7.0-b2
+ */
+class Updates_4_7_0_b2 extends PiwikUpdates
+{
+ /**
+ * @var MigrationFactory
+ */
+ private $migration;
+
+ public function __construct(MigrationFactory $factory)
+ {
+ $this->migration = $factory;
+ }
+
+ /**
+ * Here you can define one or multiple SQL statements that should be executed during the update.
+ *
+ * @param Updater $updater
+ *
+ * @return Migration[]
+ */
+ public function getMigrations(Updater $updater)
+ {
+ $migrations = [];
+
+ // add column to track the last change a user viewed the changes list
+ $migrations[] = $this->migration->db->addColumn('user', 'idchange_last_viewed',
+ 'INTEGER UNSIGNED NULL');
+
+ $migrations[] = $this->migration->db->createTable('changes', array(
+ 'idchange' => 'INT(11) NOT NULL AUTO_INCREMENT',
+ 'created_time' => 'DATETIME NOT NULL',
+ 'plugin_name' => 'VARCHAR(255) NOT NULL',
+ 'version' => 'VARCHAR(20) NOT NULL',
+ 'title' => 'VARCHAR(255) NOT NULL',
+ 'description' => 'TEXT NOT NULL',
+ 'link_name' => 'VARCHAR(255) NULL',
+ 'link' => 'VARCHAR(255) NULL',
+ ), $primaryKey = 'idchange');
+
+
+ $migrations[] = $this->migration->db->addUniqueKey('changes', ['plugin_name', 'version', 'title'], 'unique_plugin_version_title');
+
+ return $migrations;
+ }
+
+ public function doUpdate(Updater $updater)
+ {
+ $updater->executeMigrations(__FILE__, $this->getMigrations($updater));
+ }
+
+}
diff --git a/core/Version.php b/core/Version.php
index 013b7f6080..2fc51f589e 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -20,7 +20,7 @@ final class Version
* The current Matomo version.
* @var string
*/
- const VERSION = '4.7.0-b1';
+ const VERSION = '4.7.0-b2';
const MAJOR_VERSION = 4;
diff --git a/plugins/CoreAdminHome/Controller.php b/plugins/CoreAdminHome/Controller.php
index cdc2baafbd..a8737f7d6d 100644
--- a/plugins/CoreAdminHome/Controller.php
+++ b/plugins/CoreAdminHome/Controller.php
@@ -18,6 +18,7 @@ use Piwik\Menu\MenuTop;
use Piwik\Piwik;
use Piwik\Plugin;
use Piwik\Plugin\ControllerAdmin;
+use Piwik\Changes\UserChanges;
use Piwik\Plugins\CorePluginsAdmin\CorePluginsAdmin;
use Piwik\Plugins\Marketplace\Marketplace;
use Piwik\Plugins\CustomVariables\CustomVariables;
@@ -30,6 +31,7 @@ use Piwik\Url;
use Piwik\View;
use Piwik\Widget\WidgetsList;
use Piwik\SettingsPiwik;
+use Piwik\Plugins\UsersManager\Model as UsersModel;
class Controller extends ControllerAdmin
{
@@ -311,4 +313,23 @@ class Controller extends ControllerAdmin
$view->mail = $mail;
}
+ /**
+ * Show the what is new changes list
+ */
+ public function whatIsNew()
+ {
+ Piwik::checkUserHasSomeViewAccess();
+ Piwik::checkUserIsNotAnonymous();
+
+ $model = new UsersModel();
+ $user = $model->getUser(Piwik::getCurrentUserLogin());
+ if (is_array($user)) {
+ $userChanges = new UserChanges($user);
+ $changes = $userChanges->getChanges();
+ return $this->renderTemplate('whatIsNew', ['changes' => $changes]);
+ } else {
+ throw new \Exception('Unable to getUser() when attempting to show whatIsNew');
+ }
+ }
+
}
diff --git a/plugins/CoreAdminHome/CoreAdminHome.php b/plugins/CoreAdminHome/CoreAdminHome.php
index a72b7f069e..ae915c7c6f 100644
--- a/plugins/CoreAdminHome/CoreAdminHome.php
+++ b/plugins/CoreAdminHome/CoreAdminHome.php
@@ -60,6 +60,7 @@ class CoreAdminHome extends \Piwik\Plugin
$stylesheets[] = "plugins/Morpheus/stylesheets/main.less";
$stylesheets[] = "plugins/CoreAdminHome/stylesheets/generalSettings.less";
$stylesheets[] = "plugins/CoreAdminHome/angularjs/trackingfailures/trackingfailures.directive.less";
+ $stylesheets[] = "plugins/CoreAdminHome/stylesheets/whatIsNew.less";
}
public function getJsFiles(&$jsFiles)
diff --git a/plugins/CoreAdminHome/Menu.php b/plugins/CoreAdminHome/Menu.php
index 5edf4bb989..36ef25914d 100644
--- a/plugins/CoreAdminHome/Menu.php
+++ b/plugins/CoreAdminHome/Menu.php
@@ -8,11 +8,12 @@
*/
namespace Piwik\Plugins\CoreAdminHome;
-use Piwik\Db;
use Piwik\Menu\MenuAdmin;
use Piwik\Menu\MenuTop;
use Piwik\Piwik;
-use Piwik\Plugin;
+use Piwik\Changes\UserChanges;
+use Piwik\Changes\Model as ChangesModel;
+use Piwik\Plugins\UsersManager\Model as UsersModel;
class Menu extends \Piwik\Plugin\Menu
{
@@ -47,9 +48,28 @@ class Menu extends \Piwik\Plugin\Menu
public function configureTopMenu(MenuTop $menu)
{
$url = $this->urlForModuleAction('CoreAdminHome', 'home');
-
$menu->registerMenuIcon('CoreAdminHome_Administration', 'icon-settings');
$menu->addItem('CoreAdminHome_Administration', null, $url, 980, Piwik::translate('CoreAdminHome_Administration'));
+
+ if (!Piwik::isUserIsAnonymous() && Piwik::isUserHasSomeViewAccess()) {
+ $model = new UsersModel();
+ $user = $model->getUser(Piwik::getCurrentUserLogin());
+ if ($user) {
+ $userChanges = new UserChanges($user);
+
+ $newChangesStatus = $userChanges->getNewChangesStatus();
+ if ($newChangesStatus !== ChangesModel::NO_CHANGES_EXIST) {
+
+ $icon = ($newChangesStatus === ChangesModel::NEW_CHANGES_EXIST ? 'icon-notifications_on' : 'icon-reporting-actions');
+
+ $menu->registerMenuIcon('CoreAdminHome_WhatIsNew', $icon);
+ $menu->addItem('CoreAdminHome_WhatIsNew', null, null, 990,
+ Piwik::translate('CoreAdminHome_WhatIsNewTooltip'),
+ $icon, "Piwik_Popover.createPopupAndLoadUrl('module=CoreAdminHome&action=whatIsNew', '".
+ addslashes(Piwik::translate('CoreAdminHome_WhatIsNewTooltip'))."','what-is-new-popup')");
+ }
+ }
+ }
}
} \ No newline at end of file
diff --git a/plugins/CoreAdminHome/lang/en.json b/plugins/CoreAdminHome/lang/en.json
index c1d81e0071..51f29e3d34 100644
--- a/plugins/CoreAdminHome/lang/en.json
+++ b/plugins/CoreAdminHome/lang/en.json
@@ -150,6 +150,11 @@
"UseCustomLogo": "Use a custom logo",
"ValidPiwikHostname": "Valid Matomo Hostname",
"ViewAllTrackingFailures": "View all tracking failures",
+ "WhatIsNew": "What's New",
+ "WhatIsNewTooltip": "Learn what's new in Matomo",
+ "WhatIsNewTitle": "Here's what's new in Matomo",
+ "WhatIsNewNoChangesTitle": "No recent changes",
+ "WhatIsNewNoChanges": "There's nothing new at the moment",
"WithOptionalRevenue": "with optional revenue",
"YouAreNotOptedOut": "You are not opted out.",
"YouAreOptedOut": "You are currently opted out.",
diff --git a/plugins/CoreAdminHome/stylesheets/whatIsNew.less b/plugins/CoreAdminHome/stylesheets/whatIsNew.less
new file mode 100644
index 0000000000..9c6ab3344c
--- /dev/null
+++ b/plugins/CoreAdminHome/stylesheets/whatIsNew.less
@@ -0,0 +1,10 @@
+.change-link {
+ color: #1976d2 !important;
+}
+
+.what-is-new-popup {
+ width: calc(80%);
+ left: calc(10%) !important;
+ height: auto;
+ background: #fafafa;
+}
diff --git a/plugins/CoreAdminHome/templates/whatIsNew.twig b/plugins/CoreAdminHome/templates/whatIsNew.twig
new file mode 100644
index 0000000000..1de720cc5e
--- /dev/null
+++ b/plugins/CoreAdminHome/templates/whatIsNew.twig
@@ -0,0 +1,28 @@
+<div piwik-content-intro>
+ <h2>{{ 'CoreAdminHome_WhatIsNewTitle'|translate|e('html_attr') }}</h2>
+</div>
+<div class="whatisnew">
+
+ {% for change in changes %}
+
+ <div class="card">
+ <div class="card-content">
+ <span style="float: left; font-size:32px; color:#3450A3; margin-right:10px" class="icon-new_releases"></span>
+ {% if change.plugin_name == "CoreHome" %}
+ <h2 class="card-title">{{ change.title }}</h2>
+ {% else %}
+ <h2 class="card-title">{{ change.plugin_name }} - {{ change.title }}</h2>
+ {% endif %}
+ {{ change.description | raw }}
+ {% if not change.link is empty and not change.link_name is empty %}
+ <p>
+ <br>
+ <a class="change-link" href="{{ change.link|e('html_attr') }}" target="_blank" rel="noopener">{{ change.link_name }}</a>
+ </p>
+ {% endif %}
+ </div>
+ </div>
+
+ {% endfor %}
+
+</div>
diff --git a/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin.png b/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin.png
index 77e14d687d..62a67f8c20 100644
--- a/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin.png
+++ b/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:56678a1545d68a748583a913cff604cc48a68bd9b93943f86de0b1ddbe6cbb63
-size 14473
+oid sha256:c01f292613b84bcb79877b66e38608f9cacb6add0be71b1a84965ef15d6026f8
+size 14680
diff --git a/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin_svg.png b/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin_svg.png
index c9684eaf96..2668bbb0b3 100644
--- a/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin_svg.png
+++ b/plugins/CoreAdminHome/tests/UI/expected-screenshots/CustomLogo_admin_svg.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:5aa33b34d1c2aa38ec3a0f456c3ef689b41ec54dc667580cc1856893bd5de6ed
-size 11191
+oid sha256:4ac829858800aa32bb866f8c844da5cd274f718f8439ccbc7a06a4aec61f0616
+size 11397
diff --git a/plugins/CoreHome/Controller.php b/plugins/CoreHome/Controller.php
index a8f6fa09b0..ad1096e1e5 100644
--- a/plugins/CoreHome/Controller.php
+++ b/plugins/CoreHome/Controller.php
@@ -326,4 +326,5 @@ class Controller extends \Piwik\Plugin\Controller
ViewDataTableManager::saveViewDataTableParameters($login, $reportId, $parameters, $containerId);
}
+
}
diff --git a/plugins/CoreHome/templates/_topBar.twig b/plugins/CoreHome/templates/_topBar.twig
index febe664681..961c6d6b8a 100644
--- a/plugins/CoreHome/templates/_topBar.twig
+++ b/plugins/CoreHome/templates/_topBar.twig
@@ -13,6 +13,8 @@
{{ menu._html|raw }}
{% else %}
<a {% if menu._tooltip is defined %}title="{{ menu._tooltip }}"{% endif %}
+ {% if menu._attribute is defined %}{{ menu._attribute }}{% endif %}
+ {% if menu._onclick is defined %}onClick="{{ menu._onclick }}"{% endif %}
{% if menu._url.module is defined %}
id="topmenu-{{ menu._url.module|lower }}"
href="index.php{{ menu._url|urlRewriteWithParameters }}"
diff --git a/plugins/CoreHome/tests/Integration/ChangesTest.php b/plugins/CoreHome/tests/Integration/ChangesTest.php
new file mode 100644
index 0000000000..3c22ad03f3
--- /dev/null
+++ b/plugins/CoreHome/tests/Integration/ChangesTest.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * Matomo - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+namespace Piwik\Plugins\CoreHome\tests\Integration;
+
+use Piwik\Tests\Fixtures\CreateChanges;
+use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
+use Piwik\Changes\Model as ChangesModel;
+
+/**
+ * @group CoreHome
+ * @group CoreHomeTest
+ * @group CoreHomeChanges
+ */
+class ChangesTest extends IntegrationTestCase
+{
+
+ /**
+ * @var CreateChanges
+ */
+ public static $fixture;
+
+ public function test_CoreHomeChanges_ShouldSortChangeListMostRecentFirst()
+ {
+ $json = '{"idchange":5,"plugin_name":"CoreHome","version":"4.6.0b5","title":"New feature x added","description":"Now you can do a with b like this","link_name":"For more information go here","link":"https:\/\/www.matomo.org"}';
+ $changesModel = new ChangesModel();
+ $changes = $changesModel->getChangeItems();
+ $r = reset($changes);
+ unset($r['created_time']);
+ $this->assertEquals($json, json_encode($r, true));
+ }
+
+ public function test_CoreHomeChanges_ShouldAllowChangeItemAddWithoutLink()
+ {
+ $json = '{"idchange":4,"plugin_name":"CoreHome","version":"4.5.0","title":"New feature y added","description":"Now you can do c with d like this","link_name":null,"link":null}';
+ $changesModel = new ChangesModel();
+ $changes = $changesModel->getChangeItems();
+ $r = $changes[1];
+ unset($r['created_time']);
+ $this->assertEquals($json, json_encode($r, true));
+ }
+
+}
+
+ChangesTest::$fixture = new CreateChanges();
diff --git a/plugins/CoreHome/tests/UI/Changes_spec.js b/plugins/CoreHome/tests/UI/Changes_spec.js
new file mode 100644
index 0000000000..0ba2a77924
--- /dev/null
+++ b/plugins/CoreHome/tests/UI/Changes_spec.js
@@ -0,0 +1,29 @@
+/*!
+ * Matomo - free/libre analytics platform
+ *
+ * Dashboard screenshot tests.
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+describe('Changes', function () {
+ this.timeout(0);
+
+ this.fixture = "Piwik\\Tests\\Fixtures\\CreateChanges";
+
+ var url = "?module=CoreAdminHome&action=home&idSite=1&period=day&date=yesterday";
+
+ it('should show changes', async function () {
+ await page.goto(url);
+ await page.waitForNetworkIdle();
+
+ await page.click('.right > li:nth-child(5) > a:nth-child(1)');
+ await page.waitForNetworkIdle();
+
+ var elem = await page.waitForSelector('#Piwik_Popover');
+
+ expect(await elem.screenshot()).to.matchImage('show_popover');
+ });
+
+});
diff --git a/plugins/CoreHome/tests/UI/expected-screenshots/Changes_show_popover.png b/plugins/CoreHome/tests/UI/expected-screenshots/Changes_show_popover.png
new file mode 100644
index 0000000000..bd5f69163c
--- /dev/null
+++ b/plugins/CoreHome/tests/UI/expected-screenshots/Changes_show_popover.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f844aa8ae955f79da1581be5763ba61d01774043be2b5856df5f3b7894dbc24c
+size 72788
diff --git a/plugins/CoreHome/tests/UI/expected-screenshots/ShowChanges_view.png b/plugins/CoreHome/tests/UI/expected-screenshots/ShowChanges_view.png
new file mode 100644
index 0000000000..7843fcffbc
--- /dev/null
+++ b/plugins/CoreHome/tests/UI/expected-screenshots/ShowChanges_view.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5391866af7ca6c0522d75dbbfcc1b798ad234728ab7d1f8dcb7b13d2040fbdbd
+size 42705
diff --git a/plugins/CorePluginsAdmin/CorePluginsAdmin.php b/plugins/CorePluginsAdmin/CorePluginsAdmin.php
index 77e059ac42..3a08314a58 100644
--- a/plugins/CorePluginsAdmin/CorePluginsAdmin.php
+++ b/plugins/CorePluginsAdmin/CorePluginsAdmin.php
@@ -13,6 +13,9 @@ use Piwik\Piwik;
use Piwik\Plugin;
use Piwik\Plugins\CoreHome\SystemSummary;
use Piwik\Plugins\CorePluginsAdmin\Model\TagManagerTeaser;
+use Piwik\Changes\Model as ChangesModel;
+use Piwik\Db;
+use Piwik\Plugin\Manager as PluginManager;
class CorePluginsAdmin extends Plugin
{
@@ -26,10 +29,35 @@ class CorePluginsAdmin extends Plugin
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
'System.addSystemSummaryItems' => 'addSystemSummaryItems',
'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys',
- 'PluginManager.pluginActivated' => 'onPluginActivated'
+ 'PluginManager.pluginActivated' => 'onPluginActivated',
+ 'PluginManager.pluginInstalled' => 'addPluginChanges',
+ 'Updater.componentUpdated' => 'addPluginChanges',
+ 'PluginManager.pluginUninstalled' => 'removePluginChanges'
);
}
+ /**
+ * Add any changes from newly installed or updated plugins to the changes table
+ *
+ * @param string $pluginName The name of the plugin that was updated or installed
+ */
+ public function addPluginChanges(string $pluginName)
+ {
+ $changes = new ChangesModel(Db::get(), PluginManager::getInstance());
+ $changes->addChanges($pluginName);
+ }
+
+ /**
+ * Remove any changes from a plugin that has been uninstalled
+ *
+ * @param string $pluginName The name of the plugin that was uninstalled
+ */
+ public function removePluginChanges(string $pluginName)
+ {
+ $changes = new ChangesModel(Db::get(), PluginManager::getInstance());
+ $changes->removeChanges($pluginName);
+ }
+
public function onPluginActivated($pluginName)
{
if ($pluginName === 'TagManager') {
diff --git a/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png b/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png
index 5c691ad82c..184a0b020c 100644
--- a/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png
+++ b/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a07b081dc2be59969c55d42c713a61692e05aa9d17de04ea0ecff18762d20c0b
-size 293532
+oid sha256:3634f84fc30d02a78db4f593cc9832e2030cf919a364fd9440434877544bcdb8
+size 293765
diff --git a/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_removed.png b/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_removed.png
index 50abd73c78..0079b750e8 100644
--- a/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_removed.png
+++ b/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_removed.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:b0b4fddfece501d072fd0fccea9dfafa0994f77f4025c85a57932352217fa5be
-size 481675
+oid sha256:6bf01b80a74bf8f2502c70828d5e42ffe522daf7ada344573108bfb75e27526c
+size 481881
diff --git a/plugins/ExamplePlugin/changes.json b/plugins/ExamplePlugin/changes.json
new file mode 100644
index 0000000000..a1a4e4d85e
--- /dev/null
+++ b/plugins/ExamplePlugin/changes.json
@@ -0,0 +1,14 @@
+[
+ {
+ "title": "New feature x added",
+ "description": "Now you can do a with b like this",
+ "link_name": "For more information go here",
+ "link": "https://www.matomo.org",
+ "version": "4.0.2"
+ },
+ {
+ "title": "New feature y added",
+ "description": "Now you can do c with d like this.",
+ "version": "4.0.1"
+ }
+]
diff --git a/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_noentries.png b/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_noentries.png
index 5e12f8534c..71fdde407f 100644
--- a/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_noentries.png
+++ b/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_noentries.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0fb0f55731af170b52697c4ca0319c4cc66dab563fb7ec0cdaabd385180cbde6
-size 49836
+oid sha256:1a3a14f44995dcc03d4853344e183dae826eaf7b0cb6508e235323d6a2c846a0
+size 50032
diff --git a/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_withentries.png b/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_withentries.png
index 1e1f1312db..1d538ec8c2 100644
--- a/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_withentries.png
+++ b/plugins/Login/tests/UI/expected-screenshots/Login_bruteforcelog_withentries.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7c13b6ae466331318983ff9f1fc50653c6f564be343df20a4e03fda7cb7b191a
-size 67218
+oid sha256:ef818716e505eb33817233173a5919d10088337060691d42415a8bc22a0f2522
+size 67412
diff --git a/plugins/Morpheus/fonts/matomo.svg b/plugins/Morpheus/fonts/matomo.svg
index f74d632a5c..270d32fdab 100644
--- a/plugins/Morpheus/fonts/matomo.svg
+++ b/plugins/Morpheus/fonts/matomo.svg
@@ -131,6 +131,8 @@
<glyph unicode="&#xe8b8;" glyph-name="settings" data-tags="settings" d="M512 246.385c98.554 0 180.282 81.728 180.282 180.282s-81.728 180.282-180.282 180.282-180.282-81.728-180.282-180.282 81.728-180.282 180.282-180.282zM894.197 376.188l108.169-84.131c9.615-7.211 12.019-21.634 4.808-33.653l-103.361-177.878c-7.211-12.019-19.23-14.423-31.249-9.615l-127.399 50.479c-26.441-19.23-55.286-38.46-86.535-50.479l-19.23-134.61c-2.404-12.019-12.019-21.634-24.038-21.634h-206.723c-12.019 0-21.634 9.615-24.038 21.634l-19.23 134.61c-31.249 12.019-60.094 28.845-86.535 50.479l-127.399-50.479c-12.019-4.808-24.038-2.404-31.249 9.615l-103.361 177.878c-7.211 12.019-4.808 26.441 4.808 33.653l108.169 84.131c-2.404 16.826-2.404 33.653-2.404 50.479s0 33.653 2.404 50.479l-108.169 84.131c-9.615 7.211-12.019 21.634-4.808 33.653l103.361 177.878c7.211 12.019 19.23 14.423 31.249 9.615l127.399-50.479c26.441 19.23 55.286 38.46 86.535 50.479l19.23 134.61c2.404 12.019 12.019 21.634 24.038 21.634h206.723c12.019 0 21.634-9.615 24.038-21.634l19.23-134.61c31.249-12.019 60.094-28.845 86.535-50.479l127.399 50.479c12.019 4.808 24.038 2.404 31.249-9.615l103.361-177.878c7.211-12.019 4.808-26.441-4.808-33.653l-108.169-84.131c2.404-16.826 2.404-33.653 2.404-50.479s0-33.653-2.404-50.479z" />
<glyph unicode="&#xe900;" glyph-name="segmented-visits-log" data-tags="contacts" d="M726 212.667v64c0 72-142 108-214 108s-214-36-214-108v-64h428zM512 650.667c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684zM170-85.333v86h684v-86h-684zM854 938.667v-86h-684v86h684z" />
<glyph unicode="&#xe901;" glyph-name="watch_later" data-tags="watch_later" d="M692 246.667l34 56-192 116v222h-64v-256zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125z" />
+<glyph unicode="&#xe902;" glyph-name="new_releases" data-tags="new_releases" d="M554 384.667v256h-84v-256h84zM554 212.667v86h-84v-86h84zM982 426.667l-104-118 14-158-154-34-80-136-146 62-146-62-80 134-154 36 14 158-104 118 104 120-14 156 154 34 80 136 146-62 146 62 80-136 154-34-14-158z" />
+<glyph unicode="&#xe903;" glyph-name="notifications_on" data-tags="notifications_on" d="M512 0.667q-36 0-61 25t-25 59h170q0-36-24-60t-60-24zM768 468.667v-212l86-86v-42h-684v42l86 86v212q0 100 51 174t141 96v30q0 26 18 45t46 19 46-19 18-45v-30q90-22 141-96t51-174zM852 490.667q-4 72-48 152t-102 122l60 60q166-128 176-334h-86zM324 764.667q-58-42-103-122t-49-152h-86q10 206 176 334z" />
<glyph unicode="&#xe922;" glyph-name="evolution" data-tags="timeline" d="M982 596.667c0-46-40-84-86-84-8 0-16 0-22 2l-152-152c2-6 4-14 4-22 0-46-40-84-86-84s-86 38-86 84c0 8 2 16 4 22l-110 110c-6-2-14-4-22-4s-16 2-22 4l-194-194c2-6 4-14 4-22 0-46-40-86-86-86s-86 40-86 86 40 84 86 84c8 0 16 0 22-2l194 194c-2 6-2 14-2 22 0 46 38 86 84 86s86-40 86-86c0-8 0-16-2-22l108-108c6 2 14 2 22 2s16 0 22-2l152 150c-2 6-4 14-4 22 0 46 40 86 86 86s86-40 86-86z" />
<glyph unicode="&#xe95e;" glyph-name="archive" data-tags="box-add, box, download, storage, inbox, archive" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
<glyph unicode="&#xe9a5;" glyph-name="rocket" data-tags="rocket, jet, speed, spaceship, fast" d="M704 896l-320-320h-192l-192-256c0 0 203.416 56.652 322.066 30.084l-322.066-414.084 421.902 328.144c58.838-134.654-37.902-328.144-37.902-328.144l256 192v192l320 320 64 320-320-64z" />
diff --git a/plugins/Morpheus/fonts/matomo.ttf b/plugins/Morpheus/fonts/matomo.ttf
index e759768352..19981edb07 100644
--- a/plugins/Morpheus/fonts/matomo.ttf
+++ b/plugins/Morpheus/fonts/matomo.ttf
Binary files differ
diff --git a/plugins/Morpheus/fonts/matomo.woff b/plugins/Morpheus/fonts/matomo.woff
index 6dc1ea4fb3..609f70d090 100644
--- a/plugins/Morpheus/fonts/matomo.woff
+++ b/plugins/Morpheus/fonts/matomo.woff
Binary files differ
diff --git a/plugins/Morpheus/fonts/matomo.woff2 b/plugins/Morpheus/fonts/matomo.woff2
index 2a907dc717..eeda6f7a4a 100644
--- a/plugins/Morpheus/fonts/matomo.woff2
+++ b/plugins/Morpheus/fonts/matomo.woff2
Binary files differ
diff --git a/plugins/Morpheus/fonts/selection.json b/plugins/Morpheus/fonts/selection.json
index fa6695f6cf..ae3fac1147 100644
--- a/plugins/Morpheus/fonts/selection.json
+++ b/plugins/Morpheus/fonts/selection.json
@@ -1 +1,2 @@
-{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M576 64c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M480 96h64v128h-64v-128z","M897.024 1024h-770.048c-70.144 0-126.976-56.832-126.976-126.976v0c0-70.144 56.832-126.976 126.976-126.976h769.984c70.144 0 126.976 56.832 126.976 126.976v0c0.064 70.144-56.768 126.976-126.912 126.976z","M512 192c-194.432 0-352 157.568-352 352v160h704v-160c0-194.432-157.568-352-352-352zM384 608c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96-43.008 96-96 96zM640 608c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96-43.008 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-alien"],"grid":0},"attrs":[],"properties":{"order":131,"id":0,"prevSize":32,"code":58880,"name":"alien"},"setIdx":0,"setId":11,"iconIdx":0},{"icon":{"paths":["M736 256h-448c-17.664 0-32 14.336-32 32s14.336 32 32 32h448c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M736 384h-448c-17.664 0-32 14.336-32 32s14.336 32 32 32h448c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M608 512h-320c-17.664 0-32 14.336-32 32s14.336 32 32 32h320c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M832 0h-640c-106.048 0-192 85.952-192 192v448c0 106.048 85.952 192 192 192h320l195.2 184.32c25.024 18.816 60.8 0.896 60.8-30.4v-153.92h64c106.048 0 192-85.952 192-192v-448c0-106.048-85.952-192-192-192zM896 640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-448c0-35.264 28.736-64 64-64h640c35.264 0 64 28.736 64 64v448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-annotation"],"grid":0},"attrs":[],"properties":{"order":132,"id":1,"prevSize":32,"code":58881,"name":"annotation"},"setIdx":0,"setId":11,"iconIdx":1},{"icon":{"paths":["M704 224v576l-321.024-286.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-left"],"grid":0},"attrs":[],"properties":{"order":133,"id":2,"prevSize":32,"code":58882,"name":"arrow-left"},"setIdx":0,"setId":11,"iconIdx":2},{"icon":{"paths":["M414.976 192v576l321.024-286.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-right"],"grid":0},"attrs":[],"properties":{"order":134,"id":3,"prevSize":32,"code":58883,"name":"arrow-right"},"setIdx":0,"setId":11,"iconIdx":3},{"icon":{"paths":["M1024 320c0-35.328-28.672-64-64-64h-80.832l-36.608-118.912c-23.808-72.448-91.008-121.088-167.232-121.088h-326.656c-76.224 0-143.424 48.64-167.232 121.024l-35.072 106.624-0.256 12.352h-82.112c-35.328 0-64 28.672-64 64v96c0 3.712 1.472 6.912 2.112 10.432-1.024 8-2.112 15.936-2.112 24.256v74.112c112.128 88.896 295.296 147.2 502.4 147.2 219.456 0 412.032-65.408 521.6-163.456v-57.856c0-8.256-1.024-16.32-2.112-24.32 0.64-3.52 2.112-6.72 2.112-10.368v-96zM640 258.688v189.312c0 70.4-57.6 128-128 128s-128-57.6-128-128v-189.312h-139.84l28.544-91.648c10.816-32.96 41.28-55.040 75.968-55.040h326.656c34.688 0 65.216 22.080 76.032 55.040l30.144 91.648h-141.504z","M576 448c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M0 600.768v231.232c0 7.296 1.344 14.208 2.176 21.312-0.64 3.584-2.176 6.912-2.176 10.688v96c0 35.328 28.672 64 64 64h96c3.776 0 7.104-1.536 10.688-2.176 7.104 0.832 14.016 2.176 21.312 2.176h640c7.296 0 14.208-1.344 21.312-2.176 3.584 0.64 6.912 2.176 10.688 2.176h96c35.328 0 64-28.672 64-64v-96c0-3.776-1.536-7.104-2.176-10.688 0.832-7.104 2.176-14.016 2.176-21.312v-244.096c-125.12 90.432-312.448 148.096-521.6 148.096-198.976 0-377.664-52.352-502.4-135.232z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-business"],"grid":0},"attrs":[],"properties":{"order":135,"id":4,"prevSize":32,"code":58884,"name":"business"},"setIdx":0,"setId":11,"iconIdx":4},{"icon":{"paths":["M320 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M512 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 768v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M512 768v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 768v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M832 64v-64h-128v64h-384v-64h-128v64c-106.048 0-192 85.952-192 192v576c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-576c0-106.048-85.952-192-192-192zM896 832c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-512h768v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-calendar"],"grid":0},"attrs":[],"properties":{"order":136,"id":5,"prevSize":32,"code":58885,"name":"calendar"},"setIdx":0,"setId":11,"iconIdx":5},{"icon":{"paths":["M864 1024v0c-52.8 0-96-43.2-96-96v-288c0-52.8 43.2-96 96-96v0c52.8 0 96 43.2 96 96v288c0 52.8-43.2 96-96 96z","M480 1024v0c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96v0c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96z","M96 1024v0c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96v0c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-bar"],"grid":0},"attrs":[],"properties":{"order":137,"id":6,"prevSize":32,"code":58886,"name":"chart-bar"},"setIdx":0,"setId":11,"iconIdx":6},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM896 832c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-208.32c29.888-13.504 77.312-38.4 154.304-80.32 33.152 57.472 94.528 96.64 165.696 96.64 36.544 0 70.4-10.752 99.456-28.544l143.296 143.296c17.664 17.664 46.336 17.664 64 0v0c17.664-17.664 17.664-46.336 0-64l-143.296-143.296c3.776-6.208 7.040-12.672 10.176-19.264l126.528 56.256 147.84-232.256v479.808zM320 448c0-70.592 57.408-128 128-128 66.944 0 121.408 51.84 126.912 117.376l-128.384-57.088-13.952 7.68c-34.304 18.88-73.28 40.256-112.384 61.76 0-0.576-0.192-1.152-0.192-1.728zM449.472 451.712l113.92 50.624c-20.48 43.392-64.32 73.664-115.392 73.664-46.848 0-87.424-25.536-109.76-63.232 32.832-17.984 69.376-38.016 111.232-61.056zM896 232.96l-172.16 270.592-85.12-37.824c0.576-5.888 1.28-11.712 1.28-17.728 0-106.048-85.952-192-192-192s-192 85.952-192 192c0 11.968 1.408 23.616 3.52 34.944-51.136 28.032-98.688 54.016-131.52 71.808v-362.752c0-35.264 28.736-64 64-64h640c35.264 0 64 28.736 64 64v40.96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-line-details"],"grid":0},"attrs":[],"properties":{"order":229,"id":7,"prevSize":32,"code":58887,"name":"chart-line-details"},"setIdx":0,"setId":11,"iconIdx":7},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM192 128h640c35.264 0 64 28.736 64 64v72l-188.992 141.76-128-128-236.928 177.664-68.928-103.424h-145.152v-160c0-35.264 28.736-64 64-64zM896 344v363.968l-263.68-105.536-115.328 115.328-139.328-209.024 195.328-146.496 128 128 195.008-146.24zM290.816 493.888l-162.816 122.112v-200h110.848l51.968 77.888zM832 896h-640c-35.264 0-64-28.736-64-64v-136l198.336-148.8 180.672 270.976 140.672-140.672 248.32 99.328v55.168c0 35.264-28.736 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-line"],"grid":0},"attrs":[],"properties":{"order":228,"id":8,"prevSize":32,"code":58888,"name":"chart-line"},"setIdx":0,"setId":11,"iconIdx":8},{"icon":{"paths":["M576 475.776l404.352 242.624c27.904-63.232 43.648-132.928 43.648-206.4 0-261.056-195.52-476.032-448-507.584v471.36z","M448 548.224v-543.808c-252.48 31.552-448 246.528-448 507.584 0 282.752 229.248 512 512 512 163.392 0 308.544-76.8 402.304-195.968l-466.304-279.808z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-pie"],"grid":0},"attrs":[],"properties":{"order":227,"id":9,"prevSize":32,"code":58889,"name":"chart-pie"},"setIdx":0,"setId":11,"iconIdx":9},{"icon":{"paths":["M23.552 864.832l841.28-841.28c37.44-37.44 98.176-37.44 135.616 0v0c37.44 37.44 37.44 98.176 0 135.616l-841.28 841.28c-37.44 37.44-98.176 37.44-135.616 0v0c-37.44-37.44-37.44-98.176 0-135.616z","M864.64 1000.256l-841.28-841.28c-37.44-37.44-37.44-98.176 0-135.616v0c37.44-37.44 98.176-37.44 135.616 0l841.28 841.28c37.44 37.44 37.44 98.176 0 135.616v0c-37.504 37.44-98.176 37.44-135.616 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-close"],"grid":0},"attrs":[],"properties":{"order":226,"id":10,"prevSize":32,"code":58890,"name":"close"},"setIdx":0,"setId":11,"iconIdx":10},{"icon":{"paths":["M734.656 576h-446.656l224 320z","M288 448h446.656l-224-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-collapsed-arrows"],"grid":0},"attrs":[],"properties":{"order":225,"id":11,"prevSize":32,"code":58891,"name":"arrow-collapsed"},"setIdx":0,"setId":11,"iconIdx":11},{"icon":{"paths":["M990.848 574.528v0c-21.184-14.016-33.216-37.248-33.152-61.952 0-0.192 0-0.384 0-0.576s0-0.384 0-0.576c-0.064-24.704 11.968-47.936 33.088-61.888l0.064-0.064c27.136-17.984 39.296-50.752 30.144-81.216-2.88-9.664-6.080-19.264-9.6-28.672-11.072-29.952-40.96-49.6-73.856-48.704v0c-25.6 0.704-49.6-11.264-64.64-31.296-0.192-0.32-0.448-0.576-0.64-0.896-15.104-19.968-19.456-45.632-10.88-68.864v-0.064c11.008-29.888 0.96-63.296-25.024-82.816-8.192-6.144-16.64-12.096-25.216-17.792-27.2-18.048-63.424-16.96-89.536 2.432l-0.064 0.064c-19.904 14.784-46.080 19.2-69.888 11.648-1.152-0.384-2.368-0.768-3.52-1.088-24.064-7.36-42.624-25.792-49.728-49.088v-0.128c-9.216-30.144-37.248-51.712-69.824-52.736-5.504-0.192-11.008-0.256-16.576-0.256s-11.072 0.064-16.576 0.256c-32.576 1.024-60.608 22.592-69.824 52.736v0.128c-7.104 23.296-25.664 41.728-49.664 49.088-1.152 0.384-2.304 0.768-3.52 1.152-23.808 7.552-49.984 3.136-69.888-11.648l-0.064-0.064c-26.176-19.456-62.336-20.48-89.536-2.432-8.576 5.696-16.96 11.648-25.216 17.792-25.984 19.456-36.032 52.864-24.96 82.752v0.064c8.576 23.296 4.16 48.96-10.88 68.864-0.192 0.32-0.448 0.576-0.64 0.896-15.040 20.032-39.040 31.936-64.64 31.296-33.024-0.896-62.912 18.688-73.984 48.704-3.456 9.408-6.656 19.008-9.6 28.672-9.152 30.464 3.008 63.232 30.144 81.216l0.064 0.064c21.12 13.952 33.152 37.184 33.088 61.888 0 0.192 0 0.384 0 0.576s0 0.384 0 0.576c0.064 24.704-11.968 47.936-33.088 61.888l-0.064 0.064c-27.136 17.984-39.296 50.752-30.144 81.216 2.88 9.664 6.080 19.264 9.6 28.672 11.072 29.952 40.96 49.6 73.92 48.704v0c25.6-0.704 49.6 11.264 64.64 31.296 0.192 0.32 0.448 0.576 0.64 0.896 15.104 19.968 19.456 45.632 10.88 68.864v0.064c-11.008 29.888-0.96 63.296 25.024 82.816 8.192 6.144 16.64 12.096 25.216 17.792 27.2 18.048 63.424 16.96 89.536-2.432l0.064-0.064c19.904-14.784 46.080-19.2 69.888-11.648 1.152 0.384 2.368 0.768 3.52 1.088 24 7.36 42.56 25.856 49.664 49.152l0.064 0.128c9.216 30.144 37.248 51.712 69.824 52.736 5.44 0.128 10.944 0.192 16.512 0.192s11.072-0.064 16.576-0.256c32.576-1.024 60.608-22.528 69.824-52.736v-0.128c7.104-23.296 25.664-41.728 49.664-49.152 1.152-0.384 2.368-0.704 3.52-1.088 23.872-7.552 49.984-3.136 69.888 11.648l0.064 0.064c26.176 19.456 62.336 20.48 89.536 2.432 8.576-5.696 17.024-11.584 25.216-17.792 25.984-19.456 36.032-52.864 25.024-82.816v-0.064c-8.576-23.296-4.16-48.96 10.88-68.864 0.192-0.32 0.448-0.576 0.64-0.896 15.040-20.032 39.040-31.936 64.64-31.296v0c32.96 0.896 62.848-18.752 73.856-48.704 3.456-9.408 6.656-19.008 9.6-28.672 9.216-30.4-2.944-63.168-30.080-81.152zM512 759.168c-141.376 0-256-110.656-256-247.168s114.624-247.168 256-247.168c141.376 0 256 110.656 256 247.168s-114.624 247.168-256 247.168z","M608 512c0 51.181-42.981 92.672-96 92.672s-96-41.491-96-92.672c0-51.181 42.981-92.672 96-92.672s96 41.491 96 92.672z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-configure"],"grid":0},"attrs":[],"properties":{"order":224,"id":12,"prevSize":32,"code":58892,"name":"configure"},"setIdx":0,"setId":11,"iconIdx":12},{"icon":{"paths":["M672 257.344v446.656l-320-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-datepicker-arr-l"],"grid":0},"attrs":[],"properties":{"order":138,"id":13,"prevSize":32,"code":58893,"name":"datepicker-arr-l"},"setIdx":0,"setId":11,"iconIdx":13},{"icon":{"paths":["M416 256v446.656l320-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-datepicker-arr-r"],"grid":0},"attrs":[],"properties":{"order":139,"id":14,"prevSize":32,"code":58894,"name":"datepicker-arr-r"},"setIdx":0,"setId":11,"iconIdx":14},{"icon":{"paths":["M192 960c0 35.328 28.672 64 64 64h512c35.328 0 64-28.672 64-64v-576c0-35.328-19.648-64-55.040-64h-520.96c-35.328 0-64 28.672-64 64v576zM187.776 952.832z","M640 64c-20.48-44.544-76.736-64-128-64-51.328 0-107.584 19.456-128 64h-192c-39.36 0-63.488 24.64-63.488 64l-0.512 64c0 39.232 24.64 64 64 64h640c39.232 0 64-24.768 64-64v-64c0-39.36-24.768-64-64-64h-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-delete"],"grid":0},"attrs":[],"properties":{"order":140,"id":15,"prevSize":32,"code":58895,"name":"delete"},"setIdx":0,"setId":11,"iconIdx":15},{"icon":{"paths":["M832 96c52.928 0 96 43.072 96 96v736h-608v-832h512zM832 0h-544c-35.328 0-64 28.672-64 64v896c0 35.328 28.672 64 64 64h672c35.328 0 64-28.672 64-64v-768c0-106.048-85.952-192-192-192v0z","M837.312 512h-426.624c-14.72 0-26.688 14.336-26.688 32s11.968 32 26.688 32h426.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z","M837.312 640h-426.624c-14.72 0-26.688 14.336-26.688 32s11.968 32 26.688 32h426.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z","M784 768h-373.312c-14.72 0-26.688 14.336-26.688 32s11.968 32 26.688 32h373.312c14.72 0 26.688-14.336 26.688-32s-11.968-32-26.688-32z","M384 192h256v256h-256v-256z","M837.312 224h-106.688c-14.656 0-26.624 14.336-26.624 32s11.968 32 26.688 32h106.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z","M837.312 352h-106.688c-14.656 0-26.624 14.336-26.624 32s11.968 32 26.688 32h106.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-document"],"grid":0},"attrs":[],"properties":{"order":141,"id":16,"prevSize":32,"code":58896,"name":"document"},"setIdx":0,"setId":11,"iconIdx":16},{"icon":{"paths":["M896 736v96c0 35.328-28.672 64-64 64h-640c-35.328 0-64-28.672-64-64v-96c0-35.328-28.672-64-64-64v0c-35.328 0-64 28.672-64 64v96c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-96c0-35.328-28.672-64-64-64v0c-35.328 0-64 28.672-64 64z","M544 768v0c-52.992 0-96-43.008-96-96v-576c0-52.992 43.008-96 96-96v0c52.992 0 96 43.008 96 96v576c0 52.992-43.008 96-96 96z","M476.096 739.904v0c-37.504-37.504-37.504-98.304 0-135.744l271.552-271.552c37.504-37.504 98.304-37.504 135.744 0v0c37.504 37.504 37.504 98.304 0 135.744l-271.552 271.552c-37.44 37.44-98.24 37.44-135.744 0z","M595.392 739.904v0c-37.504 37.504-98.304 37.504-135.744 0l-271.552-271.552c-37.504-37.504-37.504-98.304 0-135.744v0c37.504-37.504 98.304-37.504 135.744 0l271.552 271.552c37.504 37.44 37.504 98.24 0 135.744z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-download"],"grid":0},"attrs":[],"properties":{"order":142,"id":17,"prevSize":32,"code":58897,"name":"download"},"setIdx":0,"setId":11,"iconIdx":17},{"icon":{"paths":["M512.768 1021.824c-190.848 0-346.112-148.608-346.112-331.328 0-193.088 263.68-573.376 293.824-616.128l52.288-74.368 52.352 74.432c30.080 42.688 293.696 423.040 293.696 616.128 0 182.656-155.264 331.264-346.048 331.264zM512.768 225.664c-99.84 153.728-218.112 367.68-218.112 464.832 0 112.128 97.856 203.328 218.112 203.328s218.048-91.2 218.048-203.328c0-97.152-118.336-311.040-218.048-464.832z","M512 829.824c-54.976 0-95.232-17.792-119.616-52.992-47.104-67.904-10.624-170.752-6.336-182.208 6.208-16.448 24.448-24.896 41.152-18.688 16.512 6.144 24.96 24.576 18.816 41.152-8.448 22.656-24.96 89.024-0.96 123.456 11.904 16.96 33.728 25.28 66.944 25.28 17.664 0 32 14.336 32 32s-14.336 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-drop"],"grid":0},"attrs":[],"properties":{"order":143,"id":18,"prevSize":32,"code":58898,"name":"drop"},"setIdx":0,"setId":11,"iconIdx":18},{"icon":{"paths":["M960 448h-640l-32.192-95.488c-4.16-21.568-19.84-39.040-40.768-45.504l-171.008-53.12c-31.36-9.728-64.64 7.808-74.368 39.168s7.808 64.64 39.168 74.368l136.96 42.496 104.384 458.048c3.648 19.392 16.448 35.072 33.408 42.944-0.512 4.096-0.768 8.192-0.768 12.416-0.064 55.488 45.12 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.304-0.128-4.608-0.256-6.912h158.912c-0.128 2.304-0.256 4.544-0.256 6.912 0 55.488 45.184 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.496-0.128-4.928-0.32-7.36 25.408-3.072 46.4-22.272 51.264-48l96.128-314.624c3.264-17.408-14.976-105.344-62.976-105.344zM415.488 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024 27.072 0 49.024 22.016 49.024 49.024s-22.016 49.024-49.024 49.024v0zM775.232 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024s49.024 22.016 49.024 49.024c0 27.008-22.016 49.024-49.024 49.024v0zM832 768c-34.688 0-448 0-448 0-19.712 0-19.712-64 0-64h448c19.712 0 34.688 64 0 64zM896 640h-512c-19.712 0-19.712-64 0-64h512c19.712 0 19.712 64 0 64v0z","M896 128h-256c-35.328 0-64 28.672-64 64s28.672 64 64 64h256c35.328 0 64-28.672 64-64s-28.672-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-ecommerce-abandoned"],"grid":0},"attrs":[],"properties":{"order":144,"id":19,"prevSize":32,"code":58899,"name":"ecommerce-abandoned-cart"},"setIdx":0,"setId":11,"iconIdx":19},{"icon":{"paths":["M896 128h-64v-64c0-35.328-28.672-64-64-64s-64 28.672-64 64v64h-64c-35.328 0-64 28.672-64 64s28.672 64 64 64h64v64c0 35.328 28.672 64 64 64s64-28.672 64-64v-64h64c35.328 0 64-28.672 64-64s-28.672-64-64-64z","M960 448h-640l-32.192-95.488c-4.16-21.568-19.84-58.048-40.768-64.512l-171.008-32c-31.36-9.728-64.64 5.696-74.368 37.056s7.808 64.64 39.168 74.368l136.96 42.496 104.384 458.048c3.648 19.392 16.448 35.072 33.408 42.944-0.512 4.096-0.768 8.192-0.768 12.416-0.064 55.488 45.12 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.304-0.128-4.608-0.256-6.912h158.912c-0.128 2.304-0.256 4.544-0.256 6.912 0 55.488 45.184 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.496-0.128-4.928-0.32-7.36 25.408-3.072 46.4-22.272 51.264-48l96.128-314.624c3.264-17.408-14.976-105.344-62.976-105.344zM415.488 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024 27.072 0 49.024 22.016 49.024 49.024s-22.016 49.024-49.024 49.024v0zM775.232 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024s49.024 22.016 49.024 49.024c0 27.008-22.016 49.024-49.024 49.024v0zM832 768c-34.688 0-448 0-448 0-19.712 0-19.712-64 0-64h448c19.712 0 34.688 64 0 64zM896 640h-512c-19.712 0-19.712-64 0-64h512c19.712 0 19.712 64 0 64v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-ecommerce-order"],"grid":0},"attrs":[],"properties":{"order":145,"id":20,"prevSize":32,"code":58900,"name":"ecommerce-order"},"setIdx":0,"setId":11,"iconIdx":20},{"icon":{"paths":["M832 128h-640c-106.048 0-192 85.952-192 192v384c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-384c0-106.048-85.952-192-192-192zM879.936 278.784l-341.888 299.008c-13.824 12.288-38.016 12.288-52.16 0l-341.76-299.136c11.776-13.568 28.544-22.656 47.872-22.656h640c19.392 0 36.224 9.152 47.936 22.784zM128 345.984l175.488 153.664-175.488 175.744v-329.408zM832 768h-640c-17.984 0-34.048-7.552-45.696-19.456l203.392-208.192-2.112-2.368 98.24 85.952c18.56 16.512 42.24 24.512 66.176 24.512 24 0 47.616-8.384 66.496-24.512l98.304-85.952-2.432 2.368 203.456 208.192c-11.776 11.904-27.84 19.456-45.824 19.456zM720.448 499.648l175.552-153.472v328.704l-175.552-175.232z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-email"],"grid":0},"attrs":[],"properties":{"order":146,"id":21,"prevSize":32,"code":58901,"name":"email"},"setIdx":0,"setId":11,"iconIdx":21},{"icon":{"paths":["M874.048 149.952c-199.936-199.936-524.16-199.936-724.096 0s-199.936 524.16 0 724.096c199.936 199.936 524.16 199.936 724.096 0s199.936-524.16 0-724.096zM692.992 692.992c-33.344 33.344-87.36 33.344-120.64 0l-60.352-60.288-60.352 60.352c-33.344 33.344-87.36 33.344-120.64 0-33.344-33.344-33.344-87.36 0-120.704l60.352-60.352-60.352-60.352c-33.344-33.344-33.344-87.36 0-120.704s87.36-33.344 120.64 0l60.352 60.352 60.352-60.352c33.344-33.344 87.36-33.344 120.64 0 33.344 33.344 33.344 87.36 0 120.704l-60.288 60.352 60.352 60.352c33.28 33.344 33.28 87.36-0.064 120.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-error"],"grid":0},"attrs":[],"properties":{"order":147,"id":22,"prevSize":32,"code":58902,"name":"error"},"setIdx":0,"setId":11,"iconIdx":22},{"icon":{"paths":["M712 408c-233.984 0-416 52.032-520 312 156.032-129.984 312-156.032 520-104v156.032l312-260.032-312-260.032v156.032z","M918.656 725.312l-80 57.728c-4.16 3.008-6.656 7.872-6.656 12.992v115.968h-720v-496h175.36c4.224 0 8.32-1.664 11.328-4.672l80-80c10.048-10.112 2.944-27.328-11.328-27.328h-271.36c-52.8 0-96 43.2-96 96v528c0 52.8 43.2 96 96 96h752c52.8 0 96-43.2 96-96v-189.696c0-13.056-14.784-20.608-25.344-12.992z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-export"],"grid":0},"attrs":[],"properties":{"order":148,"id":23,"prevSize":32,"code":58903,"name":"export"},"setIdx":0,"setId":11,"iconIdx":23},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM319.68 835.84h-0.128c-17.024 16.896-40.256 27.264-66.112 27.264s-49.024-10.368-66.048-27.328v0c-16.896-16.896-27.392-40-27.392-65.728s10.496-48.896 27.392-65.92v0.064c17.024-16.96 40.192-27.392 66.048-27.392s49.088 10.432 66.112 27.392v0c17.024 17.024 27.392 40.128 27.52 65.856-0.064 25.728-10.432 48.768-27.392 65.792zM555.072 864h-7.424c-31.104-0.128-57.408-22.656-62.4-53.376-11.008-67.968-42.88-130.688-92.288-180.032-49.344-49.472-111.872-81.408-179.52-92.416-30.784-5.056-53.376-31.424-53.376-62.592v-6.72c0-38.784 34.432-69.824 72.768-63.744 98.944 15.68 187.52 62.656 255.36 130.624 67.968 67.968 114.944 156.672 130.624 255.744 6.080 38.272-25.024 72.64-63.744 72.512zM796.416 864h-6.72c-32.32 0-60.032-24.128-63.232-56.32-26.688-269.248-241.216-484.032-510.272-510.592-32-3.136-55.872-30.976-55.872-63.168v-6.336c0-37.888 32.896-67.84 70.592-64.064 165.888 16.64 314.752 91.136 426.624 203.008 111.808 111.872 186.24 260.928 202.88 426.816 3.84 37.76-26.112 70.656-64 70.656z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-feed"],"grid":0},"attrs":[],"properties":{"order":149,"id":24,"prevSize":32,"code":58904,"name":"feed"},"setIdx":0,"setId":11,"iconIdx":24},{"icon":{"paths":["M883.648 256h-627.648c-35.328 0-64-60.672-64-96s28.672-96 64-96h704c35.328 0 35.328-64 0-64h-819.648c-77.184 0-140.352 63.168-140.352 140.352v743.296c0 77.184 63.168 140.352 140.352 140.352h743.296c77.184 0 140.352-63.168 140.352-140.352v-487.296c0-77.184-63.168-140.352-140.352-140.352zM768 736c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96c0 52.992-43.008 96-96 96z","M256 128h704v64h-704v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-finance"],"grid":0},"attrs":[],"properties":{"order":150,"id":25,"prevSize":32,"code":58905,"name":"finance"},"setIdx":0,"setId":11,"iconIdx":25},{"icon":{"paths":["M744.384 160h-232.384l-69.632-129.28c-11.456-19.072-32.064-30.72-54.336-30.72h-121.344c-141.184 0-256.448 109.76-265.792 248.576-0.512 4.032-0.896 8.064-0.896 12.16v483.584c0 154.496 125.184 279.68 279.616 279.68h464.768c154.432 0 279.616-125.184 279.616-279.616v-294.144c0-154.432-125.184-290.24-279.616-290.24zM384 800c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-448c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v448zM576 800c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-320c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v320zM768 800c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-folder-charts"],"grid":0},"attrs":[],"properties":{"order":151,"id":26,"prevSize":32,"code":58906,"name":"folder-charts"},"setIdx":0,"setId":11,"iconIdx":26},{"icon":{"paths":["M746.752 160h-234.752l-88.128-160h-157.184c-147.328 0-266.688 119.36-266.688 266.688h0.384c0 1.344-0.384 2.688-0.384 4.096v486.592c0 147.264 119.36 266.624 266.688 266.624h490.688c147.264 0 266.624-119.36 266.624-266.688v-320.064c0-153.088-124.16-277.248-277.248-277.248z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-folder"],"grid":0},"attrs":[],"properties":{"order":152,"id":27,"prevSize":32,"code":58907,"name":"folder"},"setIdx":0,"setId":11,"iconIdx":27},{"icon":{"paths":["M752.96 343.488l168.512-168.448v80.96c0 28.544 23.040 51.264 51.264 51.264s51.264-22.72 51.264-51.264v-256h-256c-28.288 0-51.264 23.040-51.264 51.264s22.72 51.264 51.264 51.264h81.216l-168.704 168.512c-20.032 19.968-20.032 52.48 0 72.448 19.968 20.032 52.48 20.032 72.448 0v0zM752.96 343.488z","M250.048 1024c28.224 0 51.008-23.040 51.008-51.264 0-28.288-22.784-51.264-51.008-51.264h-75.008l168.512-168.512c19.968-19.968 19.968-52.48 0-72.512-10.048-9.984-23.040-14.976-36.288-14.976-12.992 0-26.24 4.992-36.224 14.976l-174.784 174.784v-87.232c0-28.288-22.72-51.264-51.2-51.264-28.288 0-45.056 22.976-45.056 51.264v256h250.048zM250.048 1024z","M680.512 752.96l168.448 168.512h-80.96c-28.544 0-51.264 23.040-51.264 51.264s22.72 51.264 51.264 51.264h256v-256c0-28.288-23.040-51.264-51.264-51.264s-51.264 22.72-51.264 51.264v81.216l-168.512-168.704c-19.968-20.032-52.48-20.032-72.448 0-20.032 19.968-20.032 52.48-0 72.448v0zM680.512 752.96z","M0 250.048c0 28.224 23.040 51.008 51.264 51.008 28.288 0 51.264-22.784 51.264-51.008v-75.008l168.512 168.512c19.968 19.968 52.48 19.968 72.512 0 9.984-10.048 14.976-23.040 14.976-36.288 0-12.992-4.992-26.24-14.976-36.224l-174.784-174.784h87.232c28.288 0 51.264-22.72 51.264-51.2 0-28.288-22.976-45.056-51.264-45.056h-256v250.048zM0 250.048z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-fullscreen"],"grid":0},"attrs":[],"properties":{"order":153,"id":28,"prevSize":32,"code":58908,"name":"fullscreen"},"setIdx":0,"setId":11,"iconIdx":28},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M320 768v0c-35.328 0-64-28.672-64-64v-384c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v384c0 35.328-28.672 64-64 64z","M723.712 320h-248.32c-15.104 0-27.392 12.288-27.392 27.392v201.216c0 15.104 12.288 27.392 27.392 27.392h248.32c20.352 0 33.6-21.44 24.512-39.616l-38.080-76.16c-3.84-7.68-3.84-16.768 0-24.512l38.080-76.16c9.088-18.112-4.16-39.552-24.512-39.552z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-goal"],"grid":0},"attrs":[],"properties":{"order":154,"id":29,"prevSize":32,"code":58909,"name":"goal"},"setIdx":0,"setId":11,"iconIdx":29},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM896 512c0 82.816-26.624 159.36-71.36 222.144l-69.376-69.376c27.968-44.352 44.736-96.448 44.736-152.768s-16.768-108.416-44.736-152.768l69.376-69.376c44.736 62.784 71.36 139.328 71.36 222.144zM199.36 734.144c-44.736-62.784-71.36-139.328-71.36-222.144s26.624-159.36 71.36-222.144l69.376 69.376c-27.968 44.352-44.736 96.448-44.736 152.768s16.768 108.416 44.736 152.768l-69.376 69.376zM310.4 512c0-111.168 90.432-201.6 201.6-201.6s201.6 90.432 201.6 201.6c0 111.168-90.432 201.6-201.6 201.6s-201.6-90.432-201.6-201.6zM734.144 199.36l-69.376 69.376c-44.352-27.968-96.448-44.736-152.768-44.736s-108.416 16.768-152.768 44.736l-69.376-69.376c62.784-44.736 139.328-71.36 222.144-71.36s159.36 26.624 222.144 71.36zM289.856 824.64l69.376-69.376c44.352 27.968 96.448 44.736 152.768 44.736s108.416-16.768 152.768-44.736l69.376 69.376c-62.784 44.736-139.328 71.36-222.144 71.36s-159.36-26.624-222.144-71.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-help-alt"],"grid":0},"attrs":[],"properties":{"order":223,"id":30,"prevSize":32,"code":58910,"name":"help-alt"},"setIdx":0,"setId":11,"iconIdx":30},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM534.272 789.888h-94.4v-90.56h94.4v90.56zM534.272 602.56v29.952h-94.4v-36.864c0-111.296 126.656-128.96 126.656-208 0-36.032-32.256-63.68-74.432-63.68-43.776 0-82.112 32.192-82.112 32.192l-53.76-66.752c0 0 52.992-55.232 144.32-55.232 86.72 0 167.296 53.696 167.296 144.256 0 126.656-133.568 141.248-133.568 224.128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-help"],"grid":0},"attrs":[],"properties":{"order":222,"id":31,"prevSize":32,"code":58911,"name":"help"},"setIdx":0,"setId":11,"iconIdx":31},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M851.072 508.096l-147.072-147.072c-18.752-18.752-49.152-18.752-67.904 0s-18.752 49.152 0 67.904l112 112-113.088 113.152c-18.752 18.752-18.752 49.152 0 67.904s49.152 18.752 67.904 0l141.44-141.44c2.24-1.6 4.736-2.496 6.784-4.48 18.688-18.816 18.688-49.216-0.064-67.968z","M390.144 361.024c-18.752-18.752-49.152-18.752-67.904 0l-141.44 141.44c-2.176 1.6-4.736 2.496-6.72 4.544-18.752 18.752-18.752 49.152 0 67.904l147.072 147.072c18.752 18.752 49.152 18.752 67.904 0s18.752-49.152 0-67.904l-112-112 113.152-113.152c18.688-18.752 18.688-49.152-0.064-67.904z","M512 192h64v640h-64v-640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-code"],"grid":0},"attrs":[],"properties":{"order":221,"id":32,"prevSize":32,"code":58912,"name":"code"},"setIdx":0,"setId":11,"iconIdx":32},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM512 864c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96c0 52.992-43.008 96-96 96zM576 576c-2.24 20.736-44.8 32-64 32s-61.76-11.264-64-32v-384h128v384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-alert"],"grid":0},"attrs":[],"properties":{"order":220,"id":33,"prevSize":32,"code":58913,"name":"warning"},"setIdx":0,"setId":11,"iconIdx":33},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M192 672v160h160l384-384-160-160z","M853.312 327.040c14.208-14.208 14.208-35.584 0-49.792l-92.352-106.688c-14.208-14.016-35.584-14.016-49.792 0l-63.872 64.064 145.664 160 60.352-67.584z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-edit"],"grid":0},"attrs":[],"properties":{"order":219,"id":34,"prevSize":32,"code":58914,"name":"edit"},"setIdx":0,"setId":11,"iconIdx":34},{"icon":{"paths":["M781.568 705.6l-125.76-239.424c-14.656-27.968-53.76-30.464-71.936-4.608l-93.632 133.376c-15.744 22.4-48.32 24.128-66.304 3.52l-44.16-50.496c-20.16-23.040-57.408-17.6-70.144 10.24l-68.16 149.44c-12.736 27.968 7.68 59.712 38.4 59.712h464.384c31.68 0.064 52.032-33.664 37.312-61.76z","M462.976 350.208c0 51.712-41.92 93.632-93.632 93.632s-93.632-41.92-93.632-93.632c0-51.712 41.92-93.632 93.632-93.632s93.632 41.92 93.632 93.632z","M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-image"],"grid":0},"attrs":[],"properties":{"order":218,"id":35,"prevSize":32,"code":58915,"name":"image"},"setIdx":0,"setId":11,"iconIdx":35},{"icon":{"paths":["M512 128c211.712 0 384 172.288 384 384s-172.288 384-384 384-384-172.288-384-384 172.288-384 384-384zM512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512v0z","M576 320c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M576 704h-128v-192c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v192z","M608 768h-192c-17.664 0-32-14.336-32-32v0c0-17.664 14.336-32 32-32h192c17.664 0 32 14.336 32 32v0c0 17.664-14.336 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-info"],"grid":0},"attrs":[],"properties":{"order":155,"id":36,"prevSize":32,"code":58916,"name":"info"},"setIdx":0,"setId":11,"iconIdx":36},{"icon":{"paths":["M879.936 365.248c0-203.2-164.736-367.936-367.936-367.936s-367.936 164.736-367.936 367.936c0 143.168 81.92 266.944 201.28 327.744l8.64 103.936h316.096l8.64-103.936c119.36-60.864 201.216-184.64 201.216-327.744z","M512 1021.248c70.4 0 130.304-47.488 148.288-113.216h-296.576c17.92 65.728 77.888 113.216 148.288 113.216z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-insights"],"grid":0},"attrs":[],"properties":{"order":156,"id":37,"prevSize":32,"code":58917,"name":"insights"},"setIdx":0,"setId":11,"iconIdx":37},{"icon":{"paths":["M748.736 436.672v-113.536c0-130.752-105.984-236.736-236.736-236.736s-236.8 105.984-236.8 236.736v113.472c-62.848 13.248-110.464 69.312-110.464 135.936v312.512c0 76.416 62.528 138.88 138.88 138.88h416.704c76.416 0 138.88-62.528 138.88-138.88v-312.512c0.064-66.624-47.552-122.688-110.464-135.872zM512 190.592c73.088 0 132.608 59.456 132.608 132.608v110.464h-265.216v-110.528c0-73.088 59.52-132.544 132.608-132.544zM553.664 755.2v29.184c0 22.912-18.752 41.664-41.664 41.664s-41.664-18.752-41.664-41.664v-29.184c-16.512-12.672-27.776-31.744-27.776-54.144 0-38.336 31.104-69.44 69.44-69.44s69.44 31.104 69.44 69.44c0 22.4-11.264 41.408-27.776 54.144z","M576-31.488c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M800 32.96c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M352 32.96c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M960 194.176c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M224 194.176c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M1024 383.488c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M128 383.488c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked-2"],"grid":0},"attrs":[],"properties":{"order":230,"id":38,"prevSize":32,"code":58918,"name":"locked-2"},"setIdx":0,"setId":11,"iconIdx":38},{"icon":{"paths":["M769.856 382.528v-123.968c0-142.784-115.776-258.56-258.56-258.56s-258.56 115.776-258.56 258.56v123.968c-68.736 14.464-120.768 75.648-120.768 148.416v341.312c0 83.456 68.288 151.68 151.68 151.68h455.104c83.456 0 151.68-68.288 151.68-151.68v-341.312c0.064-72.768-51.904-134.016-120.576-148.416zM511.232 113.792c79.872 0 144.832 64.96 144.832 144.832v120.64h-289.6v-120.704c0-79.808 64.96-144.768 144.768-144.768zM556.8 730.432v31.936c0 25.024-20.48 45.504-45.504 45.504s-45.504-20.48-45.504-45.504v-31.936c-17.984-13.888-30.336-34.624-30.336-59.136 0-41.92 33.984-75.84 75.84-75.84 41.92 0 75.84 33.984 75.84 75.84 0 24.448-12.352 45.248-30.336 59.136z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked"],"grid":0},"attrs":[],"properties":{"order":157,"id":39,"prevSize":32,"code":58919,"name":"locked-3"},"setIdx":0,"setId":11,"iconIdx":39},{"icon":{"paths":["M769.856 382.528v-123.968c0-142.784-115.776-258.56-258.56-258.56s-258.56 115.776-258.56 258.56v123.968c-68.736 14.464-120.768 75.648-120.768 148.416v341.312c0 83.456 68.288 151.68 151.68 151.68h455.104c83.456 0 151.68-68.288 151.68-151.68v-341.312c0.064-72.768-51.904-134.016-120.576-148.416zM511.232 113.792c79.872 0 144.832 64.96 144.832 144.832v120.64h-289.6v-120.704c0-79.808 64.96-144.768 144.768-144.768zM556.8 730.432v31.936c0 25.024-20.48 45.504-45.504 45.504s-45.504-20.48-45.504-45.504v-31.936c-17.984-13.888-30.336-34.624-30.336-59.136 0-41.92 33.984-75.84 75.84-75.84 41.92 0 75.84 33.984 75.84 75.84 0 24.448-12.352 45.248-30.336 59.136z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked-3"],"grid":0},"attrs":[],"properties":{"order":158,"id":40,"prevSize":32,"code":58920,"name":"locked"},"setIdx":0,"setId":11,"iconIdx":40},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM624.192 656.576c7.808 23.296-9.6 47.424-34.176 47.424h-156.032c-24.576 0-41.984-24.128-34.176-47.424l35.52-106.624c-30.976-23.36-51.328-60.16-51.328-101.952 0-70.72 57.344-128 128-128s128 57.28 128 128c0 41.792-20.352 78.592-51.328 101.952l35.52 106.624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked-4"],"grid":0},"attrs":[],"properties":{"order":159,"id":41,"prevSize":32,"code":58921,"name":"locked-4"},"setIdx":0,"setId":11,"iconIdx":41},{"icon":{"paths":["M752.96 343.488l168.512-168.448v80.96c0 28.544 23.040 51.264 51.264 51.264s51.264-22.72 51.264-51.264v-256h-256c-28.288 0-51.264 23.040-51.264 51.264s22.72 51.264 51.264 51.264h81.216l-168.704 168.512c-20.032 19.968-20.032 52.48 0 72.448 19.968 20.032 52.48 20.032 72.448 0v0zM752.96 343.488z","M250.048 1024c28.224 0 51.008-23.040 51.008-51.264 0-28.288-22.784-51.264-51.008-51.264h-75.008l168.512-168.512c19.968-19.968 19.968-52.48 0-72.512-10.048-9.984-23.040-14.976-36.288-14.976-12.992 0-26.24 4.992-36.224 14.976l-174.784 174.784v-87.232c0-28.288-22.72-51.264-51.2-51.264-28.288 0-45.056 22.976-45.056 51.264v256h250.048zM250.048 1024z","M768 576v128c0 35.328-28.672 64-64 64h-128c-35.328 0-64 28.672-64 64v0c0 35.328 28.672 64 64 64h128c106.048 0 192-85.952 192-192v-128c0-35.328-28.672-64-64-64v0c-35.328 0-64 28.672-64 64z","M256 448v-128c0-35.328 28.672-64 64-64h128c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64h-128c-106.048 0-192 85.952-192 192v128c0 35.328 28.672 64 64 64v0c35.328 0 64-28.672 64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-maximise"],"grid":0},"attrs":[],"properties":{"order":160,"id":42,"prevSize":32,"code":58922,"name":"maximise"},"setIdx":0,"setId":11,"iconIdx":42},{"icon":{"paths":["M0 928v0c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v0c0 52.8-43.2 96-96 96h-832c-52.8 0-96-43.2-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-minimise"],"grid":0},"attrs":[],"properties":{"order":161,"id":43,"prevSize":32,"code":58923,"name":"minimise"},"setIdx":0,"setId":11,"iconIdx":43},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM682.688 597.312h-341.376c-47.104 0-85.312-38.208-85.312-85.312s38.208-85.312 85.312-85.312h341.312c47.168 0 85.376 38.208 85.376 85.312s-38.208 85.312-85.312 85.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-minus"],"grid":0},"attrs":[],"properties":{"order":162,"id":44,"prevSize":32,"code":58924,"name":"minus"},"setIdx":0,"setId":11,"iconIdx":44},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM832 896h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h256v256h448v448c0 35.264-28.736 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-newtab"],"grid":0},"attrs":[],"properties":{"order":163,"id":45,"prevSize":32,"code":58925,"name":"newtab"},"setIdx":0,"setId":11,"iconIdx":45},{"icon":{"paths":["M988.352 324.288l-538.944 485.056c-20.544 18.496-46.336 27.712-72.128 27.712-27.712 0-55.296-10.624-76.224-31.616l-269.504-269.504c-42.112-42.112-42.112-110.336 0-152.448s110.336-42.112 152.448 0l197.184 197.184 462.976-416.64c44.288-39.808 112.32-36.416 152.192 8 39.808 44.224 36.224 112.448-8 152.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-ok"],"grid":0},"attrs":[],"properties":{"order":164,"id":46,"prevSize":32,"code":58926,"name":"ok"},"setIdx":0,"setId":11,"iconIdx":46},{"icon":{"paths":["M450.496 3.584c-225.024 26.24-410.496 204.48-444.416 428.48-31.296 206.784 61.312 394.24 214.656 500.416 31.808 22.016 76.096 9.856 93.376-24.768l86.144-172.288c13.184-26.432 8.96-59.648-13.44-78.912-54.336-46.592-82.496-122.624-57.792-203.904 17.536-57.728 64-105.024 121.6-123.008 131.84-41.28 253.376 56.64 253.376 182.4 0 58.368-26.432 110.272-67.712 145.344-21.888 18.56-26.176 50.944-13.312 76.608l86.848 173.76c17.344 34.752 61.824 46.72 93.76 24.576 133.12-92.352 220.416-245.952 220.416-420.288 0-303.040-263.232-544.576-573.504-508.416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-open-source"],"grid":0},"attrs":[],"properties":{"order":165,"id":47,"prevSize":32,"code":58927,"name":"open-source"},"setIdx":0,"setId":11,"iconIdx":47},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM682.688 597.312h-85.376v85.312c0 47.168-38.208 85.376-85.312 85.376s-85.312-38.208-85.312-85.312v-85.376h-85.376c-47.104 0-85.312-38.208-85.312-85.312s38.208-85.312 85.312-85.312h85.312v-85.376c0.064-47.104 38.272-85.312 85.376-85.312s85.312 38.208 85.312 85.312v85.312h85.312c47.168 0.064 85.376 38.272 85.376 85.376s-38.208 85.312-85.312 85.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-add"],"grid":0},"attrs":[],"properties":{"order":166,"id":48,"prevSize":32,"code":58928,"name":"add, plus"},"setIdx":0,"setId":11,"iconIdx":48},{"icon":{"paths":["M825.664 369.536c-7.68-7.68-4.544-20.544 5.76-23.936 30.592-9.984 58.24-31.040 76.352-64.512 21.76-40.192 20.864-91.136-2.752-130.304-47.36-78.592-150.912-87.68-211.328-27.264-13.312 13.312-23.040 28.672-29.44 45.12-5.248 13.376-21.76 17.728-31.872 7.616l-176.256-176.256-100.736 100.672c-17.472 17.536-19.2 43.84-7.872 65.792 26.112 50.56 17.92 114.24-24.448 156.608s-106.048 50.56-156.608 24.448c-21.952-11.328-48.256-9.6-65.792 7.872v0l-100.672 100.736 176.256 176.192c10.176 10.176 5.76 26.688-7.616 31.872-16.448 6.4-31.808 16.128-45.12 29.44-60.352 60.416-51.264 163.968 27.264 211.328 39.168 23.616 90.048 24.512 130.304 2.752 33.472-18.112 54.528-45.76 64.512-76.352 3.392-10.304 16.256-13.44 23.936-5.76l181.632 181.632 100.672-100.672c17.472-17.472 19.2-43.776 7.872-65.792-26.048-50.56-17.92-114.24 24.448-156.608s106.048-50.56 156.608-24.448c22.016 11.328 48.256 9.6 65.792-7.872v0l100.672-100.672-181.568-181.632z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-puzzle"],"grid":0},"attrs":[],"properties":{"order":167,"id":49,"prevSize":32,"code":58929,"name":"puzzle"},"setIdx":0,"setId":11,"iconIdx":49},{"icon":{"paths":["M507.84 0.256h1.984c1.024-0.384 1.472-0.192 2.24-0.192 132.48 0 261.312 52.736 356.608 145.024l79.68-80.768c20.16-20.416 54.976-6.144 54.976 22.528v263.168c0 35.328-28.672 64-64 64l-257.6-1.6c-27.904-0.192-41.984-33.728-22.592-53.76l79.68-82.112c-61.44-59.2-141.312-91.52-229.184-91.52-179.072 0.832-324.864 147.584-324.864 329.536 1.28 160.576 119.552 294.4 275.328 320.064 31.296 5.184 54.592 31.36 54.464 63.040l-0.256 50.176c-0.192 46.144-34.56 76.48-72.832 70.976-246.784-35.456-439.808-248.064-441.472-506.88 0-279.872 227.52-509.248 507.84-511.68v0zM507.84 0.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-refresh"],"grid":0},"attrs":[],"properties":{"order":168,"id":50,"prevSize":32,"code":58930,"name":"refresh"},"setIdx":0,"setId":11,"iconIdx":50},{"icon":{"paths":["M268.288 279.168c113.024-113.152 285.888-129.28 416.576-49.28-44.288 43.776-95.296 94.976-95.296 94.976-35.84 42.88 4.288 67.648 24.768 66.944h289.856c35.328 0 64-28.672 64-64v-287.296c1.536-29.888-31.424-59.072-65.6-25.6 0 0-56.32 54.912-95.104 93.376-199.040-145.216-479.424-128.768-659.2 50.88-87.168 87.104-135.552 197.824-146.048 311.488-3.52 37.504 26.56 69.824 64.192 69.824h41.728c33.152 0 59.84-25.344 63.36-58.304 7.808-74.112 39.872-146.112 96.768-203.008v0zM268.288 279.168z","M895.296 483.456c-33.152 0-59.84 25.344-63.36 58.304-7.872 74.24-39.936 146.24-96.832 203.136-113.152 112.96-285.888 129.152-416.576 49.28 44.288-43.776 95.296-94.912 95.296-94.912 35.712-42.944-4.48-67.648-24.768-66.944h-289.92c-35.2 0-64 28.8-64 64v287.104c-1.344 30.016 31.616 59.072 65.6 25.6 0 0 56.32-54.784 95.296-93.376 198.976 145.472 479.36 128.96 658.944-50.816 87.104-86.976 135.616-197.76 146.24-311.488 3.52-37.44-26.624-69.824-64.256-69.824h-41.664zM833.152 483.456z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-reload"],"grid":0},"attrs":[],"properties":{"order":169,"id":51,"prevSize":32,"code":58931,"name":"reload"},"setIdx":0,"setId":11,"iconIdx":51},{"icon":{"paths":["M448 128c176.448 0 320 143.552 320 320s-143.552 320-320 320-320-143.552-320-320 143.552-320 320-320zM448 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448v0z","M640 768l229.504 229.504c35.328 35.328 92.672 35.328 128 0v0c35.328-35.328 35.328-92.672 0-128l-229.504-229.504-128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-search"],"grid":0},"attrs":[],"properties":{"order":170,"id":52,"prevSize":32,"code":58932,"name":"search"},"setIdx":0,"setId":11,"iconIdx":52},{"icon":{"paths":["M640 384c0 84.736-43.264 192-128 192s-128-107.264-128-192 43.264-160 128-160 128 75.264 128 160z","M768 896c16.576 0 64-10.688 64-10.688 0-0.128 0-0.256 0-0.32 0-135.36-143.296-308.992-320-308.992s-320 173.632-320 308.928c0 0.128 0 0.256 0 0.32s47.424 10.752 64 10.752h512z","M896 448c0 59.328-36.672 128-96 128s-96-68.672-96-128 36.672-128 96-128 96 68.672 96 128z","M1002.432 835.072c11.584 0 21.504-10.368 21.568-23.424 0-0.064 0-0.192 0-0.256 0-94.656-100.288-235.392-224-235.392s-224 140.736-224 235.456c0 0.064 0 0.192 0 0.256 0 13.056 9.92 23.424 21.568 23.424h404.864z","M426.432 835.072c11.648 0 21.568-10.304 21.568-23.36 0-0.064 0-0.192 0-0.256 0-94.72-100.288-235.456-224-235.456s-224 140.736-224 235.456c0 0.064 0 0.192 0 0.256 0 13.056 9.92 23.424 21.568 23.424h404.864z","M320 448c0 59.328-36.672 128-96 128s-96-68.672-96-128 36.672-128 96-128 96 68.672 96 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-users"],"grid":0},"attrs":[],"properties":{"order":171,"id":53,"prevSize":32,"code":58933,"name":"users, segment"},"setIdx":0,"setId":11,"iconIdx":53},{"icon":{"paths":["M870.336 928c-6.016 0-12.096-1.408-17.792-4.416-18.752-9.856-25.984-33.152-16.128-51.904 220.864-419.712 12.48-702.208 3.52-714.048-12.8-16.832-9.6-40.896 7.168-53.76 16.768-12.736 40.768-9.792 53.76 7.040 10.24 13.312 248.192 331.648 3.584 796.48-6.912 13.12-20.288 20.608-34.112 20.608z","M144.128 928c-13.824 0-27.2-7.488-34.048-20.544-244.608-464.832-6.656-783.168 3.584-796.48 12.992-16.832 36.992-19.776 53.76-7.040 16.768 12.8 19.968 36.864 7.168 53.76-9.024 11.84-217.408 294.336 3.52 713.984 9.856 18.752 2.624 41.984-16.128 51.904-5.696 2.944-11.84 4.416-17.856 4.416z","M736 704h-480c-35.328 0-64 28.672-64 64v64c0 35.328 28.672 64 64 64h480c35.328 0 64-28.672 64-64v-64c0-35.328-28.672-64-64-64zM512 832h-224v-64h224v64zM672 832c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32c0 17.664-14.336 32-32 32z","M736 448h-480c-35.328 0-64 28.672-64 64v64c0 35.328 28.672 64 64 64h480c35.328 0 64-28.672 64-64v-64c0-35.328-28.672-64-64-64zM512 576h-224v-64h224v64zM672 576c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32c0 17.664-14.336 32-32 32z","M736 192h-480c-35.328 0-64 28.672-64 64v64c0 35.328 28.672 64 64 64h480c35.328 0 64-28.672 64-64v-64c0-35.328-28.672-64-64-64zM512 320h-224v-64h224v64zM672 320c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32c0 17.664-14.336 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-server-alt"],"grid":0},"attrs":[],"properties":{"order":217,"id":54,"prevSize":32,"code":58934,"name":"server-alt"},"setIdx":0,"setId":11,"iconIdx":54},{"icon":{"paths":["M928 960h-224c-17.6 0-32 14.4-32 32s14.4 32 32 32h224c17.6 0 32-14.4 32-32s-14.4-32-32-32z","M320 960h-224c-17.6 0-32 14.4-32 32s14.4 32 32 32h224c17.6 0 32-14.4 32-32s-14.4-32-32-32z","M960 640h-896c-35.328 0-64 28.672-64 64v128c0 35.328 28.672 64 64 64h384v128h128v-128h384c35.328 0 64-28.672 64-64v-128c0-35.328-28.672-64-64-64zM320 768v64h-224v-128h224v64zM832 832c-35.328 0-64-28.672-64-64s28.672-64 64-64 64 28.672 64 64c0 35.328-28.672 64-64 64z","M960 320h-896c-35.328 0-64 28.672-64 64v128c0 35.328 28.672 64 64 64h896c35.328 0 64-28.672 64-64v-128c0-35.328-28.672-64-64-64zM320 448v64h-224v-128h224v64zM832 512c-35.328 0-64-28.672-64-64s28.672-64 64-64 64 28.672 64 64c0 35.328-28.672 64-64 64z","M960 0h-896c-35.328 0-64 28.672-64 64v128c0 35.328 28.672 64 64 64h896c35.328 0 64-28.672 64-64v-128c0-35.328-28.672-64-64-64zM320 128v64h-224v-128h224v64zM832 192c-35.328 0-64-28.672-64-64s28.672-64 64-64 64 28.672 64 64c0 35.328-28.672 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-server"],"grid":0},"attrs":[],"properties":{"order":216,"id":55,"prevSize":32,"code":58935,"name":"server"},"setIdx":0,"setId":11,"iconIdx":55},{"icon":{"paths":["M801.728 267.52l94.976-94.912-45.312-45.248-112.256 112.256c-68.48-26.624-145.408-43.776-227.136-43.776-282.176 0-510.912 201.344-510.912 316.16 0 73.152 87.488 176.512 220.8 244.864l-94.528 94.528 45.248 45.248 112-112c68.544 26.56 145.536 43.52 227.392 43.52 282.176 0 510.912-200.128 510.912-316.16 0-71.744-87.616-175.616-221.184-244.48zM286.912 512c0-123.712 100.288-224 224-224 50.56 0 96.704 17.344 134.144 45.632l-68.8 68.864c-19.2-11.52-41.344-18.496-65.344-18.496-70.72 0-128 57.28-128 128 0 24 6.976 46.144 18.496 65.344l-68.864 68.864c-28.224-37.504-45.632-83.648-45.632-134.208zM510.912 736c-49.984 0-95.744-16.96-132.992-44.672l69.056-69.056c18.88 11.008 40.512 17.728 63.936 17.728 70.656 0 128-57.28 128-128 0-23.424-6.72-45.056-17.728-63.936l69.056-69.056c27.712 37.248 44.672 82.944 44.672 132.992 0 123.712-100.288 224-224 224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-hide"],"grid":0},"attrs":[],"properties":{"order":215,"id":56,"prevSize":32,"code":58936,"name":"hide"},"setIdx":0,"setId":11,"iconIdx":56},{"icon":{"paths":["M513.088 195.84c-282.176 0-510.976 201.344-510.976 316.16 0 118.4 228.736 316.16 510.912 316.16s510.976-200.128 510.976-316.16c0-116.032-228.736-316.16-510.912-316.16zM512 736c-123.712 0-224-100.288-224-224s100.288-224 224-224 224 100.288 224 224c0 123.712-100.288 224-224 224z","M640 512c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-show"],"grid":0},"attrs":[],"properties":{"order":214,"id":57,"prevSize":32,"code":58937,"name":"show"},"setIdx":0,"setId":11,"iconIdx":57},{"icon":{"paths":["M288.64 736h446.72l-224-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-top"],"grid":0},"attrs":[],"properties":{"order":213,"id":58,"prevSize":32,"code":58938,"name":"arrow-top"},"setIdx":0,"setId":11,"iconIdx":58},{"icon":{"paths":["M735.36 416h-446.72l224 320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-bottom"],"grid":0},"attrs":[],"properties":{"order":212,"id":59,"prevSize":32,"code":58939,"name":"arrow-bottom"},"setIdx":0,"setId":11,"iconIdx":59},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM735.36 482.432l-85.632 83.52c-5.568 5.44-8.128 13.248-6.784 20.928l20.224 117.888c3.328 19.328-16.96 34.048-34.304 24.896l-105.856-55.68c-6.912-3.648-15.104-3.648-22.016 0l-105.856 55.68c-17.344 9.088-37.568-5.632-34.304-24.896l20.224-117.888c1.344-7.68-1.216-15.488-6.784-20.928l-85.632-83.52c-14.016-13.696-6.272-37.504 13.12-40.32l118.4-17.216c7.68-1.088 14.336-5.952 17.792-12.928l52.928-107.264c8.64-17.536 33.728-17.536 42.368 0l52.928 107.264c3.392 7.040 10.048 11.84 17.728 12.992l118.4 17.216c19.392 2.752 27.072 26.624 13.056 40.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-star"],"grid":0},"attrs":[],"properties":{"order":172,"id":60,"prevSize":32,"code":58940,"name":"star"},"setIdx":0,"setId":11,"iconIdx":60},{"icon":{"paths":["M966.080 434.496c-54.464-16.064-75.776-81.728-41.216-126.72 49.152-63.808-15.168-152.32-91.072-125.376v0c-53.44 19.008-109.376-21.568-107.776-78.336 2.24-80.512-101.824-114.304-147.392-47.872v0c-32.064 46.848-101.184 46.848-133.248 0.064v0c-45.504-66.496-149.568-32.64-147.392 47.872 1.6 56.768-54.336 97.344-107.776 78.336v0c-75.904-27.008-140.224 61.504-91.072 125.312 34.624 44.992 13.248 110.72-41.216 126.72-77.248 22.784-77.248 132.16 0 154.944 54.464 16.064 75.776 81.728 41.216 126.72v0c-49.152 63.808 15.168 152.32 91.072 125.376v0c53.44-19.008 109.376 21.568 107.776 78.336-2.24 80.512 101.824 114.304 147.392 47.872 32.064-46.848 101.184-46.848 133.248 0 45.504 66.432 149.568 32.64 147.392-47.872-1.6-56.768 54.336-97.344 107.776-78.336v0c75.904 27.008 140.224-61.504 91.072-125.376v0c-34.624-44.992-13.248-110.72 41.216-126.72 77.248-22.72 77.248-132.16 0-154.944zM735.296 435.904l-252.608 227.392c-9.6 8.704-21.696 12.992-33.792 12.992-12.992 0-25.92-4.992-35.712-14.784l-126.4-126.4c-19.712-19.712-19.712-51.712 0-71.424s51.712-19.712 71.424 0l92.416 92.416 217.024-195.264c20.8-18.624 52.672-17.088 71.36 3.776 18.688 20.672 17.024 52.608-3.712 71.296z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-success"],"grid":0},"attrs":[],"properties":{"order":173,"id":61,"prevSize":32,"code":58941,"name":"success"},"setIdx":0,"setId":11,"iconIdx":61},{"icon":{"paths":["M320 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 576h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 384v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 384h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 768v0c-35.392 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M576 768h-64c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h64c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M832 1024v0c-35.328 0-64-28.672-64-64v-256c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v256c0 35.328-28.672 64-64 64z","M640 832v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z","M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h320c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64h-320c-35.328 0-64-28.672-64-64v-640c0-35.328 28.672-64 64-64h640c35.328 0 64 28.672 64 64v320c0 35.328 28.672 64 64 64v0c35.328 0 64-28.672 64-64v-320c0-106.048-85.952-192-192-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-table-more"],"grid":0},"attrs":[],"properties":{"order":174,"id":62,"prevSize":32,"code":58942,"name":"table-more"},"setIdx":0,"setId":11,"iconIdx":62},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M320 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 576h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 384v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 384h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 768v0c-35.392 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 768h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-table"],"grid":0},"attrs":[],"properties":{"order":175,"id":63,"prevSize":32,"code":58943,"name":"table"},"setIdx":0,"setId":11,"iconIdx":63},{"icon":{"paths":["M740.288 511.36c0-0.576 0.064-1.088 0.064-1.664 0-55.232-44.8-100.032-100.032-100.032-23.36 0-44.8 8.064-61.824 21.504-26.24-48.96-77.824-82.368-137.28-82.368-85.888 0-155.584 69.632-155.584 155.584 0 2.048 0.256 4.032 0.32 6.080-31.488 12.544-53.952 43.392-53.952 79.296v0.128c0 46.976 38.4 85.376 85.376 85.376h389.312c46.976 0 85.376-38.4 85.376-85.376v-0.128c-0.064-35.072-21.44-65.28-51.776-78.4z","M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-tag-cloud"],"grid":0},"attrs":[],"properties":{"order":176,"id":64,"prevSize":32,"code":58944,"name":"tag-cloud"},"setIdx":0,"setId":11,"iconIdx":64},{"icon":{"paths":["M605.632 584.896c0.384-3.072 1.792-5.696 1.792-8.832 0-7.296-2.368-13.888-4.16-20.608 90.304-62.784 154.176-206.656 154.176-309.952 0-135.616-109.888-245.504-245.44-245.504s-245.44 109.888-245.44 245.44c0 103.296 63.872 247.168 154.176 309.952-1.792 6.784-4.16 13.312-4.16 20.672 0 3.136 1.472 5.824 1.792 8.832-238.016 33.728-418.368 193.152-418.368 385.088 0 0.192 0 0.384 0 0.576 0.064 29.824 22.72 53.44 49.28 53.44h925.44c26.496 0 49.216-23.616 49.28-53.504 0-0.192 0-0.384 0-0.576 0-191.872-180.352-351.296-418.368-385.024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-user"],"grid":0},"attrs":[],"properties":{"order":177,"id":65,"prevSize":32,"code":58945,"name":"user"},"setIdx":0,"setId":11,"iconIdx":65},{"icon":{"paths":["M615.424 391.424c0 110.144-89.28 277.504-199.424 277.504s-199.424-167.36-199.424-277.504 89.28-199.424 199.424-199.424 199.424 89.28 199.424 199.424z","M792 1024c21.568 0 40-19.2 40-43.456 0-0.128 0-0.32 0-0.448 0-175.872-186.24-318.4-416-318.4s-416 142.528-416 318.4c0 0.128 0 0.32 0 0.448 0.064 24.256 18.496 43.456 40 43.456h752z","M832 384v0c-35.328 0-64-28.672-64-64v-256c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v256c0 35.328-28.672 64-64 64z","M640 192v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-user-add"],"grid":0},"attrs":[],"properties":{"order":178,"id":66,"prevSize":32,"code":58946,"name":"user-add"},"setIdx":0,"setId":11,"iconIdx":66},{"icon":{"paths":["M832 192c35.264 0 64 28.736 64 64v512c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-512c0-35.264 28.736-64 64-64h640zM832 64h-640c-106.048 0-192 85.952-192 192v512c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-512c0-106.048-85.952-192-192-192v0z","M570.752 378.752c0 67.776-54.976 170.752-122.752 170.752s-122.752-102.976-122.752-170.752 54.976-122.752 122.752-122.752 122.752 54.976 122.752 122.752z","M679.36 768c13.248 0 24.64-11.84 24.64-26.752 0-0.064 0-0.192 0-0.256 0-108.224-114.624-195.968-256-195.968s-256 87.744-256 195.968c0 0.064 0 0.192 0 0.256 0 14.912 11.392 26.752 24.64 26.752h462.72z","M800 320h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M800 448h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M800 576h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-visitor-profile"],"grid":0},"attrs":[],"properties":{"order":179,"id":67,"prevSize":32,"code":58948,"name":"visitor-profile"},"setIdx":0,"setId":11,"iconIdx":67},{"icon":{"paths":["M448 128c176.448 0 320 143.552 320 320s-143.552 320-320 320-320-143.552-320-320 143.552-320 320-320zM448 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448v0z","M640 768l229.504 229.504c35.328 35.328 92.672 35.328 128 0v0c35.328-35.328 35.328-92.672 0-128l-229.504-229.504-128 128z","M448 640v0c-35.328 0-64-28.672-64-64v-256c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v256c0 35.328-28.672 64-64 64z","M256 448v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-zoom-in"],"grid":0},"attrs":[],"properties":{"order":180,"id":68,"prevSize":32,"code":58949,"name":"zoom-in"},"setIdx":0,"setId":11,"iconIdx":68},{"icon":{"paths":["M448 128c176.448 0 320 143.552 320 320s-143.552 320-320 320-320-143.552-320-320 143.552-320 320-320zM448 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448v0z","M640 768l229.504 229.504c35.328 35.328 92.672 35.328 128 0v0c35.328-35.328 35.328-92.672 0-128l-229.504-229.504-128 128z","M256 448v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-zoom-out"],"grid":0},"attrs":[],"properties":{"order":181,"id":69,"prevSize":32,"code":58950,"name":"zoom-out"},"setIdx":0,"setId":11,"iconIdx":69},{"icon":{"paths":["M1013.184 503.744v0c0 52.992-43.008 96-96 96h-576c-52.992 0-96-43.008-96-96v0c0-52.992 43.008-96 96-96h576c52.992 0 96 43.008 96 96z","M985.024 571.648v0c-37.504 37.504-98.304 37.504-135.744 0l-271.552-271.552c-37.504-37.504-37.504-98.304 0-135.744v0c37.504-37.504 98.304-37.504 135.744 0l271.552 271.552c37.504 37.44 37.504 98.24 0 135.744z","M985.024 452.352v0c37.504 37.504 37.504 98.304 0 135.744l-271.552 271.552c-37.504 37.504-98.304 37.504-135.744 0v0c-37.504-37.504-37.504-98.304 0-135.744l271.552-271.552c37.504-37.504 98.304-37.504 135.744 0z","M469.184 896h-277.184c-35.328 0-64-28.672-64-64v-640c0-35.328 28.672-64 64-64h277.184c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64h-277.184c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h277.184c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-sign-out"],"grid":0},"attrs":[],"properties":{"order":182,"id":70,"prevSize":32,"code":58951,"name":"sign-out"},"setIdx":0,"setId":11,"iconIdx":70},{"icon":{"paths":["M768 504v0q0 39-28 67.5t-68 28.5h-576q-40 0-68-28t-28-68v0q0-40 28-68t68-28h576q40 0 68 28t28 68v0zM740 572v0q-28 28-68 28t-68-28l-271-272q-29-28-29-68t29-68v0q28-28 67.5-28t67.5 28l272 272q28 28 28 68t-28 68v0zM740 452v0q28 28 28 68t-28 68l-272 272q-28 28-67.5 28t-67.5-28v0q-29-28-29-68t29-68l271-272q28-28 68-28t68 28v0zM544 128h277q27 0 45.5 19t18.5 45v640q0 26-18.5 45t-45.5 19h-277q-26 0-45 19t-19 45v0q0 26 19 45t45 19h277q80 0 136-56t56-136v-640q0-80-56-136t-136-56h-277q-26 0-45 19t-19 45v0q0 26 19 45t45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE648"],"defaultCode":58952,"grid":0},"attrs":[],"properties":{"id":71,"order":183,"ligatures":"","prevSize":32,"code":58952,"name":"sign-in"},"setIdx":0,"setId":11,"iconIdx":71},{"icon":{"paths":["M799 384h-576q-26 0-45-19t-19-45v0q0-26 19-45t45-19h576q27 0 45.5 19t18.5 45v0q0 26-18.5 45t-45.5 19v0zM799 576h-576q-26 0-45-19t-19-45v0q0-26 19-45t45-19h576q27 0 45.5 19t18.5 45v0q0 26-18.5 45t-45.5 19v0zM799 768h-576q-26 0-45-19t-19-45v0q0-26 19-45t45-19h576q27 0 45.5 19t18.5 45v0q0 26-18.5 45t-45.5 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE649"],"defaultCode":58953,"grid":0},"attrs":[],"properties":{"id":72,"order":184,"ligatures":"","prevSize":32,"code":58953,"name":"menu-hamburger"},"setIdx":0,"setId":11,"iconIdx":72},{"icon":{"paths":["M693 544v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19h-64q-27 0-45.5-19t-18.5-45v0zM437 544v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19h-64q-27 0-45.5-19t-18.5-45v0zM181 544v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19h-64q-27 0-45.5-19t-18.5-45v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64A"],"defaultCode":58954,"grid":0},"attrs":[],"properties":{"id":73,"order":185,"ligatures":"","prevSize":32,"code":58954,"name":"more-horiz"},"setIdx":0,"setId":11,"iconIdx":73},{"icon":{"paths":["M501 352h-64q-27 0-45.5-19t-18.5-45v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM501 608h-64q-27 0-45.5-19t-18.5-45v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM501 864h-64q-27 0-45.5-19t-18.5-45v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64B"],"defaultCode":58955,"grid":0},"attrs":[],"properties":{"id":74,"order":186,"ligatures":"","prevSize":32,"code":58955,"name":"more-verti"},"setIdx":0,"setId":11,"iconIdx":74},{"icon":{"paths":["M991 575v0q-16-11-24.5-27.5t-8.5-34.5v-2q0-18 8.5-34.5t24.5-26.5v-1q20-13 28.5-35.5t1.5-45.5q-2-7-4.5-14t-5.5-14q-8-23-28.5-36.5t-44.5-12.5v0q-20 0-37-8t-28-23q0-1-0.5-1h-0.5q-11-15-14-33.5t3-35.5v0q9-23 2-45.5t-27-37.5q-6-5-12-9.5t-13-8.5q-20-13-45-12.5t-44 15.5v0q-15 11-33.5 14t-36.5-3q-1 0-2-0.5t-2-0.5q-18-5-31-18t-19-31v0q-7-23-26-37.5t-43-15.5h-34q-24 1-43 15.5t-26 37.5v0q-6 18-19 31t-31 18q-1 0-2 0.5t-2 0.5q-17 6-36 3t-33-14h-1q-19-15-44-15.5t-45 12.5q-7 4-13 8.5t-12 9.5q-20 15-27 37.5t2 45.5v0q6 17 3 35.5t-14 33.5h-0.5t-0.5 1q-11 15-28 23t-36 8q-25-1-45.5 12.5t-28.5 36.5q-3 7-5.5 14t-4.5 14q-7 23 1.5 45.5t28.5 35.5v1q16 10 24.5 26.5t8.5 34.5v2q0 18-8.5 34.5t-24.5 26.5v1q-20 13-28.5 35.5t-1.5 45.5q2 7 4.5 14t5.5 14q8 23 28.5 36.5t45.5 12.5v0q19 0 36 8t28 23q0 1 0.5 1h0.5q11 15 14 33.5t-3 35.5v0q-9 23-2 45.5t27 37.5q6 5 12 9.5t13 8.5q20 13 45 12.5t44-15.5h1q14-11 33-14t36 3q1 0 2 0.5t2 0.5q18 5 31 18t19 31v0q7 23 26 37.5t43 15.5h34q24-1 43-15.5t26-37.5v0q6-18 19-31t31-18q1-1 2-1h2q17-6 36-3t33 14h1q19 15 44 15.5t45-12.5q7-4 13-8.5t12-9.5q20-15 27-37.5t-2-45.5v0q-6-17-3-35.5t14-33.5h0.5t0.5-1q11-15 28-23t36-8v0q25 1 45.5-12.5t28.5-36.5q3-7 5.5-14t4.5-14q7-23-1.5-45.5t-28.5-35.5v0zM512 759q-53 0-99.5-19.5t-81.5-53-55-78.5-20-96 20-96 55-78.5 81.5-53 99.5-19.5 99.5 19.5 81.5 53 55 78.5 20 96-20 96-55 78.5-81.5 53-99.5 19.5v0zM608 512q0 38-28 65.5t-68 27.5-68-27.5-28-65.5 28-65.5 68-27.5 68 27.5 28 65.5v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64C"],"defaultCode":58956,"grid":0},"attrs":[],"properties":{"id":75,"order":187,"ligatures":"","prevSize":32,"code":58956,"name":"admin-administration"},"setIdx":0,"setId":11,"iconIdx":75},{"icon":{"paths":["M576 896h-128q-27 0-45.5-19t-18.5-45v-128q0-26 18.5-45t45.5-19h128q27 0 45.5 19t18.5 45v128q0 26-18.5 45t-45.5 19v0zM576 384h-128q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h128q26 0 45 19t19 45v128q0 26-19 45t-45 19v0zM256 896h-128q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h128q27 0 45.5 19t18.5 45v128q0 26-18.5 45t-45.5 19v0zM896 896h-128q-27 0-45.5-19t-18.5-45v-128q0-26 18.5-45t45.5-19h128q27 0 45.5 19t18.5 45v128q0 26-18.5 45t-45.5 19v0zM896 469q0-13-9.5-17t-22.5-4h-352v-171q0-13-9.5-22.5t-22.5-9.5-22.5 9.5-9.5 22.5v171h-288q-13 0-22.5 4t-9.5 17v192q0 14 9.5 23t22.5 9 22.5-9 9.5-23v-149h256v149q0 14 9.5 23t22.5 9 22.5-9 9.5-23v-149h320v171q0 13 9.5 22.5t22.5 9.5 22.5-9.5 9.5-22.5v-214z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64D"],"defaultCode":58957,"grid":0},"attrs":[],"properties":{"id":76,"order":188,"ligatures":"","prevSize":32,"code":58957,"name":"admin-development"},"setIdx":0,"setId":11,"iconIdx":76},{"icon":{"paths":["M876 124q-112 0-180.5-17.5t-106.5-39-50.5-39.5-12.5-19q-2-4-5.5-6.5t-8.5-2.5v0q-5 0-8.5 2.5t-5.5 6.5q0 1-13 19t-50.5 39.5-106 39-180.5 17.5q-7 0-11 4.5t-4 10.5v509q0 79 56 146t124.5 117 127.5 79.5l65 32.5q1 0 2.5 0.5t3.5 0.5 3.5-0.5 2.5-0.5l65-32.5t127.5-79.5 124.5-117.5 56-145.5v-509q0-6-4-10.5t-11-4.5v0 0zM809 619q0 61-44 113.5t-97.5 92-100 62.5-50.5 25q-1 0-2.5 0.5t-2.5 0.5-2.5-0.5-2.5-0.5q-4-2-50.5-25t-100-62.5-97.5-92-44-113.5v-399q0-5 3.5-8.5t8.5-3.5q175 0 224.5-44.5l49.5-44.5q1-4 4-6t7-2v0q4 0 7 2t4 6l49 44.5t225 44.5q5 0 8.5 3.5t3.5 8.5v399zM730 476l-247 222q-7 6-15.5 9.5t-17.5 3.5-18-4-16-11l-123-123q-15-14-15-34.5t15-34.5q14-15 34.5-15t34.5 15l90 90 212-191q15-13 35.5-12t33.5 16q14 15 13 35.5t-16 33.5v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64E"],"defaultCode":58958,"grid":0},"attrs":[],"properties":{"id":77,"order":211,"ligatures":"","prevSize":32,"code":58958,"name":"admin-diagnostic"},"setIdx":0,"setId":11,"iconIdx":77},{"icon":{"paths":["M960 0h-896q-26 0-45 19t-19 45v640q0 26 19 45t45 19h320l-64 128h-33q-13 0-22 9t-9 22v2q0 13 9 22t22 9h450q13 0 22-9t9-22v-2q0-13-9-22t-22-9h-33l-64-128h320q26 0 45-19t19-45v-640q0-26-19-45t-45-19v0zM960 576h-896v-512h896v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64F"],"defaultCode":58959,"grid":0},"attrs":[],"properties":{"id":78,"order":210,"ligatures":"","prevSize":32,"code":58959,"name":"admin-platform"},"setIdx":0,"setId":11,"iconIdx":78},{"icon":{"paths":["M97 250h108q10 42 45 69.5t79 27.5q45 0 79.5-27.5t45.5-69.5h473q14 0 23.5-9.5t9.5-23.5q0-13-9.5-22.5t-23.5-9.5h-473q-11-42-45.5-69.5t-79.5-27.5-79.5 27.5-45.5 69.5h-107q-14 0-23.5 9.5t-9.5 22.5q0 14 9.5 23.5t23.5 9.5v0 0zM329 154q27 0 45.5 18.5t18.5 45.5q0 26-18.5 44.5t-45.5 18.5q-26 0-44.5-18.5t-18.5-44.5q0-27 18.5-45.5t44.5-18.5v0 0zM927 479h-155q-10-41-45-68.5t-79-27.5q-45 0-79.5 27.5t-45.5 68.5h-426q-14 0-23.5 9.5t-9.5 23.5 9.5 23.5 23.5 9.5h426q11 41 45.5 68.5t79.5 27.5q44 0 79-27.5t45-68.5h155q14 0 23.5-9.5t9.5-23.5-9.5-23.5-23.5-9.5v0 0zM648 575q-27 0-45.5-18.5t-18.5-44.5 18.5-44.5 45.5-18.5q26 0 44.5 18.5t18.5 44.5-18.5 44.5-44.5 18.5v0 0zM927 774h-473q-11-42-45.5-69.5t-79.5-27.5-79.5 27.5-45.5 69.5h-107q-14 0-23.5 9.5t-9.5 23.5q0 13 9.5 22.5t23.5 9.5h108q10 42 45 69.5t79 27.5q45 0 79.5-27.5t45.5-69.5h473q14 0 23.5-9.5t9.5-22.5q0-14-9.5-23.5t-23.5-9.5v0 0zM329 870q-26 0-44.5-18.5t-18.5-44.5q0-27 18.5-45.5t44.5-18.5q27 0 45.5 18.5t18.5 45.5q0 26-18.5 44.5t-45.5 18.5v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE650"],"defaultCode":58960,"grid":0},"attrs":[],"properties":{"id":79,"order":209,"ligatures":"","prevSize":32,"code":58960,"name":"admin-settings"},"setIdx":0,"setId":11,"iconIdx":79},{"icon":{"paths":["M803 445q0-52-16.5-98.5t-46.5-83.5-71-63-90-37v-32q0-27-20-47t-47-20-47 20-20 47v32q-49 11-90 37t-71 63-46.5 83.5-16.5 98.5v246l-90 90v45h762v-45l-90-90v-246zM512 960h18q23-3 39.5-18.5t23.5-35.5q3-7 6-16.5t3-19.5h-180q0 37 26.5 63.5t63.5 26.5v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE651"],"defaultCode":58961,"grid":0},"attrs":[],"properties":{"id":80,"order":208,"ligatures":"","prevSize":32,"code":58961,"name":"reporting-actions"},"setIdx":0,"setId":11,"iconIdx":80},{"icon":{"paths":["M288 352h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM288 608h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM288 864h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM544 352h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM544 608h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM544 864h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM800 352h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM800 608h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM800 864h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE652"],"defaultCode":58962,"grid":0},"attrs":[],"properties":{"id":81,"order":207,"ligatures":"","prevSize":32,"code":58962,"name":"reporting-dashboard"},"setIdx":0,"setId":11,"iconIdx":81},{"icon":{"paths":["M961 322h-640l-32-96q-3-16-14-38t-27-26l-171-32q-24-8-45.5 2.5t-29.5 34.5q-7 23 4.5 45t35.5 29l137 43 104 457q3 15 12 26t21 17v13q0 41 29.5 70.5t70.5 29.5q42 0 71.5-29.5t29.5-70.5v-7h159q0 2-0.5 3.5t-0.5 3.5q0 41 29.5 70.5t71.5 29.5 71.5-29.5 29.5-70.5v-4t-1-4q19-2 33.5-15t18.5-33l96-314q2-13-12.5-59t-50.5-46v0zM416 846q-20 0-34.5-14.5t-14.5-34.5q0-21 14.5-35t34.5-14q21 0 35 14t14 35q0 20-14 34.5t-35 14.5v0 0zM776 846q-20 0-34.5-14.5t-14.5-34.5q0-21 14.5-35t34.5-14 34.5 14 14.5 35q0 20-14.5 34.5t-34.5 14.5v0 0zM833 641h-448q-15 0-15-32t15-32h448q15 0 20.5 32t-20.5 32v0zM897 513h-512q-15 0-15-32t15-32h512q15 0 15 32t-15 32v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE653"],"defaultCode":58963,"grid":0},"attrs":[],"properties":{"id":82,"order":206,"ligatures":"","prevSize":32,"code":58963,"name":"reporting-ecommerce"},"setIdx":0,"setId":11,"iconIdx":82},{"icon":{"paths":["M512 0q-106 0-199.5 40t-163 109.5-109.5 163-40 199.5 40 199.5 109.5 163 163 109.5 199.5 40 199.5-40 163-109.5 109.5-163 40-199.5-40-199.5-109.5-163-163-109.5-199.5-40v0zM512 928q-86 0-162-32.5t-132.5-89-89-132.5-32.5-162 32.5-162 89-132.5 132.5-89 162-32.5 162 32.5 132.5 89 89 132.5 32.5 162-32.5 162-89 132.5-132.5 89-162 32.5v0zM512 192q-66 0-124.5 25t-102 68.5-68.5 102-25 124.5 25 124.5 68.5 102 102 68.5 124.5 25 124.5-25 102-68.5 68.5-102 25-124.5-25-124.5-68.5-102-102-68.5-124.5-25v0zM512 736q-46 0-87-17.5t-71.5-48-48-71.5-17.5-87 17.5-87 48-71.5 71.5-48 87-17.5 87 17.5 71.5 48 48 71.5 17.5 87-17.5 87-48 71.5-71.5 48-87 17.5v0zM608 512q0 40-28 68t-68 28-68-28-28-68 28-68 68-28 68 28 28 68v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE654"],"defaultCode":58964,"grid":0},"attrs":[],"properties":{"id":83,"order":189,"ligatures":"","prevSize":32,"code":58964,"name":"reporting-goal"},"setIdx":0,"setId":11,"iconIdx":83},{"icon":{"paths":["M293 241q0 20-14 34t-35 14q-20 0-34-14t-14-34 14-34.5 34-14.5q21 0 35 14.5t14 34.5v0zM423 241q0 20-14 34t-34 14q-21 0-35-14t-14-34 14-34.5 35-14.5q20 0 34 14.5t14 34.5v0zM554 241q0 20-14.5 34t-34.5 14-34.5-14-14.5-34 14.5-34.5 34.5-14.5 34.5 14.5 14.5 34.5v0zM832 0h-640q-80 0-136 56t-56 136v640q0 80 56 136t136 56h640q80 0 136-56t56-136v-640q0-80-56-136t-136-56v0zM192 128h640q26 0 45 19t19 45v128h-768v-128q0-26 19-45t45-19v0zM832 896h-640q-26 0-45-19t-19-45v-448h768v448q0 26-19 45t-45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE655"],"defaultCode":58965,"grid":0},"attrs":[],"properties":{"id":84,"order":190,"ligatures":"","prevSize":32,"code":58965,"name":"reporting-referer"},"setIdx":0,"setId":11,"iconIdx":84},{"icon":{"paths":["M1003 531v-1l-1-1q-4-10-9.5-19.5t-11.5-17.5q-13-23-31.5-54t-37.5-62.5-37-59.5-30-45q-31-42-68.5-75t-90.5-33q-12 0-24 2t-24 6q-38 12-71 34.5t-44 69.5h-22q-11-47-44-69.5t-71-34.5q-12-4-24-6t-24-2q-53 0-90.5 33t-68.5 75q-12 17-30 45t-37 59.5-37 62.5-32 54q-6 9-11.5 18t-9.5 19l-1 1v1q-10 22-15.5 46t-5.5 50q0 48 18.5 90.5t50 74.5 74.5 50.5 91 18.5q57 0 105-25t80-67h186q32 42 80.5 67t104.5 25q49 0 91.5-18.5t74-50.5 50-74.5 18.5-90.5q0-26-5.5-50t-15.5-46v0 0zM234 783q-65 0-110.5-46t-45.5-110q0-65 45.5-111t110.5-46 110.5 46 45.5 111q0 64-45.5 110t-110.5 46v0 0zM790 783q-65 0-110.5-46t-45.5-110q0-65 45.5-111t110.5-46 110.5 46 45.5 111q0 64-45.5 110t-110.5 46v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE656"],"defaultCode":58966,"grid":0},"attrs":[],"properties":{"id":85,"order":191,"ligatures":"","prevSize":32,"code":58966,"name":"reporting-visitors"},"setIdx":0,"setId":11,"iconIdx":85},{"icon":{"paths":["M695 459q5-1 9-2t8-1q11 0 20-5.5t16-12.5l202-202q18-17 18-41.5t-18-41.5l-63-64q-17-17-41.5-17t-41.5 17l-202 201q-8 8-13 17.5t-6 19.5q0 5-0.5 9t-2.5 8q-4 17-0.5 33.5t15.5 28.5l40 39q12 12 28 15t32-1v0zM206 793l-10-10-50 40-83 132 21 22 132-84 40-50-9-9 167-167-42-41-166 167zM434 330q14-52 1-105.5t-53-94.5q-41-40-94.5-53.5t-104.5 0.5l116 116-30 114-114 30-116-116q-14 52-0.5 105t53.5 94q42 42 98.5 54.5t109.5-5.5l478 478q14 14 32 21t37 7q18 0 36-7t32-21q28-28 28-68t-28-69l-481-480zM855 931q-16 0-26.5-11t-10.5-26 10.5-26 26.5-11q15 0 26 11t11 26-11 26-26 11v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE657"],"defaultCode":58967,"grid":0},"attrs":[],"properties":{"id":86,"order":192,"ligatures":"","prevSize":32,"code":58967,"name":"user-manage"},"setIdx":0,"setId":11,"iconIdx":86},{"icon":{"paths":["M600 312q0 38-14.5 83t-39.5 83.5-58.5 64-71.5 25.5-71.5-25.5-58.5-64-39.5-83.5-14.5-83q0-76 54-130t130-54 130 54 54 130v0zM763 896q15 0 26-11.5t11-28.5v0-1q0-60-30-113.5t-82.5-93.5-122-63-149.5-23-149.5 23-122 63-82.5 93.5-30 113.5v1q0 17 11 28.5t26 11.5h694zM944 224h-192q-20 0-34 14t-14 34 14 34 34 14h192q20 0 34-14t14-34-14-34-34-14v0zM944 416h-192q-20 0-34 14t-14 34 14 34 34 14h192q20 0 34-14t14-34-14-34-34-14v0zM944 608h-96q-20 0-34 14t-14 34 14 34 34 14h96q20 0 34-14t14-34-14-34-34-14v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE658"],"defaultCode":58968,"grid":0},"attrs":[],"properties":{"id":87,"order":193,"ligatures":"","prevSize":32,"code":58968,"name":"user-personal"},"setIdx":0,"setId":11,"iconIdx":87},{"icon":{"paths":["M960 64h-896q-26 0-45 19t-19 45v640q0 26 19 45t45 19h320l-64 128h-33q-13 0-22 9t-9 22v2q0 13 9 22t22 9h450q13 0 22-9t9-22v-2q0-13-9-22t-22-9h-33l-64-128h320q26 0 45-19t19-45v-640q0-26-19-45t-45-19v0zM960 640h-896v-512h896v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE659"],"defaultCode":58969,"grid":0},"attrs":[],"properties":{"id":88,"order":194,"ligatures":"","prevSize":32,"code":58969,"name":"user-platform"},"setIdx":0,"setId":11,"iconIdx":88},{"icon":{"paths":["M742.038 374.408v-92.444h-460.074v92.444h460.074zM742.038 557.148v-90.296h-460.074v90.296h460.074zM604.444 742.038v-92.444h-322.482v92.444h322.482zM512 99.222c-25.798 0-45.148 19.348-45.148 45.148s19.348 47.298 45.148 47.298 45.148-21.498 45.148-47.298-19.348-45.148-45.148-45.148zM832.332 99.222c49.448 0 92.444 42.998 92.444 92.444v640.666c0 49.448-42.998 92.444-92.444 92.444h-640.666c-49.448 0-92.444-42.998-92.444-92.444v-640.666c0-49.448 42.998-92.444 92.444-92.444h191.34c19.348-53.748 68.796-92.444 128.992-92.444s109.644 38.698 128.992 92.444h191.34z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["assignment"],"defaultCode":59485,"grid":32},"attrs":[],"properties":{"order":195,"ligatures":"assignment","id":0,"prevSize":24,"code":59485,"name":"form"},"setIdx":1,"setId":10,"iconIdx":0},{"icon":{"paths":["M692 692l34-56-192-116v-222h-64v256zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["watch_later"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":0,"prevSize":24,"code":59649,"name":"watch_later"},"setIdx":2,"setId":9,"iconIdx":0},{"icon":{"paths":["M726 726v-64c0-72-142-108-214-108s-214 36-214 108v64h428zM512 288c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["contacts"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":1,"prevSize":24,"code":59648,"name":"segmented-visits-log"},"setIdx":2,"setId":9,"iconIdx":1},{"icon":{"paths":["M854 682v-512h-684v598l86-86h598zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chat_bubble_outline"],"defaultCode":57547,"grid":24},"attrs":[],"properties":{"ligatures":"chat_bubble_outline","id":2,"order":5,"prevSize":24,"code":57547,"name":"overlay"},"setIdx":2,"setId":9,"iconIdx":2},{"icon":{"paths":["M557.5 234.667l394.333 277.333-394.333 277.333v-554.667zM141.5 789.333v-554.667l394.333 277.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["fast_forward"],"defaultCode":57375,"grid":24},"attrs":[],"properties":{"order":122,"ligatures":"fast_forward","id":3,"prevSize":24,"code":57375,"name":"fast-forward"},"setIdx":2,"setId":9,"iconIdx":3},{"icon":{"paths":["M488.167 512l394.333-277.333v554.667zM466.5 789.333l-394.333-277.333 394.333-277.333v554.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["fast_rewind"],"defaultCode":57376,"grid":24},"attrs":[],"properties":{"order":123,"ligatures":"fast_rewind","id":4,"prevSize":24,"code":57376,"name":"fast-rewind"},"setIdx":2,"setId":9,"iconIdx":4},{"icon":{"paths":["M665.84 716.319v-408.639h-103.362v408.639h103.362zM461.521 716.319v-408.639h-103.362v408.639h103.362zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pause_circle_filled"],"defaultCode":57397,"grid":24},"attrs":[],"properties":{"order":124,"ligatures":"pause_circle_filled","id":5,"prevSize":24,"code":57397,"name":"pause"},"setIdx":2,"setId":9,"iconIdx":5},{"icon":{"paths":["M408.639 742.76l307.681-230.76-307.681-230.76v461.521zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["play_circle_filled"],"defaultCode":57400,"grid":24},"attrs":[],"properties":{"order":125,"ligatures":"play_circle_filled","id":6,"prevSize":24,"code":57400,"name":"play"},"setIdx":2,"setId":9,"iconIdx":6},{"icon":{"paths":["M512 229.152c206.638 0 375.906 167.070 375.906 373.708s-169.268 375.906-375.906 375.906-375.906-169.268-375.906-375.906h94.525c0 156.079 125.3 281.38 281.38 281.38s281.38-125.3 281.38-281.38-125.3-281.38-281.38-281.38v189.053l-235.216-235.216 235.216-235.216v189.053z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["replay"],"defaultCode":57410,"grid":24},"attrs":[],"properties":{"order":126,"ligatures":"replay","id":7,"prevSize":24,"code":57410,"name":"replay"},"setIdx":2,"setId":9,"iconIdx":7},{"icon":{"paths":["M710.334 213.334h100.334v597.334h-100.334v-597.334zM213.334 810.666v-597.334l422.334 298.666z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skip_next"],"defaultCode":57412,"grid":24},"attrs":[],"properties":{"order":127,"ligatures":"skip_next","id":8,"prevSize":24,"code":57412,"name":"skip-next"},"setIdx":2,"setId":9,"iconIdx":8},{"icon":{"paths":["M388.332 512l422.33-298.668v597.33zM213.332 213.332h100.331v597.33h-100.331v-597.33z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skip_previous"],"defaultCode":57413,"grid":24},"attrs":[],"properties":{"order":128,"ligatures":"skip_previous","id":9,"prevSize":24,"code":57413,"name":"skip-previous"},"setIdx":2,"setId":9,"iconIdx":9},{"icon":{"paths":["M213.334 213.334h597.334v597.334h-597.334v-597.334z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stop"],"defaultCode":57415,"grid":24},"attrs":[],"properties":{"order":129,"ligatures":"stop","id":10,"prevSize":24,"code":57415,"name":"stop"},"setIdx":2,"setId":9,"iconIdx":10},{"icon":{"paths":["M598 138c172 38 298 192 298 374s-126 336-298 374v-88c124-36 212-150 212-286s-88-250-212-286v-88zM704 512c0 76-42 140-106 172v-344c64 32 106 96 106 172zM128 384h170l214-214v684l-214-214h-170v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume_up"],"defaultCode":57424,"grid":24},"attrs":[],"properties":{"ligatures":"volume_up","id":11,"order":130,"prevSize":24,"code":57424,"name":"audio"},"setIdx":2,"setId":9,"iconIdx":11},{"icon":{"paths":["M562.479 358.16v-103.361h-100.958v103.361h100.958zM562.479 769.202v-307.681h-100.958v307.681h100.958zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info"],"defaultCode":59534,"grid":24},"attrs":[],"properties":{"order":196,"ligatures":"info","id":12,"prevSize":24,"code":59534,"name":"info2"},"setIdx":2,"setId":9,"iconIdx":12},{"icon":{"paths":["M461.521 358.16v-103.361h100.958v103.361h-100.958zM512 923.042c225.953 0 411.042-185.089 411.042-411.042s-185.089-411.042-411.042-411.042-411.042 185.089-411.042 411.042 185.089 411.042 411.042 411.042zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512zM461.521 769.202v-307.681h100.958v307.681h-100.958z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info_outline"],"defaultCode":59535,"grid":24},"attrs":[],"properties":{"order":197,"ligatures":"info_outline","id":13,"prevSize":24,"code":59535,"name":"info_outline"},"setIdx":2,"setId":9,"iconIdx":13},{"icon":{"paths":["M512 692.282c98.554 0 180.282-81.728 180.282-180.282s-81.728-180.282-180.282-180.282-180.282 81.728-180.282 180.282 81.728 180.282 180.282 180.282zM894.197 562.479l108.169 84.131c9.615 7.211 12.019 21.634 4.808 33.653l-103.361 177.878c-7.211 12.019-19.23 14.423-31.249 9.615l-127.399-50.479c-26.441 19.23-55.286 38.46-86.535 50.479l-19.23 134.61c-2.404 12.019-12.019 21.634-24.038 21.634h-206.723c-12.019 0-21.634-9.615-24.038-21.634l-19.23-134.61c-31.249-12.019-60.094-28.845-86.535-50.479l-127.399 50.479c-12.019 4.808-24.038 2.404-31.249-9.615l-103.361-177.878c-7.211-12.019-4.808-26.441 4.808-33.653l108.169-84.131c-2.404-16.826-2.404-33.653-2.404-50.479s0-33.653 2.404-50.479l-108.169-84.131c-9.615-7.211-12.019-21.634-4.808-33.653l103.361-177.878c7.211-12.019 19.23-14.423 31.249-9.615l127.399 50.479c26.441-19.23 55.286-38.46 86.535-50.479l19.23-134.61c2.404-12.019 12.019-21.634 24.038-21.634h206.723c12.019 0 21.634 9.615 24.038 21.634l19.23 134.61c31.249 12.019 60.094 28.845 86.535 50.479l127.399-50.479c12.019-4.808 24.038-2.404 31.249 9.615l103.361 177.878c7.211 12.019 4.808 26.441-4.808 33.653l-108.169 84.131c2.404 16.826 2.404 33.653 2.404 50.479s0 33.653-2.404 50.479z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["settings"],"defaultCode":59576,"grid":24},"attrs":[],"properties":{"order":198,"ligatures":"settings","id":14,"prevSize":24,"code":59576,"name":"settings"},"setIdx":2,"setId":9,"iconIdx":14},{"icon":{"paths":["M982 342c0 46-40 84-86 84-8 0-16 0-22-2l-152 152c2 6 4 14 4 22 0 46-40 84-86 84s-86-38-86-84c0-8 2-16 4-22l-110-110c-6 2-14 4-22 4s-16-2-22-4l-194 194c2 6 4 14 4 22 0 46-40 86-86 86s-86-40-86-86 40-84 86-84c8 0 16 0 22 2l194-194c-2-6-2-14-2-22 0-46 38-86 84-86s86 40 86 86c0 8 0 16-2 22l108 108c6-2 14-2 22-2s16 0 22 2l152-150c-2-6-4-14-4-22 0-46 40-86 86-86s86 40 86 86z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["timeline"],"defaultCode":59682,"grid":24},"attrs":[],"properties":{"ligatures":"timeline","id":15,"order":199,"prevSize":24,"code":59682,"name":"evolution"},"setIdx":2,"setId":9,"iconIdx":15},{"icon":{"paths":["M621.89 512v-109.89h-219.78v109.89h219.78zM621.89 729.22v-107.335h-219.78v107.335h219.78zM949 294.78v107.335h-115c2.555 17.89 5.11 38.335 5.11 56.22v53.665h109.89v109.89h-109.89v53.665c0 17.89-2.555 35.78-5.11 53.665h115v109.89h-153.335c-56.22 97.11-163.555 163.555-283.665 163.555s-227.445-66.445-283.665-163.555h-153.335v-109.89h115c-2.555-17.89-5.11-35.78-5.11-53.665v-53.665h-109.89v-109.89h109.89v-53.665c0-17.89 2.555-38.335 5.11-56.22h-115v-107.335h153.335c25.555-43.445 58.78-79.22 99.665-107.335l-89.445-89.445 76.665-76.665 120.11 117.555c25.555-5.11 51.11-7.665 76.665-7.665s51.11 2.555 76.665 7.665l120.11-117.555 76.665 76.665-89.445 89.445c40.89 28.11 74.11 63.89 99.665 107.335h153.335z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bug_report"],"defaultCode":59496,"grid":24},"attrs":[],"properties":{"ligatures":"bug_report","id":16,"order":32,"prevSize":24,"code":59496,"name":"bug"},"setIdx":2,"setId":9,"iconIdx":16},{"icon":{"paths":["M143.948 828.18h736.108v106.216h-736.108v-106.216zM353.912 721.964v-316.18h-209.964l368.052-368.052 368.052 368.052h-209.964v316.18h-316.18z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file_upload"],"defaultCode":58054,"grid":24},"attrs":[],"properties":{"ligatures":"file_upload","id":17,"order":236,"prevSize":24,"code":58054,"name":"upload"},"setIdx":2,"setId":9,"iconIdx":17},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM512 832l-320-256h192v-192h256v192h192l-320 256zM154.51 192l64-64h586.978l64 64h-714.978z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["box-add","box","download","storage","inbox","archive"],"defaultCode":59742,"grid":16},"attrs":[],"properties":{"ligatures":"box-add, box3","name":"archive","order":200,"id":0,"prevSize":32,"code":59742},"setIdx":3,"setId":8,"iconIdx":0},{"icon":{"paths":["M956.29 804.482l-316.29-527.024v-213.458h32c17.6 0 32-14.4 32-32s-14.4-32-32-32h-320c-17.6 0-32 14.4-32 32s14.4 32 32 32h32v213.458l-316.288 527.024c-72.442 120.734-16.512 219.518 124.288 219.518h640c140.8 0 196.73-98.784 124.29-219.518zM241.038 640l206.962-344.938v-231.062h128v231.062l206.964 344.938h-541.926z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lab","beta","beaker","test","experiment"],"defaultCode":59818,"grid":16},"attrs":[],"properties":{"ligatures":"lab, beta","name":"lab","order":201,"id":1,"prevSize":32,"code":59818},"setIdx":3,"setId":8,"iconIdx":1},{"icon":{"paths":["M768 704h-101.49l-160-160 160-160h101.49v160l224-224-224-224v160h-128c-16.974 0-33.252 6.744-45.254 18.746l-178.746 178.744-178.746-178.746c-12-12-28.28-18.744-45.254-18.744h-192v128h165.49l160 160-160 160h-165.49v128h192c16.974 0 33.252-6.742 45.254-18.746l178.746-178.744 178.746 178.744c12.002 12.004 28.28 18.746 45.254 18.746h128v160l224-224-224-224v160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shuffle","random","player"],"defaultCode":59952,"grid":16},"attrs":[],"properties":{"ligatures":"shuffle, random","name":"transition","id":2,"order":202,"prevSize":32,"code":59952},"setIdx":3,"setId":8,"iconIdx":2},{"icon":{"paths":["M512 0c-282.77 0-512 71.634-512 160v96l384 384v320c0 35.346 57.306 64 128 64 70.692 0 128-28.654 128-64v-320l384-384v-96c0-88.366-229.23-160-512-160zM94.384 138.824c23.944-13.658 57.582-26.62 97.278-37.488 87.944-24.076 201.708-37.336 320.338-37.336 118.628 0 232.394 13.26 320.338 37.336 39.696 10.868 73.334 23.83 97.28 37.488 15.792 9.006 24.324 16.624 28.296 21.176-3.972 4.552-12.506 12.168-28.296 21.176-23.946 13.658-57.584 26.62-97.28 37.488-87.942 24.076-201.708 37.336-320.338 37.336s-232.394-13.26-320.338-37.336c-39.696-10.868-73.334-23.83-97.278-37.488-15.792-9.008-24.324-16.624-28.298-21.176 3.974-4.552 12.506-12.168 28.298-21.176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["filter","funnel"],"defaultCode":59995,"grid":16},"attrs":[],"properties":{"ligatures":"filter, funnel","name":"funnel","order":203,"id":3,"prevSize":32,"code":59995},"setIdx":3,"setId":8,"iconIdx":3},{"icon":{"paths":["M704 64l-320 320h-192l-192 256c0 0 203.416-56.652 322.066-30.084l-322.066 414.084 421.902-328.144c58.838 134.654-37.902 328.144-37.902 328.144l256-192v-192l320-320 64-320-320 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rocket","jet","speed","spaceship","fast"],"defaultCode":59813,"grid":16},"attrs":[],"properties":{"ligatures":"rocket, jet","name":"rocket","order":31,"id":4,"prevSize":32,"code":59813},"setIdx":3,"setId":8,"iconIdx":4},{"icon":{"paths":["M832 736l96 96 320-320-320-320-96 96 224 224z","M448 288l-96-96-320 320 320 320 96-96-224-224z","M701.298 150.519l69.468 18.944-191.987 704.026-69.468-18.944 191.987-704.026z"],"width":1280,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["embed","code","html","xml"],"defaultCode":60032,"grid":16},"attrs":[],"properties":{"ligatures":"embed2, code2","name":"embed","order":262,"id":5,"prevSize":32,"code":60032},"setIdx":3,"setId":8,"iconIdx":5},{"icon":{"paths":["M512 64c282.77 0 512 229.23 512 512 0 192.792-106.576 360.666-264.008 448h-495.984c-157.432-87.334-264.008-255.208-264.008-448 0-282.77 229.23-512 512-512zM801.914 865.914c77.438-77.44 120.086-180.398 120.086-289.914h-90v-64h85.038c-7.014-44.998-21.39-88.146-42.564-128h-106.474v-64h64.284c-9.438-11.762-19.552-23.096-30.37-33.914-46.222-46.22-101.54-80.038-161.914-99.798v69.712h-64v-85.040c-20.982-3.268-42.36-4.96-64-4.96s-43.018 1.69-64 4.96v85.040h-64v-69.712c-60.372 19.76-115.692 53.576-161.914 99.798-10.818 10.818-20.932 22.152-30.37 33.914h64.284v64h-106.476c-21.174 39.854-35.552 83.002-42.564 128h85.040v64h-90c0 109.516 42.648 212.474 120.086 289.914 10.71 10.71 21.924 20.728 33.56 30.086h192.354l36.572-512h54.856l36.572 512h192.354c11.636-9.358 22.852-19.378 33.56-30.086z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["meter","gauge","dashboard","speedometer","performance"],"defaultCode":59814,"grid":16},"attrs":[],"properties":{"ligatures":"meter, gauge","name":"page-performance","order":2,"id":6,"prevSize":32,"code":59814},"setIdx":3,"setId":8,"iconIdx":6},{"icon":{"paths":["M755.188 64c-107.63 0-200.258 87.554-243.164 179-42.938-91.444-135.578-179-243.216-179-148.382 0-268.808 120.44-268.808 268.832 0 301.846 304.5 380.994 512.022 679.418 196.154-296.576 511.978-387.206 511.978-679.418 0-148.392-120.43-268.832-268.812-268.832z"],"tags":["heart","like","love","favorite"],"defaultCode":59866,"grid":16,"attrs":[]},"attrs":[],"properties":{"ligatures":"heart, like","name":"heart","order":269,"id":219,"prevSize":32,"code":59866},"setIdx":10,"setId":1,"iconIdx":218},{"icon":{"paths":["M804.571 566.857v182.857c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-182.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM1024 73.142v292.571c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-100.571-100.571-372.571 372.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l372.571-372.571-100.571-100.571c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z"],"width":1024,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["external-link"],"defaultCode":61582,"grid":14},"attrs":[],"properties":{"name":"outlink","id":0,"order":266,"prevSize":28,"code":61582},"setIdx":4,"setId":7,"iconIdx":0},{"icon":{"paths":["M658.286 493.714v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM731.429 749.714v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 274.285v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"],"width":804.5714285714286,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["minus-square-o"],"defaultCode":61767,"grid":14},"attrs":[],"properties":{"name":"minus-square","id":1,"order":268,"prevSize":28,"code":61767},"setIdx":4,"setId":7,"iconIdx":1},{"icon":{"paths":["M658.286 493.714v36.571c0 10.286-8 18.286-18.286 18.286h-201.143v201.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-201.143h-201.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h201.143v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v201.143h201.143c10.286 0 18.286 8 18.286 18.286zM731.429 749.714v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 274.285v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"],"width":804.5714285714286,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plus-square-o"],"defaultCode":61846,"grid":14},"attrs":[],"properties":{"name":"plus-square","id":2,"order":263,"prevSize":28,"code":61846},"setIdx":4,"setId":7,"iconIdx":2},{"icon":{"paths":["M614.286 749.714c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 530.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z"],"width":658.2857142857142,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-double-up"],"defaultCode":61698,"grid":14},"attrs":[],"properties":{"name":"arrowup","id":3,"order":204,"prevSize":28,"code":61698},"setIdx":4,"setId":7,"iconIdx":3},{"icon":{"paths":["M614.286 493.714c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 274.286c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z"],"width":658.2857142857142,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-double-down"],"defaultCode":61699,"grid":14},"attrs":[],"properties":{"name":"arrowdown","id":4,"order":205,"prevSize":28,"code":61699},"setIdx":4,"setId":7,"iconIdx":4}],"height":1024,"metadata":{"name":"matomo","url":"https://matomo.org"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"matomo","majorVersion":1,"minorVersion":0,"fontURL":"https://matomo.org","description":"Matomo"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"ie7":false,"includeMetadata":true,"showSelector":false,"selector":"","classSelector":".icon","showMetrics":false,"showMetadata":false,"showVersion":true,"noie8":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215,"name":"icomoon","classSelector":".icon"},"historySize":100,"showCodes":true,"gridSize":16,"showGrid":false,"showLiga":false}} \ No newline at end of file
+
+{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M576 64c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M480 96h64v128h-64v-128z","M897.024 1024h-770.048c-70.144 0-126.976-56.832-126.976-126.976v0c0-70.144 56.832-126.976 126.976-126.976h769.984c70.144 0 126.976 56.832 126.976 126.976v0c0.064 70.144-56.768 126.976-126.912 126.976z","M512 192c-194.432 0-352 157.568-352 352v160h704v-160c0-194.432-157.568-352-352-352zM384 608c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96-43.008 96-96 96zM640 608c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96-43.008 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-alien"],"grid":0},"attrs":[],"properties":{"order":131,"id":0,"prevSize":32,"code":58880,"name":"alien"},"setIdx":0,"setId":20,"iconIdx":0},{"icon":{"paths":["M736 256h-448c-17.664 0-32 14.336-32 32s14.336 32 32 32h448c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M736 384h-448c-17.664 0-32 14.336-32 32s14.336 32 32 32h448c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M608 512h-320c-17.664 0-32 14.336-32 32s14.336 32 32 32h320c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M832 0h-640c-106.048 0-192 85.952-192 192v448c0 106.048 85.952 192 192 192h320l195.2 184.32c25.024 18.816 60.8 0.896 60.8-30.4v-153.92h64c106.048 0 192-85.952 192-192v-448c0-106.048-85.952-192-192-192zM896 640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-448c0-35.264 28.736-64 64-64h640c35.264 0 64 28.736 64 64v448z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-annotation"],"grid":0},"attrs":[],"properties":{"order":132,"id":1,"prevSize":32,"code":58881,"name":"annotation"},"setIdx":0,"setId":20,"iconIdx":1},{"icon":{"paths":["M704 224v576l-321.024-286.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-left"],"grid":0},"attrs":[],"properties":{"order":133,"id":2,"prevSize":32,"code":58882,"name":"arrow-left"},"setIdx":0,"setId":20,"iconIdx":2},{"icon":{"paths":["M414.976 192v576l321.024-286.976z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-right"],"grid":0},"attrs":[],"properties":{"order":134,"id":3,"prevSize":32,"code":58883,"name":"arrow-right"},"setIdx":0,"setId":20,"iconIdx":3},{"icon":{"paths":["M1024 320c0-35.328-28.672-64-64-64h-80.832l-36.608-118.912c-23.808-72.448-91.008-121.088-167.232-121.088h-326.656c-76.224 0-143.424 48.64-167.232 121.024l-35.072 106.624-0.256 12.352h-82.112c-35.328 0-64 28.672-64 64v96c0 3.712 1.472 6.912 2.112 10.432-1.024 8-2.112 15.936-2.112 24.256v74.112c112.128 88.896 295.296 147.2 502.4 147.2 219.456 0 412.032-65.408 521.6-163.456v-57.856c0-8.256-1.024-16.32-2.112-24.32 0.64-3.52 2.112-6.72 2.112-10.368v-96zM640 258.688v189.312c0 70.4-57.6 128-128 128s-128-57.6-128-128v-189.312h-139.84l28.544-91.648c10.816-32.96 41.28-55.040 75.968-55.040h326.656c34.688 0 65.216 22.080 76.032 55.040l30.144 91.648h-141.504z","M576 448c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M0 600.768v231.232c0 7.296 1.344 14.208 2.176 21.312-0.64 3.584-2.176 6.912-2.176 10.688v96c0 35.328 28.672 64 64 64h96c3.776 0 7.104-1.536 10.688-2.176 7.104 0.832 14.016 2.176 21.312 2.176h640c7.296 0 14.208-1.344 21.312-2.176 3.584 0.64 6.912 2.176 10.688 2.176h96c35.328 0 64-28.672 64-64v-96c0-3.776-1.536-7.104-2.176-10.688 0.832-7.104 2.176-14.016 2.176-21.312v-244.096c-125.12 90.432-312.448 148.096-521.6 148.096-198.976 0-377.664-52.352-502.4-135.232z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-business"],"grid":0},"attrs":[],"properties":{"order":135,"id":4,"prevSize":32,"code":58884,"name":"business"},"setIdx":0,"setId":20,"iconIdx":4},{"icon":{"paths":["M320 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M512 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 768v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M512 768v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 768v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M832 64v-64h-128v64h-384v-64h-128v64c-106.048 0-192 85.952-192 192v576c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-576c0-106.048-85.952-192-192-192zM896 832c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-512h768v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-calendar"],"grid":0},"attrs":[],"properties":{"order":136,"id":5,"prevSize":32,"code":58885,"name":"calendar"},"setIdx":0,"setId":20,"iconIdx":5},{"icon":{"paths":["M864 1024v0c-52.8 0-96-43.2-96-96v-288c0-52.8 43.2-96 96-96v0c52.8 0 96 43.2 96 96v288c0 52.8-43.2 96-96 96z","M480 1024v0c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96v0c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96z","M96 1024v0c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96v0c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-bar"],"grid":0},"attrs":[],"properties":{"order":137,"id":6,"prevSize":32,"code":58886,"name":"chart-bar"},"setIdx":0,"setId":20,"iconIdx":6},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM896 832c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-208.32c29.888-13.504 77.312-38.4 154.304-80.32 33.152 57.472 94.528 96.64 165.696 96.64 36.544 0 70.4-10.752 99.456-28.544l143.296 143.296c17.664 17.664 46.336 17.664 64 0v0c17.664-17.664 17.664-46.336 0-64l-143.296-143.296c3.776-6.208 7.040-12.672 10.176-19.264l126.528 56.256 147.84-232.256v479.808zM320 448c0-70.592 57.408-128 128-128 66.944 0 121.408 51.84 126.912 117.376l-128.384-57.088-13.952 7.68c-34.304 18.88-73.28 40.256-112.384 61.76 0-0.576-0.192-1.152-0.192-1.728zM449.472 451.712l113.92 50.624c-20.48 43.392-64.32 73.664-115.392 73.664-46.848 0-87.424-25.536-109.76-63.232 32.832-17.984 69.376-38.016 111.232-61.056zM896 232.96l-172.16 270.592-85.12-37.824c0.576-5.888 1.28-11.712 1.28-17.728 0-106.048-85.952-192-192-192s-192 85.952-192 192c0 11.968 1.408 23.616 3.52 34.944-51.136 28.032-98.688 54.016-131.52 71.808v-362.752c0-35.264 28.736-64 64-64h640c35.264 0 64 28.736 64 64v40.96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-line-details"],"grid":0},"attrs":[],"properties":{"order":229,"id":7,"prevSize":32,"code":58887,"name":"chart-line-details"},"setIdx":0,"setId":20,"iconIdx":7},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM192 128h640c35.264 0 64 28.736 64 64v72l-188.992 141.76-128-128-236.928 177.664-68.928-103.424h-145.152v-160c0-35.264 28.736-64 64-64zM896 344v363.968l-263.68-105.536-115.328 115.328-139.328-209.024 195.328-146.496 128 128 195.008-146.24zM290.816 493.888l-162.816 122.112v-200h110.848l51.968 77.888zM832 896h-640c-35.264 0-64-28.736-64-64v-136l198.336-148.8 180.672 270.976 140.672-140.672 248.32 99.328v55.168c0 35.264-28.736 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-line"],"grid":0},"attrs":[],"properties":{"order":228,"id":8,"prevSize":32,"code":58888,"name":"chart-line"},"setIdx":0,"setId":20,"iconIdx":8},{"icon":{"paths":["M576 475.776l404.352 242.624c27.904-63.232 43.648-132.928 43.648-206.4 0-261.056-195.52-476.032-448-507.584v471.36z","M448 548.224v-543.808c-252.48 31.552-448 246.528-448 507.584 0 282.752 229.248 512 512 512 163.392 0 308.544-76.8 402.304-195.968l-466.304-279.808z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-chart-pie"],"grid":0},"attrs":[],"properties":{"order":227,"id":9,"prevSize":32,"code":58889,"name":"chart-pie"},"setIdx":0,"setId":20,"iconIdx":9},{"icon":{"paths":["M23.552 864.832l841.28-841.28c37.44-37.44 98.176-37.44 135.616 0v0c37.44 37.44 37.44 98.176 0 135.616l-841.28 841.28c-37.44 37.44-98.176 37.44-135.616 0v0c-37.44-37.44-37.44-98.176 0-135.616z","M864.64 1000.256l-841.28-841.28c-37.44-37.44-37.44-98.176 0-135.616v0c37.44-37.44 98.176-37.44 135.616 0l841.28 841.28c37.44 37.44 37.44 98.176 0 135.616v0c-37.504 37.44-98.176 37.44-135.616 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-close"],"grid":0},"attrs":[],"properties":{"order":226,"id":10,"prevSize":32,"code":58890,"name":"close"},"setIdx":0,"setId":20,"iconIdx":10},{"icon":{"paths":["M734.656 576h-446.656l224 320z","M288 448h446.656l-224-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-collapsed-arrows"],"grid":0},"attrs":[],"properties":{"order":225,"id":11,"prevSize":32,"code":58891,"name":"arrow-collapsed"},"setIdx":0,"setId":20,"iconIdx":11},{"icon":{"paths":["M990.848 574.528v0c-21.184-14.016-33.216-37.248-33.152-61.952 0-0.192 0-0.384 0-0.576s0-0.384 0-0.576c-0.064-24.704 11.968-47.936 33.088-61.888l0.064-0.064c27.136-17.984 39.296-50.752 30.144-81.216-2.88-9.664-6.080-19.264-9.6-28.672-11.072-29.952-40.96-49.6-73.856-48.704v0c-25.6 0.704-49.6-11.264-64.64-31.296-0.192-0.32-0.448-0.576-0.64-0.896-15.104-19.968-19.456-45.632-10.88-68.864v-0.064c11.008-29.888 0.96-63.296-25.024-82.816-8.192-6.144-16.64-12.096-25.216-17.792-27.2-18.048-63.424-16.96-89.536 2.432l-0.064 0.064c-19.904 14.784-46.080 19.2-69.888 11.648-1.152-0.384-2.368-0.768-3.52-1.088-24.064-7.36-42.624-25.792-49.728-49.088v-0.128c-9.216-30.144-37.248-51.712-69.824-52.736-5.504-0.192-11.008-0.256-16.576-0.256s-11.072 0.064-16.576 0.256c-32.576 1.024-60.608 22.592-69.824 52.736v0.128c-7.104 23.296-25.664 41.728-49.664 49.088-1.152 0.384-2.304 0.768-3.52 1.152-23.808 7.552-49.984 3.136-69.888-11.648l-0.064-0.064c-26.176-19.456-62.336-20.48-89.536-2.432-8.576 5.696-16.96 11.648-25.216 17.792-25.984 19.456-36.032 52.864-24.96 82.752v0.064c8.576 23.296 4.16 48.96-10.88 68.864-0.192 0.32-0.448 0.576-0.64 0.896-15.040 20.032-39.040 31.936-64.64 31.296-33.024-0.896-62.912 18.688-73.984 48.704-3.456 9.408-6.656 19.008-9.6 28.672-9.152 30.464 3.008 63.232 30.144 81.216l0.064 0.064c21.12 13.952 33.152 37.184 33.088 61.888 0 0.192 0 0.384 0 0.576s0 0.384 0 0.576c0.064 24.704-11.968 47.936-33.088 61.888l-0.064 0.064c-27.136 17.984-39.296 50.752-30.144 81.216 2.88 9.664 6.080 19.264 9.6 28.672 11.072 29.952 40.96 49.6 73.92 48.704v0c25.6-0.704 49.6 11.264 64.64 31.296 0.192 0.32 0.448 0.576 0.64 0.896 15.104 19.968 19.456 45.632 10.88 68.864v0.064c-11.008 29.888-0.96 63.296 25.024 82.816 8.192 6.144 16.64 12.096 25.216 17.792 27.2 18.048 63.424 16.96 89.536-2.432l0.064-0.064c19.904-14.784 46.080-19.2 69.888-11.648 1.152 0.384 2.368 0.768 3.52 1.088 24 7.36 42.56 25.856 49.664 49.152l0.064 0.128c9.216 30.144 37.248 51.712 69.824 52.736 5.44 0.128 10.944 0.192 16.512 0.192s11.072-0.064 16.576-0.256c32.576-1.024 60.608-22.528 69.824-52.736v-0.128c7.104-23.296 25.664-41.728 49.664-49.152 1.152-0.384 2.368-0.704 3.52-1.088 23.872-7.552 49.984-3.136 69.888 11.648l0.064 0.064c26.176 19.456 62.336 20.48 89.536 2.432 8.576-5.696 17.024-11.584 25.216-17.792 25.984-19.456 36.032-52.864 25.024-82.816v-0.064c-8.576-23.296-4.16-48.96 10.88-68.864 0.192-0.32 0.448-0.576 0.64-0.896 15.040-20.032 39.040-31.936 64.64-31.296v0c32.96 0.896 62.848-18.752 73.856-48.704 3.456-9.408 6.656-19.008 9.6-28.672 9.216-30.4-2.944-63.168-30.080-81.152zM512 759.168c-141.376 0-256-110.656-256-247.168s114.624-247.168 256-247.168c141.376 0 256 110.656 256 247.168s-114.624 247.168-256 247.168z","M608 512c0 51.181-42.981 92.672-96 92.672s-96-41.491-96-92.672c0-51.181 42.981-92.672 96-92.672s96 41.491 96 92.672z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-configure"],"grid":0},"attrs":[],"properties":{"order":224,"id":12,"prevSize":32,"code":58892,"name":"configure"},"setIdx":0,"setId":20,"iconIdx":12},{"icon":{"paths":["M672 257.344v446.656l-320-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-datepicker-arr-l"],"grid":0},"attrs":[],"properties":{"order":138,"id":13,"prevSize":32,"code":58893,"name":"datepicker-arr-l"},"setIdx":0,"setId":20,"iconIdx":13},{"icon":{"paths":["M416 256v446.656l320-224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-datepicker-arr-r"],"grid":0},"attrs":[],"properties":{"order":139,"id":14,"prevSize":32,"code":58894,"name":"datepicker-arr-r"},"setIdx":0,"setId":20,"iconIdx":14},{"icon":{"paths":["M192 960c0 35.328 28.672 64 64 64h512c35.328 0 64-28.672 64-64v-576c0-35.328-19.648-64-55.040-64h-520.96c-35.328 0-64 28.672-64 64v576zM187.776 952.832z","M640 64c-20.48-44.544-76.736-64-128-64-51.328 0-107.584 19.456-128 64h-192c-39.36 0-63.488 24.64-63.488 64l-0.512 64c0 39.232 24.64 64 64 64h640c39.232 0 64-24.768 64-64v-64c0-39.36-24.768-64-64-64h-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-delete"],"grid":0},"attrs":[],"properties":{"order":140,"id":15,"prevSize":32,"code":58895,"name":"delete"},"setIdx":0,"setId":20,"iconIdx":15},{"icon":{"paths":["M832 96c52.928 0 96 43.072 96 96v736h-608v-832h512zM832 0h-544c-35.328 0-64 28.672-64 64v896c0 35.328 28.672 64 64 64h672c35.328 0 64-28.672 64-64v-768c0-106.048-85.952-192-192-192v0z","M837.312 512h-426.624c-14.72 0-26.688 14.336-26.688 32s11.968 32 26.688 32h426.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z","M837.312 640h-426.624c-14.72 0-26.688 14.336-26.688 32s11.968 32 26.688 32h426.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z","M784 768h-373.312c-14.72 0-26.688 14.336-26.688 32s11.968 32 26.688 32h373.312c14.72 0 26.688-14.336 26.688-32s-11.968-32-26.688-32z","M384 192h256v256h-256v-256z","M837.312 224h-106.688c-14.656 0-26.624 14.336-26.624 32s11.968 32 26.688 32h106.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z","M837.312 352h-106.688c-14.656 0-26.624 14.336-26.624 32s11.968 32 26.688 32h106.688c14.72 0 26.688-14.336 26.688-32-0.064-17.664-12.032-32-26.752-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-document"],"grid":0},"attrs":[],"properties":{"order":141,"id":16,"prevSize":32,"code":58896,"name":"document"},"setIdx":0,"setId":20,"iconIdx":16},{"icon":{"paths":["M896 736v96c0 35.328-28.672 64-64 64h-640c-35.328 0-64-28.672-64-64v-96c0-35.328-28.672-64-64-64v0c-35.328 0-64 28.672-64 64v96c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-96c0-35.328-28.672-64-64-64v0c-35.328 0-64 28.672-64 64z","M544 768v0c-52.992 0-96-43.008-96-96v-576c0-52.992 43.008-96 96-96v0c52.992 0 96 43.008 96 96v576c0 52.992-43.008 96-96 96z","M476.096 739.904v0c-37.504-37.504-37.504-98.304 0-135.744l271.552-271.552c37.504-37.504 98.304-37.504 135.744 0v0c37.504 37.504 37.504 98.304 0 135.744l-271.552 271.552c-37.44 37.44-98.24 37.44-135.744 0z","M595.392 739.904v0c-37.504 37.504-98.304 37.504-135.744 0l-271.552-271.552c-37.504-37.504-37.504-98.304 0-135.744v0c37.504-37.504 98.304-37.504 135.744 0l271.552 271.552c37.504 37.44 37.504 98.24 0 135.744z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-download"],"grid":0},"attrs":[],"properties":{"order":142,"id":17,"prevSize":32,"code":58897,"name":"download"},"setIdx":0,"setId":20,"iconIdx":17},{"icon":{"paths":["M512.768 1021.824c-190.848 0-346.112-148.608-346.112-331.328 0-193.088 263.68-573.376 293.824-616.128l52.288-74.368 52.352 74.432c30.080 42.688 293.696 423.040 293.696 616.128 0 182.656-155.264 331.264-346.048 331.264zM512.768 225.664c-99.84 153.728-218.112 367.68-218.112 464.832 0 112.128 97.856 203.328 218.112 203.328s218.048-91.2 218.048-203.328c0-97.152-118.336-311.040-218.048-464.832z","M512 829.824c-54.976 0-95.232-17.792-119.616-52.992-47.104-67.904-10.624-170.752-6.336-182.208 6.208-16.448 24.448-24.896 41.152-18.688 16.512 6.144 24.96 24.576 18.816 41.152-8.448 22.656-24.96 89.024-0.96 123.456 11.904 16.96 33.728 25.28 66.944 25.28 17.664 0 32 14.336 32 32s-14.336 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-drop"],"grid":0},"attrs":[],"properties":{"order":143,"id":18,"prevSize":32,"code":58898,"name":"drop"},"setIdx":0,"setId":20,"iconIdx":18},{"icon":{"paths":["M960 448h-640l-32.192-95.488c-4.16-21.568-19.84-39.040-40.768-45.504l-171.008-53.12c-31.36-9.728-64.64 7.808-74.368 39.168s7.808 64.64 39.168 74.368l136.96 42.496 104.384 458.048c3.648 19.392 16.448 35.072 33.408 42.944-0.512 4.096-0.768 8.192-0.768 12.416-0.064 55.488 45.12 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.304-0.128-4.608-0.256-6.912h158.912c-0.128 2.304-0.256 4.544-0.256 6.912 0 55.488 45.184 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.496-0.128-4.928-0.32-7.36 25.408-3.072 46.4-22.272 51.264-48l96.128-314.624c3.264-17.408-14.976-105.344-62.976-105.344zM415.488 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024 27.072 0 49.024 22.016 49.024 49.024s-22.016 49.024-49.024 49.024v0zM775.232 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024s49.024 22.016 49.024 49.024c0 27.008-22.016 49.024-49.024 49.024v0zM832 768c-34.688 0-448 0-448 0-19.712 0-19.712-64 0-64h448c19.712 0 34.688 64 0 64zM896 640h-512c-19.712 0-19.712-64 0-64h512c19.712 0 19.712 64 0 64v0z","M896 128h-256c-35.328 0-64 28.672-64 64s28.672 64 64 64h256c35.328 0 64-28.672 64-64s-28.672-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-ecommerce-abandoned"],"grid":0},"attrs":[],"properties":{"order":144,"id":19,"prevSize":32,"code":58899,"name":"ecommerce-abandoned-cart"},"setIdx":0,"setId":20,"iconIdx":19},{"icon":{"paths":["M896 128h-64v-64c0-35.328-28.672-64-64-64s-64 28.672-64 64v64h-64c-35.328 0-64 28.672-64 64s28.672 64 64 64h64v64c0 35.328 28.672 64 64 64s64-28.672 64-64v-64h64c35.328 0 64-28.672 64-64s-28.672-64-64-64z","M960 448h-640l-32.192-95.488c-4.16-21.568-19.84-58.048-40.768-64.512l-171.008-32c-31.36-9.728-64.64 5.696-74.368 37.056s7.808 64.64 39.168 74.368l136.96 42.496 104.384 458.048c3.648 19.392 16.448 35.072 33.408 42.944-0.512 4.096-0.768 8.192-0.768 12.416-0.064 55.488 45.12 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.304-0.128-4.608-0.256-6.912h158.912c-0.128 2.304-0.256 4.544-0.256 6.912 0 55.488 45.184 100.672 100.672 100.672s100.672-45.184 100.672-100.672c0-2.496-0.128-4.928-0.32-7.36 25.408-3.072 46.4-22.272 51.264-48l96.128-314.624c3.264-17.408-14.976-105.344-62.976-105.344zM415.488 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024 27.072 0 49.024 22.016 49.024 49.024s-22.016 49.024-49.024 49.024v0zM775.232 972.352c-27.072 0-49.024-22.016-49.024-49.024 0-27.072 22.016-49.024 49.024-49.024s49.024 22.016 49.024 49.024c0 27.008-22.016 49.024-49.024 49.024v0zM832 768c-34.688 0-448 0-448 0-19.712 0-19.712-64 0-64h448c19.712 0 34.688 64 0 64zM896 640h-512c-19.712 0-19.712-64 0-64h512c19.712 0 19.712 64 0 64v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-ecommerce-order"],"grid":0},"attrs":[],"properties":{"order":145,"id":20,"prevSize":32,"code":58900,"name":"ecommerce-order"},"setIdx":0,"setId":20,"iconIdx":20},{"icon":{"paths":["M832 128h-640c-106.048 0-192 85.952-192 192v384c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-384c0-106.048-85.952-192-192-192zM879.936 278.784l-341.888 299.008c-13.824 12.288-38.016 12.288-52.16 0l-341.76-299.136c11.776-13.568 28.544-22.656 47.872-22.656h640c19.392 0 36.224 9.152 47.936 22.784zM128 345.984l175.488 153.664-175.488 175.744v-329.408zM832 768h-640c-17.984 0-34.048-7.552-45.696-19.456l203.392-208.192-2.112-2.368 98.24 85.952c18.56 16.512 42.24 24.512 66.176 24.512 24 0 47.616-8.384 66.496-24.512l98.304-85.952-2.432 2.368 203.456 208.192c-11.776 11.904-27.84 19.456-45.824 19.456zM720.448 499.648l175.552-153.472v328.704l-175.552-175.232z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-email"],"grid":0},"attrs":[],"properties":{"order":146,"id":21,"prevSize":32,"code":58901,"name":"email"},"setIdx":0,"setId":20,"iconIdx":21},{"icon":{"paths":["M874.048 149.952c-199.936-199.936-524.16-199.936-724.096 0s-199.936 524.16 0 724.096c199.936 199.936 524.16 199.936 724.096 0s199.936-524.16 0-724.096zM692.992 692.992c-33.344 33.344-87.36 33.344-120.64 0l-60.352-60.288-60.352 60.352c-33.344 33.344-87.36 33.344-120.64 0-33.344-33.344-33.344-87.36 0-120.704l60.352-60.352-60.352-60.352c-33.344-33.344-33.344-87.36 0-120.704s87.36-33.344 120.64 0l60.352 60.352 60.352-60.352c33.344-33.344 87.36-33.344 120.64 0 33.344 33.344 33.344 87.36 0 120.704l-60.288 60.352 60.352 60.352c33.28 33.344 33.28 87.36-0.064 120.64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-error"],"grid":0},"attrs":[],"properties":{"order":147,"id":22,"prevSize":32,"code":58902,"name":"error"},"setIdx":0,"setId":20,"iconIdx":22},{"icon":{"paths":["M712 408c-233.984 0-416 52.032-520 312 156.032-129.984 312-156.032 520-104v156.032l312-260.032-312-260.032v156.032z","M918.656 725.312l-80 57.728c-4.16 3.008-6.656 7.872-6.656 12.992v115.968h-720v-496h175.36c4.224 0 8.32-1.664 11.328-4.672l80-80c10.048-10.112 2.944-27.328-11.328-27.328h-271.36c-52.8 0-96 43.2-96 96v528c0 52.8 43.2 96 96 96h752c52.8 0 96-43.2 96-96v-189.696c0-13.056-14.784-20.608-25.344-12.992z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-export"],"grid":0},"attrs":[],"properties":{"order":148,"id":23,"prevSize":32,"code":58903,"name":"export"},"setIdx":0,"setId":20,"iconIdx":23},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM319.68 835.84h-0.128c-17.024 16.896-40.256 27.264-66.112 27.264s-49.024-10.368-66.048-27.328v0c-16.896-16.896-27.392-40-27.392-65.728s10.496-48.896 27.392-65.92v0.064c17.024-16.96 40.192-27.392 66.048-27.392s49.088 10.432 66.112 27.392v0c17.024 17.024 27.392 40.128 27.52 65.856-0.064 25.728-10.432 48.768-27.392 65.792zM555.072 864h-7.424c-31.104-0.128-57.408-22.656-62.4-53.376-11.008-67.968-42.88-130.688-92.288-180.032-49.344-49.472-111.872-81.408-179.52-92.416-30.784-5.056-53.376-31.424-53.376-62.592v-6.72c0-38.784 34.432-69.824 72.768-63.744 98.944 15.68 187.52 62.656 255.36 130.624 67.968 67.968 114.944 156.672 130.624 255.744 6.080 38.272-25.024 72.64-63.744 72.512zM796.416 864h-6.72c-32.32 0-60.032-24.128-63.232-56.32-26.688-269.248-241.216-484.032-510.272-510.592-32-3.136-55.872-30.976-55.872-63.168v-6.336c0-37.888 32.896-67.84 70.592-64.064 165.888 16.64 314.752 91.136 426.624 203.008 111.808 111.872 186.24 260.928 202.88 426.816 3.84 37.76-26.112 70.656-64 70.656z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-feed"],"grid":0},"attrs":[],"properties":{"order":149,"id":24,"prevSize":32,"code":58904,"name":"feed"},"setIdx":0,"setId":20,"iconIdx":24},{"icon":{"paths":["M883.648 256h-627.648c-35.328 0-64-60.672-64-96s28.672-96 64-96h704c35.328 0 35.328-64 0-64h-819.648c-77.184 0-140.352 63.168-140.352 140.352v743.296c0 77.184 63.168 140.352 140.352 140.352h743.296c77.184 0 140.352-63.168 140.352-140.352v-487.296c0-77.184-63.168-140.352-140.352-140.352zM768 736c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96c0 52.992-43.008 96-96 96z","M256 128h704v64h-704v-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-finance"],"grid":0},"attrs":[],"properties":{"order":150,"id":25,"prevSize":32,"code":58905,"name":"finance"},"setIdx":0,"setId":20,"iconIdx":25},{"icon":{"paths":["M744.384 160h-232.384l-69.632-129.28c-11.456-19.072-32.064-30.72-54.336-30.72h-121.344c-141.184 0-256.448 109.76-265.792 248.576-0.512 4.032-0.896 8.064-0.896 12.16v483.584c0 154.496 125.184 279.68 279.616 279.68h464.768c154.432 0 279.616-125.184 279.616-279.616v-294.144c0-154.432-125.184-290.24-279.616-290.24zM384 800c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-448c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v448zM576 800c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-320c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v320zM768 800c0 17.664-14.336 32-32 32h-64c-17.664 0-32-14.336-32-32v-192c0-17.664 14.336-32 32-32h64c17.664 0 32 14.336 32 32v192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-folder-charts"],"grid":0},"attrs":[],"properties":{"order":151,"id":26,"prevSize":32,"code":58906,"name":"folder-charts"},"setIdx":0,"setId":20,"iconIdx":26},{"icon":{"paths":["M746.752 160h-234.752l-88.128-160h-157.184c-147.328 0-266.688 119.36-266.688 266.688h0.384c0 1.344-0.384 2.688-0.384 4.096v486.592c0 147.264 119.36 266.624 266.688 266.624h490.688c147.264 0 266.624-119.36 266.624-266.688v-320.064c0-153.088-124.16-277.248-277.248-277.248z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-folder"],"grid":0},"attrs":[],"properties":{"order":152,"id":27,"prevSize":32,"code":58907,"name":"folder"},"setIdx":0,"setId":20,"iconIdx":27},{"icon":{"paths":["M752.96 343.488l168.512-168.448v80.96c0 28.544 23.040 51.264 51.264 51.264s51.264-22.72 51.264-51.264v-256h-256c-28.288 0-51.264 23.040-51.264 51.264s22.72 51.264 51.264 51.264h81.216l-168.704 168.512c-20.032 19.968-20.032 52.48 0 72.448 19.968 20.032 52.48 20.032 72.448 0v0zM752.96 343.488z","M250.048 1024c28.224 0 51.008-23.040 51.008-51.264 0-28.288-22.784-51.264-51.008-51.264h-75.008l168.512-168.512c19.968-19.968 19.968-52.48 0-72.512-10.048-9.984-23.040-14.976-36.288-14.976-12.992 0-26.24 4.992-36.224 14.976l-174.784 174.784v-87.232c0-28.288-22.72-51.264-51.2-51.264-28.288 0-45.056 22.976-45.056 51.264v256h250.048zM250.048 1024z","M680.512 752.96l168.448 168.512h-80.96c-28.544 0-51.264 23.040-51.264 51.264s22.72 51.264 51.264 51.264h256v-256c0-28.288-23.040-51.264-51.264-51.264s-51.264 22.72-51.264 51.264v81.216l-168.512-168.704c-19.968-20.032-52.48-20.032-72.448 0-20.032 19.968-20.032 52.48-0 72.448v0zM680.512 752.96z","M0 250.048c0 28.224 23.040 51.008 51.264 51.008 28.288 0 51.264-22.784 51.264-51.008v-75.008l168.512 168.512c19.968 19.968 52.48 19.968 72.512 0 9.984-10.048 14.976-23.040 14.976-36.288 0-12.992-4.992-26.24-14.976-36.224l-174.784-174.784h87.232c28.288 0 51.264-22.72 51.264-51.2 0-28.288-22.976-45.056-51.264-45.056h-256v250.048zM0 250.048z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-fullscreen"],"grid":0},"attrs":[],"properties":{"order":153,"id":28,"prevSize":32,"code":58908,"name":"fullscreen"},"setIdx":0,"setId":20,"iconIdx":28},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M320 768v0c-35.328 0-64-28.672-64-64v-384c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v384c0 35.328-28.672 64-64 64z","M723.712 320h-248.32c-15.104 0-27.392 12.288-27.392 27.392v201.216c0 15.104 12.288 27.392 27.392 27.392h248.32c20.352 0 33.6-21.44 24.512-39.616l-38.080-76.16c-3.84-7.68-3.84-16.768 0-24.512l38.080-76.16c9.088-18.112-4.16-39.552-24.512-39.552z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-goal"],"grid":0},"attrs":[],"properties":{"order":154,"id":29,"prevSize":32,"code":58909,"name":"goal"},"setIdx":0,"setId":20,"iconIdx":29},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM896 512c0 82.816-26.624 159.36-71.36 222.144l-69.376-69.376c27.968-44.352 44.736-96.448 44.736-152.768s-16.768-108.416-44.736-152.768l69.376-69.376c44.736 62.784 71.36 139.328 71.36 222.144zM199.36 734.144c-44.736-62.784-71.36-139.328-71.36-222.144s26.624-159.36 71.36-222.144l69.376 69.376c-27.968 44.352-44.736 96.448-44.736 152.768s16.768 108.416 44.736 152.768l-69.376 69.376zM310.4 512c0-111.168 90.432-201.6 201.6-201.6s201.6 90.432 201.6 201.6c0 111.168-90.432 201.6-201.6 201.6s-201.6-90.432-201.6-201.6zM734.144 199.36l-69.376 69.376c-44.352-27.968-96.448-44.736-152.768-44.736s-108.416 16.768-152.768 44.736l-69.376-69.376c62.784-44.736 139.328-71.36 222.144-71.36s159.36 26.624 222.144 71.36zM289.856 824.64l69.376-69.376c44.352 27.968 96.448 44.736 152.768 44.736s108.416-16.768 152.768-44.736l69.376 69.376c-62.784 44.736-139.328 71.36-222.144 71.36s-159.36-26.624-222.144-71.36z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-help-alt"],"grid":0},"attrs":[],"properties":{"order":223,"id":30,"prevSize":32,"code":58910,"name":"help-alt"},"setIdx":0,"setId":20,"iconIdx":30},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM534.272 789.888h-94.4v-90.56h94.4v90.56zM534.272 602.56v29.952h-94.4v-36.864c0-111.296 126.656-128.96 126.656-208 0-36.032-32.256-63.68-74.432-63.68-43.776 0-82.112 32.192-82.112 32.192l-53.76-66.752c0 0 52.992-55.232 144.32-55.232 86.72 0 167.296 53.696 167.296 144.256 0 126.656-133.568 141.248-133.568 224.128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-help"],"grid":0},"attrs":[],"properties":{"order":222,"id":31,"prevSize":32,"code":58911,"name":"help"},"setIdx":0,"setId":20,"iconIdx":31},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M851.072 508.096l-147.072-147.072c-18.752-18.752-49.152-18.752-67.904 0s-18.752 49.152 0 67.904l112 112-113.088 113.152c-18.752 18.752-18.752 49.152 0 67.904s49.152 18.752 67.904 0l141.44-141.44c2.24-1.6 4.736-2.496 6.784-4.48 18.688-18.816 18.688-49.216-0.064-67.968z","M390.144 361.024c-18.752-18.752-49.152-18.752-67.904 0l-141.44 141.44c-2.176 1.6-4.736 2.496-6.72 4.544-18.752 18.752-18.752 49.152 0 67.904l147.072 147.072c18.752 18.752 49.152 18.752 67.904 0s18.752-49.152 0-67.904l-112-112 113.152-113.152c18.688-18.752 18.688-49.152-0.064-67.904z","M512 192h64v640h-64v-640z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-code"],"grid":0},"attrs":[],"properties":{"order":221,"id":32,"prevSize":32,"code":58912,"name":"code"},"setIdx":0,"setId":20,"iconIdx":32},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM512 864c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96c0 52.992-43.008 96-96 96zM576 576c-2.24 20.736-44.8 32-64 32s-61.76-11.264-64-32v-384h128v384z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-alert"],"grid":0},"attrs":[],"properties":{"order":220,"id":33,"prevSize":32,"code":58913,"name":"warning"},"setIdx":0,"setId":20,"iconIdx":33},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M192 672v160h160l384-384-160-160z","M853.312 327.040c14.208-14.208 14.208-35.584 0-49.792l-92.352-106.688c-14.208-14.016-35.584-14.016-49.792 0l-63.872 64.064 145.664 160 60.352-67.584z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-edit"],"grid":0},"attrs":[],"properties":{"order":219,"id":34,"prevSize":32,"code":58914,"name":"edit"},"setIdx":0,"setId":20,"iconIdx":34},{"icon":{"paths":["M781.568 705.6l-125.76-239.424c-14.656-27.968-53.76-30.464-71.936-4.608l-93.632 133.376c-15.744 22.4-48.32 24.128-66.304 3.52l-44.16-50.496c-20.16-23.040-57.408-17.6-70.144 10.24l-68.16 149.44c-12.736 27.968 7.68 59.712 38.4 59.712h464.384c31.68 0.064 52.032-33.664 37.312-61.76z","M462.976 350.208c0 51.712-41.92 93.632-93.632 93.632s-93.632-41.92-93.632-93.632c0-51.712 41.92-93.632 93.632-93.632s93.632 41.92 93.632 93.632z","M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-image"],"grid":0},"attrs":[],"properties":{"order":218,"id":35,"prevSize":32,"code":58915,"name":"image"},"setIdx":0,"setId":20,"iconIdx":35},{"icon":{"paths":["M512 128c211.712 0 384 172.288 384 384s-172.288 384-384 384-384-172.288-384-384 172.288-384 384-384zM512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512v0z","M576 320c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M576 704h-128v-192c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v192z","M608 768h-192c-17.664 0-32-14.336-32-32v0c0-17.664 14.336-32 32-32h192c17.664 0 32 14.336 32 32v0c0 17.664-14.336 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-info"],"grid":0},"attrs":[],"properties":{"order":155,"id":36,"prevSize":32,"code":58916,"name":"info"},"setIdx":0,"setId":20,"iconIdx":36},{"icon":{"paths":["M879.936 365.248c0-203.2-164.736-367.936-367.936-367.936s-367.936 164.736-367.936 367.936c0 143.168 81.92 266.944 201.28 327.744l8.64 103.936h316.096l8.64-103.936c119.36-60.864 201.216-184.64 201.216-327.744z","M512 1021.248c70.4 0 130.304-47.488 148.288-113.216h-296.576c17.92 65.728 77.888 113.216 148.288 113.216z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-insights"],"grid":0},"attrs":[],"properties":{"order":156,"id":37,"prevSize":32,"code":58917,"name":"insights"},"setIdx":0,"setId":20,"iconIdx":37},{"icon":{"paths":["M748.736 436.672v-113.536c0-130.752-105.984-236.736-236.736-236.736s-236.8 105.984-236.8 236.736v113.472c-62.848 13.248-110.464 69.312-110.464 135.936v312.512c0 76.416 62.528 138.88 138.88 138.88h416.704c76.416 0 138.88-62.528 138.88-138.88v-312.512c0.064-66.624-47.552-122.688-110.464-135.872zM512 190.592c73.088 0 132.608 59.456 132.608 132.608v110.464h-265.216v-110.528c0-73.088 59.52-132.544 132.608-132.544zM553.664 755.2v29.184c0 22.912-18.752 41.664-41.664 41.664s-41.664-18.752-41.664-41.664v-29.184c-16.512-12.672-27.776-31.744-27.776-54.144 0-38.336 31.104-69.44 69.44-69.44s69.44 31.104 69.44 69.44c0 22.4-11.264 41.408-27.776 54.144z","M576-31.488c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M800 32.96c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M352 32.96c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M960 194.176c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M224 194.176c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M1024 383.488c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z","M128 383.488c0 35.629-28.654 64.512-64 64.512s-64-28.883-64-64.512c0-35.629 28.654-64.512 64-64.512s64 28.883 64 64.512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked-2"],"grid":0},"attrs":[],"properties":{"order":230,"id":38,"prevSize":32,"code":58918,"name":"locked-2"},"setIdx":0,"setId":20,"iconIdx":38},{"icon":{"paths":["M769.856 382.528v-123.968c0-142.784-115.776-258.56-258.56-258.56s-258.56 115.776-258.56 258.56v123.968c-68.736 14.464-120.768 75.648-120.768 148.416v341.312c0 83.456 68.288 151.68 151.68 151.68h455.104c83.456 0 151.68-68.288 151.68-151.68v-341.312c0.064-72.768-51.904-134.016-120.576-148.416zM511.232 113.792c79.872 0 144.832 64.96 144.832 144.832v120.64h-289.6v-120.704c0-79.808 64.96-144.768 144.768-144.768zM556.8 730.432v31.936c0 25.024-20.48 45.504-45.504 45.504s-45.504-20.48-45.504-45.504v-31.936c-17.984-13.888-30.336-34.624-30.336-59.136 0-41.92 33.984-75.84 75.84-75.84 41.92 0 75.84 33.984 75.84 75.84 0 24.448-12.352 45.248-30.336 59.136z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked"],"grid":0},"attrs":[],"properties":{"order":157,"id":39,"prevSize":32,"code":58919,"name":"locked-3"},"setIdx":0,"setId":20,"iconIdx":39},{"icon":{"paths":["M769.856 382.528v-123.968c0-142.784-115.776-258.56-258.56-258.56s-258.56 115.776-258.56 258.56v123.968c-68.736 14.464-120.768 75.648-120.768 148.416v341.312c0 83.456 68.288 151.68 151.68 151.68h455.104c83.456 0 151.68-68.288 151.68-151.68v-341.312c0.064-72.768-51.904-134.016-120.576-148.416zM511.232 113.792c79.872 0 144.832 64.96 144.832 144.832v120.64h-289.6v-120.704c0-79.808 64.96-144.768 144.768-144.768zM556.8 730.432v31.936c0 25.024-20.48 45.504-45.504 45.504s-45.504-20.48-45.504-45.504v-31.936c-17.984-13.888-30.336-34.624-30.336-59.136 0-41.92 33.984-75.84 75.84-75.84 41.92 0 75.84 33.984 75.84 75.84 0 24.448-12.352 45.248-30.336 59.136z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked-3"],"grid":0},"attrs":[],"properties":{"order":158,"id":40,"prevSize":32,"code":58920,"name":"locked"},"setIdx":0,"setId":20,"iconIdx":40},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM624.192 656.576c7.808 23.296-9.6 47.424-34.176 47.424h-156.032c-24.576 0-41.984-24.128-34.176-47.424l35.52-106.624c-30.976-23.36-51.328-60.16-51.328-101.952 0-70.72 57.344-128 128-128s128 57.28 128 128c0 41.792-20.352 78.592-51.328 101.952l35.52 106.624z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-locked-4"],"grid":0},"attrs":[],"properties":{"order":159,"id":41,"prevSize":32,"code":58921,"name":"locked-4"},"setIdx":0,"setId":20,"iconIdx":41},{"icon":{"paths":["M752.96 343.488l168.512-168.448v80.96c0 28.544 23.040 51.264 51.264 51.264s51.264-22.72 51.264-51.264v-256h-256c-28.288 0-51.264 23.040-51.264 51.264s22.72 51.264 51.264 51.264h81.216l-168.704 168.512c-20.032 19.968-20.032 52.48 0 72.448 19.968 20.032 52.48 20.032 72.448 0v0zM752.96 343.488z","M250.048 1024c28.224 0 51.008-23.040 51.008-51.264 0-28.288-22.784-51.264-51.008-51.264h-75.008l168.512-168.512c19.968-19.968 19.968-52.48 0-72.512-10.048-9.984-23.040-14.976-36.288-14.976-12.992 0-26.24 4.992-36.224 14.976l-174.784 174.784v-87.232c0-28.288-22.72-51.264-51.2-51.264-28.288 0-45.056 22.976-45.056 51.264v256h250.048zM250.048 1024z","M768 576v128c0 35.328-28.672 64-64 64h-128c-35.328 0-64 28.672-64 64v0c0 35.328 28.672 64 64 64h128c106.048 0 192-85.952 192-192v-128c0-35.328-28.672-64-64-64v0c-35.328 0-64 28.672-64 64z","M256 448v-128c0-35.328 28.672-64 64-64h128c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64h-128c-106.048 0-192 85.952-192 192v128c0 35.328 28.672 64 64 64v0c35.328 0 64-28.672 64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-maximise"],"grid":0},"attrs":[],"properties":{"order":160,"id":42,"prevSize":32,"code":58922,"name":"maximise"},"setIdx":0,"setId":20,"iconIdx":42},{"icon":{"paths":["M0 928v0c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v0c0 52.8-43.2 96-96 96h-832c-52.8 0-96-43.2-96-96z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-minimise"],"grid":0},"attrs":[],"properties":{"order":161,"id":43,"prevSize":32,"code":58923,"name":"minimise"},"setIdx":0,"setId":20,"iconIdx":43},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM682.688 597.312h-341.376c-47.104 0-85.312-38.208-85.312-85.312s38.208-85.312 85.312-85.312h341.312c47.168 0 85.376 38.208 85.376 85.312s-38.208 85.312-85.312 85.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-minus"],"grid":0},"attrs":[],"properties":{"order":162,"id":44,"prevSize":32,"code":58924,"name":"minus"},"setIdx":0,"setId":20,"iconIdx":44},{"icon":{"paths":["M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192zM832 896h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h256v256h448v448c0 35.264-28.736 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-newtab"],"grid":0},"attrs":[],"properties":{"order":163,"id":45,"prevSize":32,"code":58925,"name":"newtab"},"setIdx":0,"setId":20,"iconIdx":45},{"icon":{"paths":["M988.352 324.288l-538.944 485.056c-20.544 18.496-46.336 27.712-72.128 27.712-27.712 0-55.296-10.624-76.224-31.616l-269.504-269.504c-42.112-42.112-42.112-110.336 0-152.448s110.336-42.112 152.448 0l197.184 197.184 462.976-416.64c44.288-39.808 112.32-36.416 152.192 8 39.808 44.224 36.224 112.448-8 152.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-ok"],"grid":0},"attrs":[],"properties":{"order":164,"id":46,"prevSize":32,"code":58926,"name":"ok"},"setIdx":0,"setId":20,"iconIdx":46},{"icon":{"paths":["M450.496 3.584c-225.024 26.24-410.496 204.48-444.416 428.48-31.296 206.784 61.312 394.24 214.656 500.416 31.808 22.016 76.096 9.856 93.376-24.768l86.144-172.288c13.184-26.432 8.96-59.648-13.44-78.912-54.336-46.592-82.496-122.624-57.792-203.904 17.536-57.728 64-105.024 121.6-123.008 131.84-41.28 253.376 56.64 253.376 182.4 0 58.368-26.432 110.272-67.712 145.344-21.888 18.56-26.176 50.944-13.312 76.608l86.848 173.76c17.344 34.752 61.824 46.72 93.76 24.576 133.12-92.352 220.416-245.952 220.416-420.288 0-303.040-263.232-544.576-573.504-508.416z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-open-source"],"grid":0},"attrs":[],"properties":{"order":165,"id":47,"prevSize":32,"code":58927,"name":"open-source"},"setIdx":0,"setId":20,"iconIdx":47},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM682.688 597.312h-85.376v85.312c0 47.168-38.208 85.376-85.312 85.376s-85.312-38.208-85.312-85.312v-85.376h-85.376c-47.104 0-85.312-38.208-85.312-85.312s38.208-85.312 85.312-85.312h85.312v-85.376c0.064-47.104 38.272-85.312 85.376-85.312s85.312 38.208 85.312 85.312v85.312h85.312c47.168 0.064 85.376 38.272 85.376 85.376s-38.208 85.312-85.312 85.312z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-add"],"grid":0},"attrs":[],"properties":{"order":166,"id":48,"prevSize":32,"code":58928,"name":"add, plus"},"setIdx":0,"setId":20,"iconIdx":48},{"icon":{"paths":["M825.664 369.536c-7.68-7.68-4.544-20.544 5.76-23.936 30.592-9.984 58.24-31.040 76.352-64.512 21.76-40.192 20.864-91.136-2.752-130.304-47.36-78.592-150.912-87.68-211.328-27.264-13.312 13.312-23.040 28.672-29.44 45.12-5.248 13.376-21.76 17.728-31.872 7.616l-176.256-176.256-100.736 100.672c-17.472 17.536-19.2 43.84-7.872 65.792 26.112 50.56 17.92 114.24-24.448 156.608s-106.048 50.56-156.608 24.448c-21.952-11.328-48.256-9.6-65.792 7.872v0l-100.672 100.736 176.256 176.192c10.176 10.176 5.76 26.688-7.616 31.872-16.448 6.4-31.808 16.128-45.12 29.44-60.352 60.416-51.264 163.968 27.264 211.328 39.168 23.616 90.048 24.512 130.304 2.752 33.472-18.112 54.528-45.76 64.512-76.352 3.392-10.304 16.256-13.44 23.936-5.76l181.632 181.632 100.672-100.672c17.472-17.472 19.2-43.776 7.872-65.792-26.048-50.56-17.92-114.24 24.448-156.608s106.048-50.56 156.608-24.448c22.016 11.328 48.256 9.6 65.792-7.872v0l100.672-100.672-181.568-181.632z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-puzzle"],"grid":0},"attrs":[],"properties":{"order":167,"id":49,"prevSize":32,"code":58929,"name":"puzzle"},"setIdx":0,"setId":20,"iconIdx":49},{"icon":{"paths":["M507.84 0.256h1.984c1.024-0.384 1.472-0.192 2.24-0.192 132.48 0 261.312 52.736 356.608 145.024l79.68-80.768c20.16-20.416 54.976-6.144 54.976 22.528v263.168c0 35.328-28.672 64-64 64l-257.6-1.6c-27.904-0.192-41.984-33.728-22.592-53.76l79.68-82.112c-61.44-59.2-141.312-91.52-229.184-91.52-179.072 0.832-324.864 147.584-324.864 329.536 1.28 160.576 119.552 294.4 275.328 320.064 31.296 5.184 54.592 31.36 54.464 63.040l-0.256 50.176c-0.192 46.144-34.56 76.48-72.832 70.976-246.784-35.456-439.808-248.064-441.472-506.88 0-279.872 227.52-509.248 507.84-511.68v0zM507.84 0.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-refresh"],"grid":0},"attrs":[],"properties":{"order":168,"id":50,"prevSize":32,"code":58930,"name":"refresh"},"setIdx":0,"setId":20,"iconIdx":50},{"icon":{"paths":["M268.288 279.168c113.024-113.152 285.888-129.28 416.576-49.28-44.288 43.776-95.296 94.976-95.296 94.976-35.84 42.88 4.288 67.648 24.768 66.944h289.856c35.328 0 64-28.672 64-64v-287.296c1.536-29.888-31.424-59.072-65.6-25.6 0 0-56.32 54.912-95.104 93.376-199.040-145.216-479.424-128.768-659.2 50.88-87.168 87.104-135.552 197.824-146.048 311.488-3.52 37.504 26.56 69.824 64.192 69.824h41.728c33.152 0 59.84-25.344 63.36-58.304 7.808-74.112 39.872-146.112 96.768-203.008v0zM268.288 279.168z","M895.296 483.456c-33.152 0-59.84 25.344-63.36 58.304-7.872 74.24-39.936 146.24-96.832 203.136-113.152 112.96-285.888 129.152-416.576 49.28 44.288-43.776 95.296-94.912 95.296-94.912 35.712-42.944-4.48-67.648-24.768-66.944h-289.92c-35.2 0-64 28.8-64 64v287.104c-1.344 30.016 31.616 59.072 65.6 25.6 0 0 56.32-54.784 95.296-93.376 198.976 145.472 479.36 128.96 658.944-50.816 87.104-86.976 135.616-197.76 146.24-311.488 3.52-37.44-26.624-69.824-64.256-69.824h-41.664zM833.152 483.456z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-reload"],"grid":0},"attrs":[],"properties":{"order":169,"id":51,"prevSize":32,"code":58931,"name":"reload"},"setIdx":0,"setId":20,"iconIdx":51},{"icon":{"paths":["M448 128c176.448 0 320 143.552 320 320s-143.552 320-320 320-320-143.552-320-320 143.552-320 320-320zM448 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448v0z","M640 768l229.504 229.504c35.328 35.328 92.672 35.328 128 0v0c35.328-35.328 35.328-92.672 0-128l-229.504-229.504-128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-search"],"grid":0},"attrs":[],"properties":{"order":170,"id":52,"prevSize":32,"code":58932,"name":"search"},"setIdx":0,"setId":20,"iconIdx":52},{"icon":{"paths":["M640 384c0 84.736-43.264 192-128 192s-128-107.264-128-192 43.264-160 128-160 128 75.264 128 160z","M768 896c16.576 0 64-10.688 64-10.688 0-0.128 0-0.256 0-0.32 0-135.36-143.296-308.992-320-308.992s-320 173.632-320 308.928c0 0.128 0 0.256 0 0.32s47.424 10.752 64 10.752h512z","M896 448c0 59.328-36.672 128-96 128s-96-68.672-96-128 36.672-128 96-128 96 68.672 96 128z","M1002.432 835.072c11.584 0 21.504-10.368 21.568-23.424 0-0.064 0-0.192 0-0.256 0-94.656-100.288-235.392-224-235.392s-224 140.736-224 235.456c0 0.064 0 0.192 0 0.256 0 13.056 9.92 23.424 21.568 23.424h404.864z","M426.432 835.072c11.648 0 21.568-10.304 21.568-23.36 0-0.064 0-0.192 0-0.256 0-94.72-100.288-235.456-224-235.456s-224 140.736-224 235.456c0 0.064 0 0.192 0 0.256 0 13.056 9.92 23.424 21.568 23.424h404.864z","M320 448c0 59.328-36.672 128-96 128s-96-68.672-96-128 36.672-128 96-128 96 68.672 96 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-users"],"grid":0},"attrs":[],"properties":{"order":171,"id":53,"prevSize":32,"code":58933,"name":"users, segment"},"setIdx":0,"setId":20,"iconIdx":53},{"icon":{"paths":["M870.336 928c-6.016 0-12.096-1.408-17.792-4.416-18.752-9.856-25.984-33.152-16.128-51.904 220.864-419.712 12.48-702.208 3.52-714.048-12.8-16.832-9.6-40.896 7.168-53.76 16.768-12.736 40.768-9.792 53.76 7.040 10.24 13.312 248.192 331.648 3.584 796.48-6.912 13.12-20.288 20.608-34.112 20.608z","M144.128 928c-13.824 0-27.2-7.488-34.048-20.544-244.608-464.832-6.656-783.168 3.584-796.48 12.992-16.832 36.992-19.776 53.76-7.040 16.768 12.8 19.968 36.864 7.168 53.76-9.024 11.84-217.408 294.336 3.52 713.984 9.856 18.752 2.624 41.984-16.128 51.904-5.696 2.944-11.84 4.416-17.856 4.416z","M736 704h-480c-35.328 0-64 28.672-64 64v64c0 35.328 28.672 64 64 64h480c35.328 0 64-28.672 64-64v-64c0-35.328-28.672-64-64-64zM512 832h-224v-64h224v64zM672 832c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32c0 17.664-14.336 32-32 32z","M736 448h-480c-35.328 0-64 28.672-64 64v64c0 35.328 28.672 64 64 64h480c35.328 0 64-28.672 64-64v-64c0-35.328-28.672-64-64-64zM512 576h-224v-64h224v64zM672 576c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32c0 17.664-14.336 32-32 32z","M736 192h-480c-35.328 0-64 28.672-64 64v64c0 35.328 28.672 64 64 64h480c35.328 0 64-28.672 64-64v-64c0-35.328-28.672-64-64-64zM512 320h-224v-64h224v64zM672 320c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32c0 17.664-14.336 32-32 32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-server-alt"],"grid":0},"attrs":[],"properties":{"order":217,"id":54,"prevSize":32,"code":58934,"name":"server-alt"},"setIdx":0,"setId":20,"iconIdx":54},{"icon":{"paths":["M928 960h-224c-17.6 0-32 14.4-32 32s14.4 32 32 32h224c17.6 0 32-14.4 32-32s-14.4-32-32-32z","M320 960h-224c-17.6 0-32 14.4-32 32s14.4 32 32 32h224c17.6 0 32-14.4 32-32s-14.4-32-32-32z","M960 640h-896c-35.328 0-64 28.672-64 64v128c0 35.328 28.672 64 64 64h384v128h128v-128h384c35.328 0 64-28.672 64-64v-128c0-35.328-28.672-64-64-64zM320 768v64h-224v-128h224v64zM832 832c-35.328 0-64-28.672-64-64s28.672-64 64-64 64 28.672 64 64c0 35.328-28.672 64-64 64z","M960 320h-896c-35.328 0-64 28.672-64 64v128c0 35.328 28.672 64 64 64h896c35.328 0 64-28.672 64-64v-128c0-35.328-28.672-64-64-64zM320 448v64h-224v-128h224v64zM832 512c-35.328 0-64-28.672-64-64s28.672-64 64-64 64 28.672 64 64c0 35.328-28.672 64-64 64z","M960 0h-896c-35.328 0-64 28.672-64 64v128c0 35.328 28.672 64 64 64h896c35.328 0 64-28.672 64-64v-128c0-35.328-28.672-64-64-64zM320 128v64h-224v-128h224v64zM832 192c-35.328 0-64-28.672-64-64s28.672-64 64-64 64 28.672 64 64c0 35.328-28.672 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-server"],"grid":0},"attrs":[],"properties":{"order":216,"id":55,"prevSize":32,"code":58935,"name":"server"},"setIdx":0,"setId":20,"iconIdx":55},{"icon":{"paths":["M801.728 267.52l94.976-94.912-45.312-45.248-112.256 112.256c-68.48-26.624-145.408-43.776-227.136-43.776-282.176 0-510.912 201.344-510.912 316.16 0 73.152 87.488 176.512 220.8 244.864l-94.528 94.528 45.248 45.248 112-112c68.544 26.56 145.536 43.52 227.392 43.52 282.176 0 510.912-200.128 510.912-316.16 0-71.744-87.616-175.616-221.184-244.48zM286.912 512c0-123.712 100.288-224 224-224 50.56 0 96.704 17.344 134.144 45.632l-68.8 68.864c-19.2-11.52-41.344-18.496-65.344-18.496-70.72 0-128 57.28-128 128 0 24 6.976 46.144 18.496 65.344l-68.864 68.864c-28.224-37.504-45.632-83.648-45.632-134.208zM510.912 736c-49.984 0-95.744-16.96-132.992-44.672l69.056-69.056c18.88 11.008 40.512 17.728 63.936 17.728 70.656 0 128-57.28 128-128 0-23.424-6.72-45.056-17.728-63.936l69.056-69.056c27.712 37.248 44.672 82.944 44.672 132.992 0 123.712-100.288 224-224 224z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-hide"],"grid":0},"attrs":[],"properties":{"order":215,"id":56,"prevSize":32,"code":58936,"name":"hide"},"setIdx":0,"setId":20,"iconIdx":56},{"icon":{"paths":["M513.088 195.84c-282.176 0-510.976 201.344-510.976 316.16 0 118.4 228.736 316.16 510.912 316.16s510.976-200.128 510.976-316.16c0-116.032-228.736-316.16-510.912-316.16zM512 736c-123.712 0-224-100.288-224-224s100.288-224 224-224 224 100.288 224 224c0 123.712-100.288 224-224 224z","M640 512c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-show"],"grid":0},"attrs":[],"properties":{"order":214,"id":57,"prevSize":32,"code":58937,"name":"show"},"setIdx":0,"setId":20,"iconIdx":57},{"icon":{"paths":["M288.64 736h446.72l-224-320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-top"],"grid":0},"attrs":[],"properties":{"order":213,"id":58,"prevSize":32,"code":58938,"name":"arrow-top"},"setIdx":0,"setId":20,"iconIdx":58},{"icon":{"paths":["M735.36 416h-446.72l224 320z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-arrow-bottom"],"grid":0},"attrs":[],"properties":{"order":212,"id":59,"prevSize":32,"code":58939,"name":"arrow-bottom"},"setIdx":0,"setId":20,"iconIdx":59},{"icon":{"paths":["M512 0c-282.752 0-512 229.248-512 512s229.248 512 512 512 512-229.248 512-512-229.248-512-512-512zM735.36 482.432l-85.632 83.52c-5.568 5.44-8.128 13.248-6.784 20.928l20.224 117.888c3.328 19.328-16.96 34.048-34.304 24.896l-105.856-55.68c-6.912-3.648-15.104-3.648-22.016 0l-105.856 55.68c-17.344 9.088-37.568-5.632-34.304-24.896l20.224-117.888c1.344-7.68-1.216-15.488-6.784-20.928l-85.632-83.52c-14.016-13.696-6.272-37.504 13.12-40.32l118.4-17.216c7.68-1.088 14.336-5.952 17.792-12.928l52.928-107.264c8.64-17.536 33.728-17.536 42.368 0l52.928 107.264c3.392 7.040 10.048 11.84 17.728 12.992l118.4 17.216c19.392 2.752 27.072 26.624 13.056 40.256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-star"],"grid":0},"attrs":[],"properties":{"order":172,"id":60,"prevSize":32,"code":58940,"name":"star"},"setIdx":0,"setId":20,"iconIdx":60},{"icon":{"paths":["M966.080 434.496c-54.464-16.064-75.776-81.728-41.216-126.72 49.152-63.808-15.168-152.32-91.072-125.376v0c-53.44 19.008-109.376-21.568-107.776-78.336 2.24-80.512-101.824-114.304-147.392-47.872v0c-32.064 46.848-101.184 46.848-133.248 0.064v0c-45.504-66.496-149.568-32.64-147.392 47.872 1.6 56.768-54.336 97.344-107.776 78.336v0c-75.904-27.008-140.224 61.504-91.072 125.312 34.624 44.992 13.248 110.72-41.216 126.72-77.248 22.784-77.248 132.16 0 154.944 54.464 16.064 75.776 81.728 41.216 126.72v0c-49.152 63.808 15.168 152.32 91.072 125.376v0c53.44-19.008 109.376 21.568 107.776 78.336-2.24 80.512 101.824 114.304 147.392 47.872 32.064-46.848 101.184-46.848 133.248 0 45.504 66.432 149.568 32.64 147.392-47.872-1.6-56.768 54.336-97.344 107.776-78.336v0c75.904 27.008 140.224-61.504 91.072-125.376v0c-34.624-44.992-13.248-110.72 41.216-126.72 77.248-22.72 77.248-132.16 0-154.944zM735.296 435.904l-252.608 227.392c-9.6 8.704-21.696 12.992-33.792 12.992-12.992 0-25.92-4.992-35.712-14.784l-126.4-126.4c-19.712-19.712-19.712-51.712 0-71.424s51.712-19.712 71.424 0l92.416 92.416 217.024-195.264c20.8-18.624 52.672-17.088 71.36 3.776 18.688 20.672 17.024 52.608-3.712 71.296z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-success"],"grid":0},"attrs":[],"properties":{"order":173,"id":61,"prevSize":32,"code":58941,"name":"success"},"setIdx":0,"setId":20,"iconIdx":61},{"icon":{"paths":["M320 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 576h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 384v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 384h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 768v0c-35.392 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M576 768h-64c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h64c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M832 1024v0c-35.328 0-64-28.672-64-64v-256c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v256c0 35.328-28.672 64-64 64z","M640 832v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z","M832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h320c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64h-320c-35.328 0-64-28.672-64-64v-640c0-35.328 28.672-64 64-64h640c35.328 0 64 28.672 64 64v320c0 35.328 28.672 64 64 64v0c35.328 0 64-28.672 64-64v-320c0-106.048-85.952-192-192-192z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-table-more"],"grid":0},"attrs":[],"properties":{"order":174,"id":62,"prevSize":32,"code":58942,"name":"table-more"},"setIdx":0,"setId":20,"iconIdx":62},{"icon":{"paths":["M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z","M320 576v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 576h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 384v0c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 384h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M320 768v0c-35.392 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z","M704 768h-192c-35.328 0-64-28.672-64-64v0c0-35.328 28.672-64 64-64h192c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-table"],"grid":0},"attrs":[],"properties":{"order":175,"id":63,"prevSize":32,"code":58943,"name":"table"},"setIdx":0,"setId":20,"iconIdx":63},{"icon":{"paths":["M740.288 511.36c0-0.576 0.064-1.088 0.064-1.664 0-55.232-44.8-100.032-100.032-100.032-23.36 0-44.8 8.064-61.824 21.504-26.24-48.96-77.824-82.368-137.28-82.368-85.888 0-155.584 69.632-155.584 155.584 0 2.048 0.256 4.032 0.32 6.080-31.488 12.544-53.952 43.392-53.952 79.296v0.128c0 46.976 38.4 85.376 85.376 85.376h389.312c46.976 0 85.376-38.4 85.376-85.376v-0.128c-0.064-35.072-21.44-65.28-51.776-78.4z","M832 128c35.264 0 64 28.736 64 64v640c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-640c0-35.264 28.736-64 64-64h640zM832 0h-640c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-640c0-106.048-85.952-192-192-192v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-tag-cloud"],"grid":0},"attrs":[],"properties":{"order":176,"id":64,"prevSize":32,"code":58944,"name":"tag-cloud"},"setIdx":0,"setId":20,"iconIdx":64},{"icon":{"paths":["M605.632 584.896c0.384-3.072 1.792-5.696 1.792-8.832 0-7.296-2.368-13.888-4.16-20.608 90.304-62.784 154.176-206.656 154.176-309.952 0-135.616-109.888-245.504-245.44-245.504s-245.44 109.888-245.44 245.44c0 103.296 63.872 247.168 154.176 309.952-1.792 6.784-4.16 13.312-4.16 20.672 0 3.136 1.472 5.824 1.792 8.832-238.016 33.728-418.368 193.152-418.368 385.088 0 0.192 0 0.384 0 0.576 0.064 29.824 22.72 53.44 49.28 53.44h925.44c26.496 0 49.216-23.616 49.28-53.504 0-0.192 0-0.384 0-0.576 0-191.872-180.352-351.296-418.368-385.024z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-user"],"grid":0},"attrs":[],"properties":{"order":177,"id":65,"prevSize":32,"code":58945,"name":"user"},"setIdx":0,"setId":20,"iconIdx":65},{"icon":{"paths":["M615.424 391.424c0 110.144-89.28 277.504-199.424 277.504s-199.424-167.36-199.424-277.504 89.28-199.424 199.424-199.424 199.424 89.28 199.424 199.424z","M792 1024c21.568 0 40-19.2 40-43.456 0-0.128 0-0.32 0-0.448 0-175.872-186.24-318.4-416-318.4s-416 142.528-416 318.4c0 0.128 0 0.32 0 0.448 0.064 24.256 18.496 43.456 40 43.456h752z","M832 384v0c-35.328 0-64-28.672-64-64v-256c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v256c0 35.328-28.672 64-64 64z","M640 192v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-user-add"],"grid":0},"attrs":[],"properties":{"order":178,"id":66,"prevSize":32,"code":58946,"name":"user-add"},"setIdx":0,"setId":20,"iconIdx":66},{"icon":{"paths":["M832 192c35.264 0 64 28.736 64 64v512c0 35.264-28.736 64-64 64h-640c-35.264 0-64-28.736-64-64v-512c0-35.264 28.736-64 64-64h640zM832 64h-640c-106.048 0-192 85.952-192 192v512c0 106.048 85.952 192 192 192h640c106.048 0 192-85.952 192-192v-512c0-106.048-85.952-192-192-192v0z","M570.752 378.752c0 67.776-54.976 170.752-122.752 170.752s-122.752-102.976-122.752-170.752 54.976-122.752 122.752-122.752 122.752 54.976 122.752 122.752z","M679.36 768c13.248 0 24.64-11.84 24.64-26.752 0-0.064 0-0.192 0-0.256 0-108.224-114.624-195.968-256-195.968s-256 87.744-256 195.968c0 0.064 0 0.192 0 0.256 0 14.912 11.392 26.752 24.64 26.752h462.72z","M800 320h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M800 448h-128c-17.664 0-32 14.336-32 32s14.336 32 32 32h128c17.664 0 32-14.336 32-32s-14.336-32-32-32z","M800 576h-64c-17.664 0-32 14.336-32 32s14.336 32 32 32h64c17.664 0 32-14.336 32-32s-14.336-32-32-32z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-visitor-profile"],"grid":0},"attrs":[],"properties":{"order":179,"id":67,"prevSize":32,"code":58948,"name":"visitor-profile"},"setIdx":0,"setId":20,"iconIdx":67},{"icon":{"paths":["M448 128c176.448 0 320 143.552 320 320s-143.552 320-320 320-320-143.552-320-320 143.552-320 320-320zM448 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448v0z","M640 768l229.504 229.504c35.328 35.328 92.672 35.328 128 0v0c35.328-35.328 35.328-92.672 0-128l-229.504-229.504-128 128z","M448 640v0c-35.328 0-64-28.672-64-64v-256c0-35.328 28.672-64 64-64v0c35.328 0 64 28.672 64 64v256c0 35.328-28.672 64-64 64z","M256 448v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-zoom-in"],"grid":0},"attrs":[],"properties":{"order":180,"id":68,"prevSize":32,"code":58949,"name":"zoom-in"},"setIdx":0,"setId":20,"iconIdx":68},{"icon":{"paths":["M448 128c176.448 0 320 143.552 320 320s-143.552 320-320 320-320-143.552-320-320 143.552-320 320-320zM448 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448v0z","M640 768l229.504 229.504c35.328 35.328 92.672 35.328 128 0v0c35.328-35.328 35.328-92.672 0-128l-229.504-229.504-128 128z","M256 448v0c0-35.328 28.672-64 64-64h256c35.328 0 64 28.672 64 64v0c0 35.328-28.672 64-64 64h-256c-35.328 0-64-28.672-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-zoom-out"],"grid":0},"attrs":[],"properties":{"order":181,"id":69,"prevSize":32,"code":58950,"name":"zoom-out"},"setIdx":0,"setId":20,"iconIdx":69},{"icon":{"paths":["M1013.184 503.744v0c0 52.992-43.008 96-96 96h-576c-52.992 0-96-43.008-96-96v0c0-52.992 43.008-96 96-96h576c52.992 0 96 43.008 96 96z","M985.024 571.648v0c-37.504 37.504-98.304 37.504-135.744 0l-271.552-271.552c-37.504-37.504-37.504-98.304 0-135.744v0c37.504-37.504 98.304-37.504 135.744 0l271.552 271.552c37.504 37.44 37.504 98.24 0 135.744z","M985.024 452.352v0c37.504 37.504 37.504 98.304 0 135.744l-271.552 271.552c-37.504 37.504-98.304 37.504-135.744 0v0c-37.504-37.504-37.504-98.304 0-135.744l271.552-271.552c37.504-37.504 98.304-37.504 135.744 0z","M469.184 896h-277.184c-35.328 0-64-28.672-64-64v-640c0-35.328 28.672-64 64-64h277.184c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64h-277.184c-106.048 0-192 85.952-192 192v640c0 106.048 85.952 192 192 192h277.184c35.328 0 64-28.672 64-64v0c0-35.328-28.672-64-64-64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ico-sign-out"],"grid":0},"attrs":[],"properties":{"order":182,"id":70,"prevSize":32,"code":58951,"name":"sign-out"},"setIdx":0,"setId":20,"iconIdx":70},{"icon":{"paths":["M768 504v0q0 39-28 67.5t-68 28.5h-576q-40 0-68-28t-28-68v0q0-40 28-68t68-28h576q40 0 68 28t28 68v0zM740 572v0q-28 28-68 28t-68-28l-271-272q-29-28-29-68t29-68v0q28-28 67.5-28t67.5 28l272 272q28 28 28 68t-28 68v0zM740 452v0q28 28 28 68t-28 68l-272 272q-28 28-67.5 28t-67.5-28v0q-29-28-29-68t29-68l271-272q28-28 68-28t68 28v0zM544 128h277q27 0 45.5 19t18.5 45v640q0 26-18.5 45t-45.5 19h-277q-26 0-45 19t-19 45v0q0 26 19 45t45 19h277q80 0 136-56t56-136v-640q0-80-56-136t-136-56h-277q-26 0-45 19t-19 45v0q0 26 19 45t45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE648"],"defaultCode":58952,"grid":0},"attrs":[],"properties":{"id":71,"order":183,"ligatures":"","prevSize":32,"code":58952,"name":"sign-in"},"setIdx":0,"setId":20,"iconIdx":71},{"icon":{"paths":["M799 384h-576q-26 0-45-19t-19-45v0q0-26 19-45t45-19h576q27 0 45.5 19t18.5 45v0q0 26-18.5 45t-45.5 19v0zM799 576h-576q-26 0-45-19t-19-45v0q0-26 19-45t45-19h576q27 0 45.5 19t18.5 45v0q0 26-18.5 45t-45.5 19v0zM799 768h-576q-26 0-45-19t-19-45v0q0-26 19-45t45-19h576q27 0 45.5 19t18.5 45v0q0 26-18.5 45t-45.5 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE649"],"defaultCode":58953,"grid":0},"attrs":[],"properties":{"id":72,"order":184,"ligatures":"","prevSize":32,"code":58953,"name":"menu-hamburger"},"setIdx":0,"setId":20,"iconIdx":72},{"icon":{"paths":["M693 544v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19h-64q-27 0-45.5-19t-18.5-45v0zM437 544v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19h-64q-27 0-45.5-19t-18.5-45v0zM181 544v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19h-64q-27 0-45.5-19t-18.5-45v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64A"],"defaultCode":58954,"grid":0},"attrs":[],"properties":{"id":73,"order":185,"ligatures":"","prevSize":32,"code":58954,"name":"more-horiz"},"setIdx":0,"setId":20,"iconIdx":73},{"icon":{"paths":["M501 352h-64q-27 0-45.5-19t-18.5-45v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM501 608h-64q-27 0-45.5-19t-18.5-45v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM501 864h-64q-27 0-45.5-19t-18.5-45v-64q0-26 18.5-45t45.5-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64B"],"defaultCode":58955,"grid":0},"attrs":[],"properties":{"id":74,"order":186,"ligatures":"","prevSize":32,"code":58955,"name":"more-verti"},"setIdx":0,"setId":20,"iconIdx":74},{"icon":{"paths":["M991 575v0q-16-11-24.5-27.5t-8.5-34.5v-2q0-18 8.5-34.5t24.5-26.5v-1q20-13 28.5-35.5t1.5-45.5q-2-7-4.5-14t-5.5-14q-8-23-28.5-36.5t-44.5-12.5v0q-20 0-37-8t-28-23q0-1-0.5-1h-0.5q-11-15-14-33.5t3-35.5v0q9-23 2-45.5t-27-37.5q-6-5-12-9.5t-13-8.5q-20-13-45-12.5t-44 15.5v0q-15 11-33.5 14t-36.5-3q-1 0-2-0.5t-2-0.5q-18-5-31-18t-19-31v0q-7-23-26-37.5t-43-15.5h-34q-24 1-43 15.5t-26 37.5v0q-6 18-19 31t-31 18q-1 0-2 0.5t-2 0.5q-17 6-36 3t-33-14h-1q-19-15-44-15.5t-45 12.5q-7 4-13 8.5t-12 9.5q-20 15-27 37.5t2 45.5v0q6 17 3 35.5t-14 33.5h-0.5t-0.5 1q-11 15-28 23t-36 8q-25-1-45.5 12.5t-28.5 36.5q-3 7-5.5 14t-4.5 14q-7 23 1.5 45.5t28.5 35.5v1q16 10 24.5 26.5t8.5 34.5v2q0 18-8.5 34.5t-24.5 26.5v1q-20 13-28.5 35.5t-1.5 45.5q2 7 4.5 14t5.5 14q8 23 28.5 36.5t45.5 12.5v0q19 0 36 8t28 23q0 1 0.5 1h0.5q11 15 14 33.5t-3 35.5v0q-9 23-2 45.5t27 37.5q6 5 12 9.5t13 8.5q20 13 45 12.5t44-15.5h1q14-11 33-14t36 3q1 0 2 0.5t2 0.5q18 5 31 18t19 31v0q7 23 26 37.5t43 15.5h34q24-1 43-15.5t26-37.5v0q6-18 19-31t31-18q1-1 2-1h2q17-6 36-3t33 14h1q19 15 44 15.5t45-12.5q7-4 13-8.5t12-9.5q20-15 27-37.5t-2-45.5v0q-6-17-3-35.5t14-33.5h0.5t0.5-1q11-15 28-23t36-8v0q25 1 45.5-12.5t28.5-36.5q3-7 5.5-14t4.5-14q7-23-1.5-45.5t-28.5-35.5v0zM512 759q-53 0-99.5-19.5t-81.5-53-55-78.5-20-96 20-96 55-78.5 81.5-53 99.5-19.5 99.5 19.5 81.5 53 55 78.5 20 96-20 96-55 78.5-81.5 53-99.5 19.5v0zM608 512q0 38-28 65.5t-68 27.5-68-27.5-28-65.5 28-65.5 68-27.5 68 27.5 28 65.5v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64C"],"defaultCode":58956,"grid":0},"attrs":[],"properties":{"id":75,"order":187,"ligatures":"","prevSize":32,"code":58956,"name":"admin-administration"},"setIdx":0,"setId":20,"iconIdx":75},{"icon":{"paths":["M576 896h-128q-27 0-45.5-19t-18.5-45v-128q0-26 18.5-45t45.5-19h128q27 0 45.5 19t18.5 45v128q0 26-18.5 45t-45.5 19v0zM576 384h-128q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h128q26 0 45 19t19 45v128q0 26-19 45t-45 19v0zM256 896h-128q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h128q27 0 45.5 19t18.5 45v128q0 26-18.5 45t-45.5 19v0zM896 896h-128q-27 0-45.5-19t-18.5-45v-128q0-26 18.5-45t45.5-19h128q27 0 45.5 19t18.5 45v128q0 26-18.5 45t-45.5 19v0zM896 469q0-13-9.5-17t-22.5-4h-352v-171q0-13-9.5-22.5t-22.5-9.5-22.5 9.5-9.5 22.5v171h-288q-13 0-22.5 4t-9.5 17v192q0 14 9.5 23t22.5 9 22.5-9 9.5-23v-149h256v149q0 14 9.5 23t22.5 9 22.5-9 9.5-23v-149h320v171q0 13 9.5 22.5t22.5 9.5 22.5-9.5 9.5-22.5v-214z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64D"],"defaultCode":58957,"grid":0},"attrs":[],"properties":{"id":76,"order":188,"ligatures":"","prevSize":32,"code":58957,"name":"admin-development"},"setIdx":0,"setId":20,"iconIdx":76},{"icon":{"paths":["M876 124q-112 0-180.5-17.5t-106.5-39-50.5-39.5-12.5-19q-2-4-5.5-6.5t-8.5-2.5v0q-5 0-8.5 2.5t-5.5 6.5q0 1-13 19t-50.5 39.5-106 39-180.5 17.5q-7 0-11 4.5t-4 10.5v509q0 79 56 146t124.5 117 127.5 79.5l65 32.5q1 0 2.5 0.5t3.5 0.5 3.5-0.5 2.5-0.5l65-32.5t127.5-79.5 124.5-117.5 56-145.5v-509q0-6-4-10.5t-11-4.5v0 0zM809 619q0 61-44 113.5t-97.5 92-100 62.5-50.5 25q-1 0-2.5 0.5t-2.5 0.5-2.5-0.5-2.5-0.5q-4-2-50.5-25t-100-62.5-97.5-92-44-113.5v-399q0-5 3.5-8.5t8.5-3.5q175 0 224.5-44.5l49.5-44.5q1-4 4-6t7-2v0q4 0 7 2t4 6l49 44.5t225 44.5q5 0 8.5 3.5t3.5 8.5v399zM730 476l-247 222q-7 6-15.5 9.5t-17.5 3.5-18-4-16-11l-123-123q-15-14-15-34.5t15-34.5q14-15 34.5-15t34.5 15l90 90 212-191q15-13 35.5-12t33.5 16q14 15 13 35.5t-16 33.5v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64E"],"defaultCode":58958,"grid":0},"attrs":[],"properties":{"id":77,"order":211,"ligatures":"","prevSize":32,"code":58958,"name":"admin-diagnostic"},"setIdx":0,"setId":20,"iconIdx":77},{"icon":{"paths":["M960 0h-896q-26 0-45 19t-19 45v640q0 26 19 45t45 19h320l-64 128h-33q-13 0-22 9t-9 22v2q0 13 9 22t22 9h450q13 0 22-9t9-22v-2q0-13-9-22t-22-9h-33l-64-128h320q26 0 45-19t19-45v-640q0-26-19-45t-45-19v0zM960 576h-896v-512h896v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE64F"],"defaultCode":58959,"grid":0},"attrs":[],"properties":{"id":78,"order":210,"ligatures":"","prevSize":32,"code":58959,"name":"admin-platform"},"setIdx":0,"setId":20,"iconIdx":78},{"icon":{"paths":["M97 250h108q10 42 45 69.5t79 27.5q45 0 79.5-27.5t45.5-69.5h473q14 0 23.5-9.5t9.5-23.5q0-13-9.5-22.5t-23.5-9.5h-473q-11-42-45.5-69.5t-79.5-27.5-79.5 27.5-45.5 69.5h-107q-14 0-23.5 9.5t-9.5 22.5q0 14 9.5 23.5t23.5 9.5v0 0zM329 154q27 0 45.5 18.5t18.5 45.5q0 26-18.5 44.5t-45.5 18.5q-26 0-44.5-18.5t-18.5-44.5q0-27 18.5-45.5t44.5-18.5v0 0zM927 479h-155q-10-41-45-68.5t-79-27.5q-45 0-79.5 27.5t-45.5 68.5h-426q-14 0-23.5 9.5t-9.5 23.5 9.5 23.5 23.5 9.5h426q11 41 45.5 68.5t79.5 27.5q44 0 79-27.5t45-68.5h155q14 0 23.5-9.5t9.5-23.5-9.5-23.5-23.5-9.5v0 0zM648 575q-27 0-45.5-18.5t-18.5-44.5 18.5-44.5 45.5-18.5q26 0 44.5 18.5t18.5 44.5-18.5 44.5-44.5 18.5v0 0zM927 774h-473q-11-42-45.5-69.5t-79.5-27.5-79.5 27.5-45.5 69.5h-107q-14 0-23.5 9.5t-9.5 23.5q0 13 9.5 22.5t23.5 9.5h108q10 42 45 69.5t79 27.5q45 0 79.5-27.5t45.5-69.5h473q14 0 23.5-9.5t9.5-22.5q0-14-9.5-23.5t-23.5-9.5v0 0zM329 870q-26 0-44.5-18.5t-18.5-44.5q0-27 18.5-45.5t44.5-18.5q27 0 45.5 18.5t18.5 45.5q0 26-18.5 44.5t-45.5 18.5v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE650"],"defaultCode":58960,"grid":0},"attrs":[],"properties":{"id":79,"order":209,"ligatures":"","prevSize":32,"code":58960,"name":"admin-settings"},"setIdx":0,"setId":20,"iconIdx":79},{"icon":{"paths":["M803 445q0-52-16.5-98.5t-46.5-83.5-71-63-90-37v-32q0-27-20-47t-47-20-47 20-20 47v32q-49 11-90 37t-71 63-46.5 83.5-16.5 98.5v246l-90 90v45h762v-45l-90-90v-246zM512 960h18q23-3 39.5-18.5t23.5-35.5q3-7 6-16.5t3-19.5h-180q0 37 26.5 63.5t63.5 26.5v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE651"],"defaultCode":58961,"grid":0},"attrs":[],"properties":{"id":80,"order":208,"ligatures":"","prevSize":32,"code":58961,"name":"reporting-actions"},"setIdx":0,"setId":20,"iconIdx":80},{"icon":{"paths":["M288 352h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM288 608h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM288 864h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM544 352h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM544 608h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM544 864h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM800 352h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM800 608h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0zM800 864h-64q-26 0-45-19t-19-45v-64q0-26 19-45t45-19h64q26 0 45 19t19 45v64q0 26-19 45t-45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE652"],"defaultCode":58962,"grid":0},"attrs":[],"properties":{"id":81,"order":207,"ligatures":"","prevSize":32,"code":58962,"name":"reporting-dashboard"},"setIdx":0,"setId":20,"iconIdx":81},{"icon":{"paths":["M961 322h-640l-32-96q-3-16-14-38t-27-26l-171-32q-24-8-45.5 2.5t-29.5 34.5q-7 23 4.5 45t35.5 29l137 43 104 457q3 15 12 26t21 17v13q0 41 29.5 70.5t70.5 29.5q42 0 71.5-29.5t29.5-70.5v-7h159q0 2-0.5 3.5t-0.5 3.5q0 41 29.5 70.5t71.5 29.5 71.5-29.5 29.5-70.5v-4t-1-4q19-2 33.5-15t18.5-33l96-314q2-13-12.5-59t-50.5-46v0zM416 846q-20 0-34.5-14.5t-14.5-34.5q0-21 14.5-35t34.5-14q21 0 35 14t14 35q0 20-14 34.5t-35 14.5v0 0zM776 846q-20 0-34.5-14.5t-14.5-34.5q0-21 14.5-35t34.5-14 34.5 14 14.5 35q0 20-14.5 34.5t-34.5 14.5v0 0zM833 641h-448q-15 0-15-32t15-32h448q15 0 20.5 32t-20.5 32v0zM897 513h-512q-15 0-15-32t15-32h512q15 0 15 32t-15 32v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE653"],"defaultCode":58963,"grid":0},"attrs":[],"properties":{"id":82,"order":206,"ligatures":"","prevSize":32,"code":58963,"name":"reporting-ecommerce"},"setIdx":0,"setId":20,"iconIdx":82},{"icon":{"paths":["M512 0q-106 0-199.5 40t-163 109.5-109.5 163-40 199.5 40 199.5 109.5 163 163 109.5 199.5 40 199.5-40 163-109.5 109.5-163 40-199.5-40-199.5-109.5-163-163-109.5-199.5-40v0zM512 928q-86 0-162-32.5t-132.5-89-89-132.5-32.5-162 32.5-162 89-132.5 132.5-89 162-32.5 162 32.5 132.5 89 89 132.5 32.5 162-32.5 162-89 132.5-132.5 89-162 32.5v0zM512 192q-66 0-124.5 25t-102 68.5-68.5 102-25 124.5 25 124.5 68.5 102 102 68.5 124.5 25 124.5-25 102-68.5 68.5-102 25-124.5-25-124.5-68.5-102-102-68.5-124.5-25v0zM512 736q-46 0-87-17.5t-71.5-48-48-71.5-17.5-87 17.5-87 48-71.5 71.5-48 87-17.5 87 17.5 71.5 48 48 71.5 17.5 87-17.5 87-48 71.5-71.5 48-87 17.5v0zM608 512q0 40-28 68t-68 28-68-28-28-68 28-68 68-28 68 28 28 68v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE654"],"defaultCode":58964,"grid":0},"attrs":[],"properties":{"id":83,"order":189,"ligatures":"","prevSize":32,"code":58964,"name":"reporting-goal"},"setIdx":0,"setId":20,"iconIdx":83},{"icon":{"paths":["M293 241q0 20-14 34t-35 14q-20 0-34-14t-14-34 14-34.5 34-14.5q21 0 35 14.5t14 34.5v0zM423 241q0 20-14 34t-34 14q-21 0-35-14t-14-34 14-34.5 35-14.5q20 0 34 14.5t14 34.5v0zM554 241q0 20-14.5 34t-34.5 14-34.5-14-14.5-34 14.5-34.5 34.5-14.5 34.5 14.5 14.5 34.5v0zM832 0h-640q-80 0-136 56t-56 136v640q0 80 56 136t136 56h640q80 0 136-56t56-136v-640q0-80-56-136t-136-56v0zM192 128h640q26 0 45 19t19 45v128h-768v-128q0-26 19-45t45-19v0zM832 896h-640q-26 0-45-19t-19-45v-448h768v448q0 26-19 45t-45 19v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE655"],"defaultCode":58965,"grid":0},"attrs":[],"properties":{"id":84,"order":190,"ligatures":"","prevSize":32,"code":58965,"name":"reporting-referer"},"setIdx":0,"setId":20,"iconIdx":84},{"icon":{"paths":["M1003 531v-1l-1-1q-4-10-9.5-19.5t-11.5-17.5q-13-23-31.5-54t-37.5-62.5-37-59.5-30-45q-31-42-68.5-75t-90.5-33q-12 0-24 2t-24 6q-38 12-71 34.5t-44 69.5h-22q-11-47-44-69.5t-71-34.5q-12-4-24-6t-24-2q-53 0-90.5 33t-68.5 75q-12 17-30 45t-37 59.5-37 62.5-32 54q-6 9-11.5 18t-9.5 19l-1 1v1q-10 22-15.5 46t-5.5 50q0 48 18.5 90.5t50 74.5 74.5 50.5 91 18.5q57 0 105-25t80-67h186q32 42 80.5 67t104.5 25q49 0 91.5-18.5t74-50.5 50-74.5 18.5-90.5q0-26-5.5-50t-15.5-46v0 0zM234 783q-65 0-110.5-46t-45.5-110q0-65 45.5-111t110.5-46 110.5 46 45.5 111q0 64-45.5 110t-110.5 46v0 0zM790 783q-65 0-110.5-46t-45.5-110q0-65 45.5-111t110.5-46 110.5 46 45.5 111q0 64-45.5 110t-110.5 46v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE656"],"defaultCode":58966,"grid":0},"attrs":[],"properties":{"id":85,"order":191,"ligatures":"","prevSize":32,"code":58966,"name":"reporting-visitors"},"setIdx":0,"setId":20,"iconIdx":85},{"icon":{"paths":["M695 459q5-1 9-2t8-1q11 0 20-5.5t16-12.5l202-202q18-17 18-41.5t-18-41.5l-63-64q-17-17-41.5-17t-41.5 17l-202 201q-8 8-13 17.5t-6 19.5q0 5-0.5 9t-2.5 8q-4 17-0.5 33.5t15.5 28.5l40 39q12 12 28 15t32-1v0zM206 793l-10-10-50 40-83 132 21 22 132-84 40-50-9-9 167-167-42-41-166 167zM434 330q14-52 1-105.5t-53-94.5q-41-40-94.5-53.5t-104.5 0.5l116 116-30 114-114 30-116-116q-14 52-0.5 105t53.5 94q42 42 98.5 54.5t109.5-5.5l478 478q14 14 32 21t37 7q18 0 36-7t32-21q28-28 28-68t-28-69l-481-480zM855 931q-16 0-26.5-11t-10.5-26 10.5-26 26.5-11q15 0 26 11t11 26-11 26-26 11v0 0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE657"],"defaultCode":58967,"grid":0},"attrs":[],"properties":{"id":86,"order":192,"ligatures":"","prevSize":32,"code":58967,"name":"user-manage"},"setIdx":0,"setId":20,"iconIdx":86},{"icon":{"paths":["M600 312q0 38-14.5 83t-39.5 83.5-58.5 64-71.5 25.5-71.5-25.5-58.5-64-39.5-83.5-14.5-83q0-76 54-130t130-54 130 54 54 130v0zM763 896q15 0 26-11.5t11-28.5v0-1q0-60-30-113.5t-82.5-93.5-122-63-149.5-23-149.5 23-122 63-82.5 93.5-30 113.5v1q0 17 11 28.5t26 11.5h694zM944 224h-192q-20 0-34 14t-14 34 14 34 34 14h192q20 0 34-14t14-34-14-34-34-14v0zM944 416h-192q-20 0-34 14t-14 34 14 34 34 14h192q20 0 34-14t14-34-14-34-34-14v0zM944 608h-96q-20 0-34 14t-14 34 14 34 34 14h96q20 0 34-14t14-34-14-34-34-14v0z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE658"],"defaultCode":58968,"grid":0},"attrs":[],"properties":{"id":87,"order":193,"ligatures":"","prevSize":32,"code":58968,"name":"user-personal"},"setIdx":0,"setId":20,"iconIdx":87},{"icon":{"paths":["M960 64h-896q-26 0-45 19t-19 45v640q0 26 19 45t45 19h320l-64 128h-33q-13 0-22 9t-9 22v2q0 13 9 22t22 9h450q13 0 22-9t9-22v-2q0-13-9-22t-22-9h-33l-64-128h320q26 0 45-19t19-45v-640q0-26-19-45t-45-19v0zM960 640h-896v-512h896v512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["uniE659"],"defaultCode":58969,"grid":0},"attrs":[],"properties":{"id":88,"order":194,"ligatures":"","prevSize":32,"code":58969,"name":"user-platform"},"setIdx":0,"setId":20,"iconIdx":88},{"icon":{"paths":["M742.038 374.408v-92.444h-460.074v92.444h460.074zM742.038 557.148v-90.296h-460.074v90.296h460.074zM604.444 742.038v-92.444h-322.482v92.444h322.482zM512 99.222c-25.798 0-45.148 19.348-45.148 45.148s19.348 47.298 45.148 47.298 45.148-21.498 45.148-47.298-19.348-45.148-45.148-45.148zM832.332 99.222c49.448 0 92.444 42.998 92.444 92.444v640.666c0 49.448-42.998 92.444-92.444 92.444h-640.666c-49.448 0-92.444-42.998-92.444-92.444v-640.666c0-49.448 42.998-92.444 92.444-92.444h191.34c19.348-53.748 68.796-92.444 128.992-92.444s109.644 38.698 128.992 92.444h191.34z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["assignment"],"defaultCode":59485,"grid":32},"attrs":[],"properties":{"order":195,"ligatures":"assignment","id":0,"prevSize":24,"code":59485,"name":"form"},"setIdx":1,"setId":19,"iconIdx":0},{"icon":{"paths":["M692 692l34-56-192-116v-222h-64v256zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["watch_later"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":0,"prevSize":24,"code":59649,"name":"watch_later"},"setIdx":2,"setId":18,"iconIdx":0},{"icon":{"paths":["M726 726v-64c0-72-142-108-214-108s-214 36-214 108v64h428zM512 288c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["contacts"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":1,"prevSize":24,"code":59648,"name":"segmented-visits-log"},"setIdx":2,"setId":18,"iconIdx":1},{"icon":{"paths":["M854 682v-512h-684v598l86-86h598zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chat_bubble_outline"],"defaultCode":57547,"grid":24},"attrs":[],"properties":{"ligatures":"chat_bubble_outline","id":2,"order":5,"prevSize":24,"code":57547,"name":"overlay"},"setIdx":2,"setId":18,"iconIdx":2},{"icon":{"paths":["M557.5 234.667l394.333 277.333-394.333 277.333v-554.667zM141.5 789.333v-554.667l394.333 277.333z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["fast_forward"],"defaultCode":57375,"grid":24},"attrs":[],"properties":{"order":122,"ligatures":"fast_forward","id":3,"prevSize":24,"code":57375,"name":"fast-forward"},"setIdx":2,"setId":18,"iconIdx":3},{"icon":{"paths":["M488.167 512l394.333-277.333v554.667zM466.5 789.333l-394.333-277.333 394.333-277.333v554.667z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["fast_rewind"],"defaultCode":57376,"grid":24},"attrs":[],"properties":{"order":123,"ligatures":"fast_rewind","id":4,"prevSize":24,"code":57376,"name":"fast-rewind"},"setIdx":2,"setId":18,"iconIdx":4},{"icon":{"paths":["M665.84 716.319v-408.639h-103.362v408.639h103.362zM461.521 716.319v-408.639h-103.362v408.639h103.362zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pause_circle_filled"],"defaultCode":57397,"grid":24},"attrs":[],"properties":{"order":124,"ligatures":"pause_circle_filled","id":5,"prevSize":24,"code":57397,"name":"pause"},"setIdx":2,"setId":18,"iconIdx":5},{"icon":{"paths":["M408.639 742.76l307.681-230.76-307.681-230.76v461.521zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["play_circle_filled"],"defaultCode":57400,"grid":24},"attrs":[],"properties":{"order":125,"ligatures":"play_circle_filled","id":6,"prevSize":24,"code":57400,"name":"play"},"setIdx":2,"setId":18,"iconIdx":6},{"icon":{"paths":["M512 229.152c206.638 0 375.906 167.070 375.906 373.708s-169.268 375.906-375.906 375.906-375.906-169.268-375.906-375.906h94.525c0 156.079 125.3 281.38 281.38 281.38s281.38-125.3 281.38-281.38-125.3-281.38-281.38-281.38v189.053l-235.216-235.216 235.216-235.216v189.053z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["replay"],"defaultCode":57410,"grid":24},"attrs":[],"properties":{"order":126,"ligatures":"replay","id":7,"prevSize":24,"code":57410,"name":"replay"},"setIdx":2,"setId":18,"iconIdx":7},{"icon":{"paths":["M710.334 213.334h100.334v597.334h-100.334v-597.334zM213.334 810.666v-597.334l422.334 298.666z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skip_next"],"defaultCode":57412,"grid":24},"attrs":[],"properties":{"order":127,"ligatures":"skip_next","id":8,"prevSize":24,"code":57412,"name":"skip-next"},"setIdx":2,"setId":18,"iconIdx":8},{"icon":{"paths":["M388.332 512l422.33-298.668v597.33zM213.332 213.332h100.331v597.33h-100.331v-597.33z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["skip_previous"],"defaultCode":57413,"grid":24},"attrs":[],"properties":{"order":128,"ligatures":"skip_previous","id":9,"prevSize":24,"code":57413,"name":"skip-previous"},"setIdx":2,"setId":18,"iconIdx":9},{"icon":{"paths":["M213.334 213.334h597.334v597.334h-597.334v-597.334z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stop"],"defaultCode":57415,"grid":24},"attrs":[],"properties":{"order":129,"ligatures":"stop","id":10,"prevSize":24,"code":57415,"name":"stop"},"setIdx":2,"setId":18,"iconIdx":10},{"icon":{"paths":["M598 138c172 38 298 192 298 374s-126 336-298 374v-88c124-36 212-150 212-286s-88-250-212-286v-88zM704 512c0 76-42 140-106 172v-344c64 32 106 96 106 172zM128 384h170l214-214v684l-214-214h-170v-256z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["volume_up"],"defaultCode":57424,"grid":24},"attrs":[],"properties":{"ligatures":"volume_up","id":11,"order":130,"prevSize":24,"code":57424,"name":"audio"},"setIdx":2,"setId":18,"iconIdx":11},{"icon":{"paths":["M562.479 358.16v-103.361h-100.958v103.361h100.958zM562.479 769.202v-307.681h-100.958v307.681h100.958zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info"],"defaultCode":59534,"grid":24},"attrs":[],"properties":{"order":196,"ligatures":"info","id":12,"prevSize":24,"code":59534,"name":"info2"},"setIdx":2,"setId":18,"iconIdx":12},{"icon":{"paths":["M461.521 358.16v-103.361h100.958v103.361h-100.958zM512 923.042c225.953 0 411.042-185.089 411.042-411.042s-185.089-411.042-411.042-411.042-411.042 185.089-411.042 411.042 185.089 411.042 411.042 411.042zM512 0c283.643 0 512 228.357 512 512s-228.357 512-512 512-512-228.357-512-512 228.357-512 512-512zM461.521 769.202v-307.681h100.958v307.681h-100.958z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["info_outline"],"defaultCode":59535,"grid":24},"attrs":[],"properties":{"order":197,"ligatures":"info_outline","id":13,"prevSize":24,"code":59535,"name":"info_outline"},"setIdx":2,"setId":18,"iconIdx":13},{"icon":{"paths":["M512 692.282c98.554 0 180.282-81.728 180.282-180.282s-81.728-180.282-180.282-180.282-180.282 81.728-180.282 180.282 81.728 180.282 180.282 180.282zM894.197 562.479l108.169 84.131c9.615 7.211 12.019 21.634 4.808 33.653l-103.361 177.878c-7.211 12.019-19.23 14.423-31.249 9.615l-127.399-50.479c-26.441 19.23-55.286 38.46-86.535 50.479l-19.23 134.61c-2.404 12.019-12.019 21.634-24.038 21.634h-206.723c-12.019 0-21.634-9.615-24.038-21.634l-19.23-134.61c-31.249-12.019-60.094-28.845-86.535-50.479l-127.399 50.479c-12.019 4.808-24.038 2.404-31.249-9.615l-103.361-177.878c-7.211-12.019-4.808-26.441 4.808-33.653l108.169-84.131c-2.404-16.826-2.404-33.653-2.404-50.479s0-33.653 2.404-50.479l-108.169-84.131c-9.615-7.211-12.019-21.634-4.808-33.653l103.361-177.878c7.211-12.019 19.23-14.423 31.249-9.615l127.399 50.479c26.441-19.23 55.286-38.46 86.535-50.479l19.23-134.61c2.404-12.019 12.019-21.634 24.038-21.634h206.723c12.019 0 21.634 9.615 24.038 21.634l19.23 134.61c31.249 12.019 60.094 28.845 86.535 50.479l127.399-50.479c12.019-4.808 24.038-2.404 31.249 9.615l103.361 177.878c7.211 12.019 4.808 26.441-4.808 33.653l-108.169 84.131c2.404 16.826 2.404 33.653 2.404 50.479s0 33.653-2.404 50.479z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["settings"],"defaultCode":59576,"grid":24},"attrs":[],"properties":{"order":198,"ligatures":"settings","id":14,"prevSize":24,"code":59576,"name":"settings"},"setIdx":2,"setId":18,"iconIdx":14},{"icon":{"paths":["M982 342c0 46-40 84-86 84-8 0-16 0-22-2l-152 152c2 6 4 14 4 22 0 46-40 84-86 84s-86-38-86-84c0-8 2-16 4-22l-110-110c-6 2-14 4-22 4s-16-2-22-4l-194 194c2 6 4 14 4 22 0 46-40 86-86 86s-86-40-86-86 40-84 86-84c8 0 16 0 22 2l194-194c-2-6-2-14-2-22 0-46 38-86 84-86s86 40 86 86c0 8 0 16-2 22l108 108c6-2 14-2 22-2s16 0 22 2l152-150c-2-6-4-14-4-22 0-46 40-86 86-86s86 40 86 86z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["timeline"],"defaultCode":59682,"grid":24},"attrs":[],"properties":{"ligatures":"timeline","id":15,"order":199,"prevSize":24,"code":59682,"name":"evolution"},"setIdx":2,"setId":18,"iconIdx":15},{"icon":{"paths":["M621.89 512v-109.89h-219.78v109.89h219.78zM621.89 729.22v-107.335h-219.78v107.335h219.78zM949 294.78v107.335h-115c2.555 17.89 5.11 38.335 5.11 56.22v53.665h109.89v109.89h-109.89v53.665c0 17.89-2.555 35.78-5.11 53.665h115v109.89h-153.335c-56.22 97.11-163.555 163.555-283.665 163.555s-227.445-66.445-283.665-163.555h-153.335v-109.89h115c-2.555-17.89-5.11-35.78-5.11-53.665v-53.665h-109.89v-109.89h109.89v-53.665c0-17.89 2.555-38.335 5.11-56.22h-115v-107.335h153.335c25.555-43.445 58.78-79.22 99.665-107.335l-89.445-89.445 76.665-76.665 120.11 117.555c25.555-5.11 51.11-7.665 76.665-7.665s51.11 2.555 76.665 7.665l120.11-117.555 76.665 76.665-89.445 89.445c40.89 28.11 74.11 63.89 99.665 107.335h153.335z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bug_report"],"defaultCode":59496,"grid":24},"attrs":[],"properties":{"ligatures":"bug_report","id":16,"order":32,"prevSize":24,"code":59496,"name":"bug"},"setIdx":2,"setId":18,"iconIdx":16},{"icon":{"paths":["M143.948 828.18h736.108v106.216h-736.108v-106.216zM353.912 721.964v-316.18h-209.964l368.052-368.052 368.052 368.052h-209.964v316.18h-316.18z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file_upload"],"defaultCode":58054,"grid":24},"attrs":[],"properties":{"ligatures":"file_upload","id":17,"order":236,"prevSize":24,"code":58054,"name":"upload"},"setIdx":2,"setId":18,"iconIdx":17},{"icon":{"paths":["M512 938q-36 0-61-25t-25-59h170q0 36-24 60t-60 24zM768 470v212l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174zM852 448q-4-72-48-152t-102-122l60-60q166 128 176 334h-86zM324 174q-58 42-103 122t-49 152h-86q10-206 176-334z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["notifications_on"],"grid":24},"attrs":[{}],"properties":{"order":277,"id":18,"prevSize":24,"code":59651,"name":"notifications_on"},"setIdx":2,"setId":18,"iconIdx":18},{"icon":{"paths":["M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM982 512l-104 118 14 158-154 34-80 136-146-62-146 62-80-134-154-36 14-158-104-118 104-120-14-156 154-34 80-136 146 62 146-62 80 136 154 34-14 158z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["new_releases"],"grid":24},"attrs":[{}],"properties":{"order":279,"id":90,"prevSize":24,"code":59650,"name":"new_releases"},"setIdx":16,"setId":4,"iconIdx":0},{"icon":{"paths":["M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM512 832l-320-256h192v-192h256v192h192l-320 256zM154.51 192l64-64h586.978l64 64h-714.978z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["box-add","box","download","storage","inbox","archive"],"defaultCode":59742,"grid":16},"attrs":[],"properties":{"ligatures":"box-add, box3","name":"archive","order":200,"id":0,"prevSize":32,"code":59742},"setIdx":3,"setId":17,"iconIdx":0},{"icon":{"paths":["M956.29 804.482l-316.29-527.024v-213.458h32c17.6 0 32-14.4 32-32s-14.4-32-32-32h-320c-17.6 0-32 14.4-32 32s14.4 32 32 32h32v213.458l-316.288 527.024c-72.442 120.734-16.512 219.518 124.288 219.518h640c140.8 0 196.73-98.784 124.29-219.518zM241.038 640l206.962-344.938v-231.062h128v231.062l206.964 344.938h-541.926z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lab","beta","beaker","test","experiment"],"defaultCode":59818,"grid":16},"attrs":[],"properties":{"ligatures":"lab, beta","name":"lab","order":201,"id":1,"prevSize":32,"code":59818},"setIdx":3,"setId":17,"iconIdx":1},{"icon":{"paths":["M768 704h-101.49l-160-160 160-160h101.49v160l224-224-224-224v160h-128c-16.974 0-33.252 6.744-45.254 18.746l-178.746 178.744-178.746-178.746c-12-12-28.28-18.744-45.254-18.744h-192v128h165.49l160 160-160 160h-165.49v128h192c16.974 0 33.252-6.742 45.254-18.746l178.746-178.744 178.746 178.744c12.002 12.004 28.28 18.746 45.254 18.746h128v160l224-224-224-224v160z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shuffle","random","player"],"defaultCode":59952,"grid":16},"attrs":[],"properties":{"ligatures":"shuffle, random","name":"transition","id":2,"order":202,"prevSize":32,"code":59952},"setIdx":3,"setId":17,"iconIdx":2},{"icon":{"paths":["M512 0c-282.77 0-512 71.634-512 160v96l384 384v320c0 35.346 57.306 64 128 64 70.692 0 128-28.654 128-64v-320l384-384v-96c0-88.366-229.23-160-512-160zM94.384 138.824c23.944-13.658 57.582-26.62 97.278-37.488 87.944-24.076 201.708-37.336 320.338-37.336 118.628 0 232.394 13.26 320.338 37.336 39.696 10.868 73.334 23.83 97.28 37.488 15.792 9.006 24.324 16.624 28.296 21.176-3.972 4.552-12.506 12.168-28.296 21.176-23.946 13.658-57.584 26.62-97.28 37.488-87.942 24.076-201.708 37.336-320.338 37.336s-232.394-13.26-320.338-37.336c-39.696-10.868-73.334-23.83-97.278-37.488-15.792-9.008-24.324-16.624-28.298-21.176 3.974-4.552 12.506-12.168 28.298-21.176z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["filter","funnel"],"defaultCode":59995,"grid":16},"attrs":[],"properties":{"ligatures":"filter, funnel","name":"funnel","order":203,"id":3,"prevSize":32,"code":59995},"setIdx":3,"setId":17,"iconIdx":3},{"icon":{"paths":["M704 64l-320 320h-192l-192 256c0 0 203.416-56.652 322.066-30.084l-322.066 414.084 421.902-328.144c58.838 134.654-37.902 328.144-37.902 328.144l256-192v-192l320-320 64-320-320 64z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rocket","jet","speed","spaceship","fast"],"defaultCode":59813,"grid":16},"attrs":[],"properties":{"ligatures":"rocket, jet","name":"rocket","order":31,"id":4,"prevSize":32,"code":59813},"setIdx":3,"setId":17,"iconIdx":4},{"icon":{"paths":["M832 736l96 96 320-320-320-320-96 96 224 224z","M448 288l-96-96-320 320 320 320 96-96-224-224z","M701.298 150.519l69.468 18.944-191.987 704.026-69.468-18.944 191.987-704.026z"],"width":1280,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["embed","code","html","xml"],"defaultCode":60032,"grid":16},"attrs":[],"properties":{"ligatures":"embed2, code2","name":"embed","order":262,"id":5,"prevSize":32,"code":60032},"setIdx":3,"setId":17,"iconIdx":5},{"icon":{"paths":["M512 64c282.77 0 512 229.23 512 512 0 192.792-106.576 360.666-264.008 448h-495.984c-157.432-87.334-264.008-255.208-264.008-448 0-282.77 229.23-512 512-512zM801.914 865.914c77.438-77.44 120.086-180.398 120.086-289.914h-90v-64h85.038c-7.014-44.998-21.39-88.146-42.564-128h-106.474v-64h64.284c-9.438-11.762-19.552-23.096-30.37-33.914-46.222-46.22-101.54-80.038-161.914-99.798v69.712h-64v-85.040c-20.982-3.268-42.36-4.96-64-4.96s-43.018 1.69-64 4.96v85.040h-64v-69.712c-60.372 19.76-115.692 53.576-161.914 99.798-10.818 10.818-20.932 22.152-30.37 33.914h64.284v64h-106.476c-21.174 39.854-35.552 83.002-42.564 128h85.040v64h-90c0 109.516 42.648 212.474 120.086 289.914 10.71 10.71 21.924 20.728 33.56 30.086h192.354l36.572-512h54.856l36.572 512h192.354c11.636-9.358 22.852-19.378 33.56-30.086z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["meter","gauge","dashboard","speedometer","performance"],"defaultCode":59814,"grid":16},"attrs":[],"properties":{"ligatures":"meter, gauge","name":"page-performance","order":2,"id":6,"prevSize":32,"code":59814},"setIdx":3,"setId":17,"iconIdx":6},{"icon":{"paths":["M755.188 64c-107.63 0-200.258 87.554-243.164 179-42.938-91.444-135.578-179-243.216-179-148.382 0-268.808 120.44-268.808 268.832 0 301.846 304.5 380.994 512.022 679.418 196.154-296.576 511.978-387.206 511.978-679.418 0-148.392-120.43-268.832-268.812-268.832z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["heart","like","love","favorite"],"defaultCode":59866,"grid":16},"attrs":[],"properties":{"ligatures":"heart, like","name":"heart","order":269,"id":7,"prevSize":32,"code":59866},"setIdx":3,"setId":17,"iconIdx":7},{"icon":{"paths":["M804.571 566.857v182.857c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-182.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM1024 73.142v292.571c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-100.571-100.571-372.571 372.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l372.571-372.571-100.571-100.571c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z"],"width":1024,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["external-link"],"defaultCode":61582,"grid":14},"attrs":[],"properties":{"name":"outlink","id":0,"order":266,"prevSize":28,"code":61582},"setIdx":4,"setId":16,"iconIdx":0},{"icon":{"paths":["M658.286 493.714v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM731.429 749.714v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 274.285v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"],"width":804.5714285714286,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["minus-square-o"],"defaultCode":61767,"grid":14},"attrs":[],"properties":{"name":"minus-square","id":1,"order":268,"prevSize":28,"code":61767},"setIdx":4,"setId":16,"iconIdx":1},{"icon":{"paths":["M658.286 493.714v36.571c0 10.286-8 18.286-18.286 18.286h-201.143v201.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-201.143h-201.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h201.143v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v201.143h201.143c10.286 0 18.286 8 18.286 18.286zM731.429 749.714v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 274.285v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"],"width":804.5714285714286,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plus-square-o"],"defaultCode":61846,"grid":14},"attrs":[],"properties":{"name":"plus-square","id":2,"order":263,"prevSize":28,"code":61846},"setIdx":4,"setId":16,"iconIdx":2},{"icon":{"paths":["M614.286 749.714c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 530.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z"],"width":658.2857142857142,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-double-up"],"defaultCode":61698,"grid":14},"attrs":[],"properties":{"name":"arrowup","id":3,"order":204,"prevSize":28,"code":61698},"setIdx":4,"setId":16,"iconIdx":3},{"icon":{"paths":["M614.286 493.714c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 274.286c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z"],"width":658.2857142857142,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["angle-double-down"],"defaultCode":61699,"grid":14},"attrs":[],"properties":{"name":"arrowdown","id":4,"order":205,"prevSize":28,"code":61699},"setIdx":4,"setId":16,"iconIdx":4}],"height":1024,"metadata":{"name":"matomo","url":"https://matomo.org"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"matomo","majorVersion":1,"minorVersion":0,"fontURL":"https://matomo.org","description":"Matomo"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"ie7":false,"includeMetadata":true,"showSelector":false,"selector":"","classSelector":".icon","showMetrics":false,"showMetadata":false,"showVersion":true,"noie8":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215,"name":"icomoon","classSelector":".icon"},"historySize":100,"showCodes":true,"gridSize":16,"showGrid":false,"showLiga":false}}
diff --git a/plugins/Morpheus/stylesheets/base/icons.css b/plugins/Morpheus/stylesheets/base/icons.css
index 348bd369ec..3523663002 100644
--- a/plugins/Morpheus/stylesheets/base/icons.css
+++ b/plugins/Morpheus/stylesheets/base/icons.css
@@ -393,4 +393,10 @@
}
.icon-heart:before{
content: "\e9da";
+}
+.icon-notifications_on:before {
+ content: "\e903";
+}
+.icon-new_releases:before {
+ content: "\e902";
} \ No newline at end of file
diff --git a/plugins/SegmentEditor/tests/UI/expected-screenshots/SegmentSelectorEditorTest_complex_segment.png b/plugins/SegmentEditor/tests/UI/expected-screenshots/SegmentSelectorEditorTest_complex_segment.png
index e6475e1abd..851b13d222 100644
--- a/plugins/SegmentEditor/tests/UI/expected-screenshots/SegmentSelectorEditorTest_complex_segment.png
+++ b/plugins/SegmentEditor/tests/UI/expected-screenshots/SegmentSelectorEditorTest_complex_segment.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:3f7d221728aff5647a485b726c47b05a7ae524fe01884d0fe7d7b0384e167af3
-size 141810
+oid sha256:bc73afa566a9e7e6c70b37afd5ebc14b9ff6f9ae8c730f711f5f2db0385610ec
+size 142015
diff --git a/plugins/Transitions/Transitions.php b/plugins/Transitions/Transitions.php
index afd5f3a2fc..aae4211596 100644
--- a/plugins/Transitions/Transitions.php
+++ b/plugins/Transitions/Transitions.php
@@ -10,7 +10,6 @@
namespace Piwik\Plugins\Transitions;
use Piwik\Common;
-use Piwik\Plugins\Transitions\API;
use Piwik\Config;
/**
diff --git a/plugins/UsersManager/API.php b/plugins/UsersManager/API.php
index 8aa5a37ca5..7bc1ae4068 100644
--- a/plugins/UsersManager/API.php
+++ b/plugins/UsersManager/API.php
@@ -877,6 +877,7 @@ class API extends \Piwik\Plugin\API
unset($user['token_auth']);
unset($user['password']);
unset($user['ts_password_modified']);
+ unset($user['idchange_last_viewed']);
if ($lastSeen = LastSeenTimeLogger::getLastSeenTimeForUser($user['login'])) {
$user['last_seen'] = Date::getDatetimeFromTimestamp($lastSeen);
diff --git a/plugins/UsersManager/Model.php b/plugins/UsersManager/Model.php
index 618d169866..6d38068274 100644
--- a/plugins/UsersManager/Model.php
+++ b/plugins/UsersManager/Model.php
@@ -456,6 +456,7 @@ class Model
'date_registered' => $dateRegistered,
'superuser_access' => 0,
'ts_password_modified' => Date::now()->getDatetime(),
+ 'idchange_last_viewed' => null
);
$db = $this->getDb();
diff --git a/plugins/UsersManager/tests/Integration/UsersManagerTest.php b/plugins/UsersManager/tests/Integration/UsersManagerTest.php
index 686668531e..0599554b34 100644
--- a/plugins/UsersManager/tests/Integration/UsersManagerTest.php
+++ b/plugins/UsersManager/tests/Integration/UsersManagerTest.php
@@ -104,6 +104,7 @@ class UsersManagerTest extends IntegrationTestCase
unset($userAfter['date_registered']);
unset($userAfter['ts_password_modified']);
+ unset($userAfter['idchange_last_viewed']);
unset($userAfter['password']);
// implicitly checks password!
diff --git a/plugins/UsersManager/tests/System/ApiTest.php b/plugins/UsersManager/tests/System/ApiTest.php
index 2c93dc2eb5..17ea5104e6 100644
--- a/plugins/UsersManager/tests/System/ApiTest.php
+++ b/plugins/UsersManager/tests/System/ApiTest.php
@@ -61,7 +61,7 @@ class ApiTest extends SystemTestCase
// login1 = super user, login2 = some admin access, login4 = only view access
foreach ($logins as $login => $appendix) {
$params['token_auth'] = self::$fixture->users[$login]['token'];
- $xmlFieldsToRemove = array('date_registered','last_seen', 'password', 'token_auth', 'ts_password_modified');
+ $xmlFieldsToRemove = array('date_registered', 'last_seen', 'password', 'token_auth', 'ts_password_modified', 'idchange_last_viewed');
$this->runAnyApiTest($api, $apiId . '_' . $appendix, $params, array('xmlFieldsToRemove' => $xmlFieldsToRemove));
}
diff --git a/tests/PHPUnit/Fixtures/CreateChanges.php b/tests/PHPUnit/Fixtures/CreateChanges.php
new file mode 100644
index 0000000000..e6e60f0f2d
--- /dev/null
+++ b/tests/PHPUnit/Fixtures/CreateChanges.php
@@ -0,0 +1,75 @@
+<?php
+/**
+ * Matomo - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+namespace Piwik\Tests\Fixtures;
+
+use Piwik\Changes\Model as ChangesModel;
+use Piwik\Tests\Framework\Fixture;
+
+class CreateChanges extends Fixture
+{
+
+ private $file;
+
+ public function setUp(): void
+ {
+ parent::setUp();
+ Fixture::createSuperUser();
+ if (!self::siteCreated($idSite = 1)) {
+ self::createWebsite('2021-01-01');
+ }
+
+ $this->file = PIWIK_DOCUMENT_ROOT . '/plugins/CoreAdminHome/changes.json';
+ $this->createChanges();
+ }
+
+ public function tearDown(): void
+ {
+ parent::tearDown();
+ self::cleanup();
+ }
+
+ protected function cleanup(): void
+ {
+ if (file_exists($this->file)) {
+ unlink($this->file);
+ }
+ }
+
+ private function createChanges()
+ {
+
+ $changes = [
+ [
+ 'version' => '4.6.0b5',
+ 'title' => 'New feature x added',
+ 'description' => 'Now you can do a with b like this',
+ 'link_name' => 'For more information go here',
+ 'link' => 'https://www.matomo.org',
+ ],
+ [
+ 'version' => '4.5.0',
+ 'title' => 'New feature y added',
+ 'description' => 'Now you can do c with d like this',
+ ],
+ [
+ 'version' => '4.4.0',
+ 'title' => 'New feature z added',
+ 'description' => 'Now you can do e with f like this',
+ 'link_name' => 'For more information go here',
+ 'link' => 'https://www.matomo.org',
+ ],
+ ];
+
+ $changes = array_reverse($changes);
+ $changesModel = new ChangesModel();
+ foreach ($changes as $change) {
+ $changesModel->addChange('CoreHome', $change);
+ }
+
+ }
+} \ No newline at end of file
diff --git a/tests/UI/expected-screenshots/Menus_mobile_top.png b/tests/UI/expected-screenshots/Menus_mobile_top.png
index d51bbfba9b..a173dc3054 100644
--- a/tests/UI/expected-screenshots/Menus_mobile_top.png
+++ b/tests/UI/expected-screenshots/Menus_mobile_top.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:b87b0c8bd337a99464014b0a99b3e607e124ed3c70b8a8974b5866c9d8d5263b
-size 174132
+oid sha256:d5b18d38809efa5cf2049e16bbfbb678881935a2989ef6520e1536017803f4c4
+size 175268
diff --git a/tests/UI/expected-screenshots/QuickAccess_search_1.png b/tests/UI/expected-screenshots/QuickAccess_search_1.png
index d2ae098328..895191d38f 100644
--- a/tests/UI/expected-screenshots/QuickAccess_search_1.png
+++ b/tests/UI/expected-screenshots/QuickAccess_search_1.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:154290d86575f2861311d257ac9754b40bbcd8b866c321dbdc37bc535fa22cd0
-size 96894
+oid sha256:a04a68423308765304ca4305beac97456fd0ae1481275c195df0beb54e2439d8
+size 98090
diff --git a/tests/UI/expected-screenshots/QuickAccess_search_category.png b/tests/UI/expected-screenshots/QuickAccess_search_category.png
index 8a0244ec83..cf82eca9ef 100644
--- a/tests/UI/expected-screenshots/QuickAccess_search_category.png
+++ b/tests/UI/expected-screenshots/QuickAccess_search_category.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:af5ae97b912562fe5f3daa9b32217ca52dc8a593568134effb4e0092ee6481c7
-size 10465
+oid sha256:2e18787f8044686c830662062f3b86994d5783624c67cff1ab2f7c66f9a759d3
+size 11629
diff --git a/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png b/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png
index e2058b08cf..57006282e6 100644
--- a/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png
+++ b/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ec902360a743e685e6ec1be4c282d1d1899770ddb2ef36c9e0ffae07a64d9e3f
-size 222617
+oid sha256:7f9b628e5c37e01dc10af37aaeaa7f2a91b8d282cf12481b9ffad53a6c867c0e
+size 222819
diff --git a/tests/UI/expected-screenshots/Theme_home.png b/tests/UI/expected-screenshots/Theme_home.png
index 11b817d7c1..ff26ed3032 100644
--- a/tests/UI/expected-screenshots/Theme_home.png
+++ b/tests/UI/expected-screenshots/Theme_home.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:413b48a024571196fceeca8803d81794a77b530abb47d675e078921f0dba661d
-size 735228
+oid sha256:5ad33baa44477a58683767d44692c625be460155b756b6abe6817c0373d2cbe4
+size 735431
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_period_select_date_range_click.png b/tests/UI/expected-screenshots/UIIntegrationTest_period_select_date_range_click.png
index 55e343e653..ce92fa62e6 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_period_select_date_range_click.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_period_select_date_range_click.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:82d7c48108c493e541906efb8ac619ac0f50a050691abb0c387bc403a150b5b1
-size 78449
+oid sha256:138f85c40e777ba2b9e4033fb208f24dacfb22269027be347b0fac445a52fa92
+size 78672
diff --git a/tests/UI/expected-screenshots/enable_framed_pages_embed_whole_app.png b/tests/UI/expected-screenshots/enable_framed_pages_embed_whole_app.png
index 6f09a3ddf8..63a5311a98 100644
--- a/tests/UI/expected-screenshots/enable_framed_pages_embed_whole_app.png
+++ b/tests/UI/expected-screenshots/enable_framed_pages_embed_whole_app.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:aedf10314cc1f6703831baf47e78c784e2823f0aaa96246668fbc725c2991aaa
-size 232997
+oid sha256:76acc87a7c120390773ca82174da4da29b2408c39d24c6794032f68488ab343e
+size 233201